:root {
  --primary-blue: #003d82;
  --light-blue: #0066cc;
  --bright-blue: #2e8de5;
  --accent-red: #c41e3a;
  --gold-accent: #ffd700;
  --white: #ffffff;
  --light-gray: #f0f4f8;
  --dark-gray: #2c2c2c;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --dark-bg: #001f3f;
  --success-green: #2ecc71;
  --transition: all 0.3s ease;
  color-scheme: light only;
}

/* Override dark mode preferences */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light only;
  }

  body {
    background: linear-gradient(135deg, #e8f0f8 0%, #d4e4f7 100%) !important;
    color: var(--text-dark) !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color-scheme: light only;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  background: linear-gradient(135deg, #e8f0f8 0%, #d4e4f7 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #003d82 0%, #0066cc 100%);
  color: var(--white);
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0, 61, 130, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0066cc 0%, #2e8de5 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%);
  color: var(--white);
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(196, 30, 58, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 25px;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  border-color: var(--light-blue);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.4);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--accent-red);
  display: inline-block;
  text-shadow: 0 0 20px rgba(0, 61, 130, 0.2);
}

.section-title h2:after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
  margin: 15px auto;
  box-shadow: 0 0 15px rgba(0, 61, 130, 0.3);
}

/* Header Styles */
header {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.98) 100%
  );
  box-shadow: 0 5px 25px rgba(0, 61, 130, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  color: var(--text-dark);
  backdrop-filter: blur(10px);
}

header.scrolled {
  padding: 10px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(248, 250, 252, 1) 100%
  );
  box-shadow: 0 8px 30px rgba(0, 61, 130, 0.15);
  color: var(--text-dark);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.95));
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-text span {
  color: var(--primary-blue);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 102, 204, 0.5);
}

.nav-menu a:hover {
  color: var(--light-blue);
}

.nav-menu a:hover:after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--light-blue);
}

.nav-menu a.active:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  margin: 5px;
  transition: var(--transition);
}
/* ===========================
   Hero Section
=========================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  padding-top: 120px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 31, 63, 0.7) 0%,
    rgba(0, 61, 130, 0.5) 100%
  );
  z-index: 2;
}

/* Slides */
.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  will-change: opacity;
}

/* Active slide */
.hero-slides .slide.active {
  opacity: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 0 20px;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 15px;
  background: linear-gradient(
    90deg,
    var(--light-blue),
    var(--bright-blue),
    var(--gold-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0, 102, 204, 0.3));
}

.hero-content .election-year {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.hero-content h2 {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 25px;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

/* Typewriter effect */
.typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--light-blue);
  animation: blink-caret 0.7s step-end infinite;
  color: var(--light-blue);
  text-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
}

/* Caret blink */
@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

/* Scroll down arrow */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--white);
  z-index: 3;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content .election-year {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 1.1rem;
  }
}

/* About Section */
.about {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a3a5a 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(30, 144, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.about-texts {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
  border: 2px solid rgba(0, 217, 255, 0.3);
  position: relative;
}

.about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 217, 255, 0.1) 100%
  );
  pointer-events: none;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: var(--accent-red);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.value-item {
  flex: 1 1 calc(50% - 20px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 250, 255, 0.98) 100%
  );
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.15);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 217, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.25);
  border-color: var(--primary-blue);
}

.value-icon {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

/* Vision Section */
.vision-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pillar {
  background: linear-gradient(
    135deg,
    rgba(0, 31, 63, 0.9) 0%,
    rgba(0, 61, 130, 0.9) 100%
  );
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid var(--light-blue);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.pillar::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.pillar:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.3);
  border-color: var(--accent-red);
}

.pillar-icon {
  font-size: 2.5rem;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.pillar h3 {
  color: var(--accent-red);
  margin-bottom: 15px;
}
/* Swiper Container */
.vision-swiper {
  width: 100%;
  padding: 50px 0;
}

/* Each Slide */
.vision-swiper .swiper-slide {
  width: 300px;
  height: auto;
  margin-right: 25px;
  display: flex;
  align-items: stretch;
}

/* Pillar Card */
.pillar {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 50, 0.9) 0%,
    rgba(40, 25, 60, 0.9) 100%
  );
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border-top: 5px solid var(--primary-blue);
  color: var(--text-medium);
  transition: var(--transition);
  border: 1px solid rgba(0, 217, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover Effect */
.pillar:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(30, 144, 255, 0.3);
}

/* Icon */
.pillar-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.4));
}

/* Title */
.pillar h3 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

/* Read More Link */
.pillar .read-more {
  color: var(--primary-blue);
  font-weight: 600;
  transition: var(--transition);
}

.pillar .read-more:hover {
  color: var(--success-green);
}

/* Center Swiper Pagination */
.swiper-pagination {
  margin-top: 40px;
}

/* Swiper Spacing */
.swiper-wrapper {
  padding: 20px 0;
}

/* News Section */
.news {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a3a5a 100%);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(245, 250, 255, 0.95) 100%
  );
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.15);
  transition: var(--transition);
  border: 1px solid rgba(0, 217, 255, 0.1);
  position: relative;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--light-blue),
    var(--accent-red)
  );
  z-index: 2;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0, 217, 255, 0.25);
  border-color: var(--primary-blue);
}

.news-img {
  height: 200px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-content {
  padding: 20px;
}

.news-date {
  color: var(--accent-red);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.2);
}

.news-content h3 {
  margin-bottom: 10px;
}

.news-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.read-more {
  margin-top: 1rem;
  color: var(--accent-red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--success-green);
  transform: translateX(3px);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Media Section */
.media-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  padding: 12px 25px;
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.tab-btn:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.tab-btn.active {
  color: var(--primary-blue);
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.tab-btn.active:after {
  width: 100%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.15);
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.8),
    rgba(157, 78, 221, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.2);
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Volunteer Section */
.volunteer {
  background: linear-gradient(
      135deg,
      rgba(0, 217, 255, 0.15),
      rgba(157, 78, 221, 0.15)
    ),
    linear-gradient(rgba(15, 15, 30, 0.85), rgba(15, 15, 30, 0.85)),
    url("https://images.unsplash.com/photo-1551135040-6a4a3a5a9501?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.volunteer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.volunteer h2 {
  color: var(--white);
}

.volunteer p {
  max-width: 700px;
  margin: 0 auto 40px;
}

.volunteer-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1) 0%,
    rgba(157, 78, 221, 0.1) 100%
  );
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.95);
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
  background-color: var(--white);
}

/* ===========================
   CONTACT PAGE MODERNIZATION
=========================== */

/* Page Header with Gradients */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--light-blue) 50%,
    var(--bright-blue) 100%
  );
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(196, 30, 58, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-header-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.page-header-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-weight: 400;
}

/* Contact Intro Section */
.contact-intro {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
  padding: 80px 0;
}

.contact-intro-content h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-align: center;
}

.contact-intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Methods Grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 61, 130, 0.08);
  border: 2px solid rgba(0, 102, 204, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #003d82 0%, #0066cc 50%, #2e8de5 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
  border-color: rgba(0, 102, 204, 0.3);
}

.contact-card .contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #003d82 0%, #0066cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

.contact-card .contact-icon i {
  font-size: 2rem;
  color: var(--white);
}

.contact-card h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-card > p {
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  color: var(--text-medium);
  border-bottom: 1px solid rgba(0, 102, 204, 0.05);
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-details i {
  color: var(--light-blue);
  font-size: 1.1rem;
  margin-top: 2px;
}

.contact-details strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 3px;
}

.contact-details div {
  flex: 1;
}

/* Contact Form Container */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-container {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 61, 130, 0.1);
  border: 2px solid rgba(0, 102, 204, 0.1);
}

.contact-form-container h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-info {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 61, 130, 0.08);
  border: 2px solid rgba(0, 102, 204, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 700;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(0, 102, 204, 0.08);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #003d82 0%, #0066cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.info-details h4 {
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.info-details p {
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

.info-details a {
  color: var(--light-blue);
  transition: all 0.3s ease;
}

.info-details a:hover {
  color: var(--bright-blue);
  text-decoration: underline;
}

.office-hours {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid rgba(0, 102, 204, 0.08);
}

.office-hours h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  color: var(--text-medium);
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Campaign Offices Section */
.offices-section {
  padding: 80px 0;
  background: var(--white);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.office-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 61, 130, 0.08);
  border: 2px solid rgba(0, 102, 204, 0.1);
  transition: all 0.4s ease;
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
  border-color: var(--light-blue);
}

.office-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.office-card .office-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #003d82 0%, #0066cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.office-card .office-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.office-header h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
}

.office-details {
  margin-bottom: 25px;
}

.office-details p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-medium);
  line-height: 1.6;
}

.office-details i {
  color: var(--light-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.office-details a {
  color: var(--text-medium);
  transition: all 0.3s ease;
}

.office-details a:hover {
  color: var(--light-blue);
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--light-blue);
  border-radius: 10px;
  color: var(--light-blue);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline:hover {
  background: var(--light-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f0f8 0%, #d4e4f7 100%);
  position: relative;
}

.map-container {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 61, 130, 0.15);
  border: 3px solid rgba(0, 102, 204, 0.2);
  margin-top: 40px;
}

.map-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.95) 100%
  );
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 61, 130, 0.2);
  z-index: 10;
  max-width: 350px;
  border: 2px solid rgba(0, 102, 204, 0.15);
}

.map-overlay h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.map-overlay p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-medium);
  line-height: 1.6;
}

.map-overlay i {
  color: var(--light-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

.map-overlay a {
  color: var(--text-medium);
  transition: all 0.3s ease;
}

.map-overlay a:hover {
  color: var(--light-blue);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 100%);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 102, 204, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--light-blue);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
  background: transparent;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 102, 204, 0.03);
}

.faq-question span {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1.05rem;
}

.faq-question i {
  color: var(--light-blue);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: var(--text-medium);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(0, 217, 255, 0.5);
}

.contact-details h3 {
  margin-bottom: 5px;
}

.map-container {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 12px 35px rgba(0, 217, 255, 0.2);
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #f8fafc 0%, #e8f0f8 50%, #d4e4f7 100%);
  color: var(--text-dark);
  padding: 70px 0 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 61, 130, 0.1);
}

footer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-col h3 {
  color: var(--accent-red);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-col p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.2),
    rgba(157, 78, 221, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 217, 255, 0.3);
  color: var(--primary-blue);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 217, 255, 0.4);
  border-color: var(--primary-blue);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-medium);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
  /* text-shadow removed for legibility */
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 102, 204, 0.15);
  position: relative;
  z-index: 2;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5c 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: var(--transition);
  animation: pulse 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 217, 255, 0.3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--light-blue), var(--accent-red));
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 217, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-header {
    padding: 120px 0 60px;
  }

  .page-header-content h1 {
    font-size: 2.8rem;
  }

  .page-header-content p {
    font-size: 1.1rem;
  }

  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 50px;
  }

  .page-header-content h1 {
    font-size: 2.2rem;
  }

  .page-header-content p {
    font-size: 1rem;
  }

  .contact-intro-content h2 {
    font-size: 2rem;
  }

  .contact-form-container {
    padding: 35px 25px;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .map-overlay {
    position: static;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .map-container {
    height: 400px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: black;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(255, 255, 255, 0.95);
    color: white;
  }
  .logo-img {
    height: 80px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-carousel {
    padding: 30px 0 40px 0;
  }

  .slide-content {
    flex-direction: column;
    gap: 30px;
  }

  .slide-text h2 {
    font-size: 2rem;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 15px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .media-tabs {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 80px 0 40px;
  }

  .page-header-content h1 {
    font-size: 1.8rem;
  }

  .page-header-content p {
    font-size: 0.95rem;
  }

  .contact-intro-content h2 {
    font-size: 1.6rem;
  }

  .contact-intro-content p {
    font-size: 0.95rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 300px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-carousel {
    padding: 20px 0 30px 0;
  }

  .slide-text h2 {
    font-size: 1.6rem;
  }

  .slide-text p {
    font-size: 0.95rem;
  }

  .section {
    padding: 60px 0;
  }

  .value-item {
    flex: 1 1 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
@keyframes pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================
   Hero Carousel Section
=========================== */
.hero-carousel {
  width: 100%;
  padding: 40px 0 60px 0;
  position: relative;
  overflow: hidden;
  opacity: 1;
  min-height: auto;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
  padding: 20px 0;
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

.slide-text {
  flex: 1;
}

.slide-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-blue);
  line-height: 1.3;
}

.slide-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 400;
}

.slide-image {
  flex: 1;
}

.slide-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.95);
  transition: transform 0.3s ease;
}

.slide-image img:hover {
  transform: scale(1.02);
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--light-blue);
  top: 50%;
  width: 60px !important;
  height: 60px !important;
  background: rgba(0, 102, 204, 0.15) !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  margin-top: -30px;
  outline: none;
  cursor: pointer;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
  color: var(--light-blue);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 102, 204, 0.4) !important;
  transform: scale(1.1);
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
  outline: none;
}

.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Pagination Dots */
.swiper-pagination {
  bottom: 20px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 8px;
  z-index: 10;
  position: absolute;
}

.swiper-pagination-bullet {
  background: rgba(0, 102, 204, 0.5) !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 50%;
  display: inline-block;
}

.swiper-pagination-bullet:hover {
  background: rgba(0, 102, 204, 0.8) !important;
  transform: scale(1.15);
}

.swiper-pagination-bullet-active {
  background: var(--accent-red) !important;
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .slide-content {
    gap: 40px;
  }

  .slide-text h2 {
    font-size: 2rem;
  }

  .slide-text p {
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-carousel {
    padding: 40px 0;
  }

  .hero-slide {
    min-height: auto;
  }

  .slide-content {
    flex-direction: column;
    gap: 25px;
    padding: 0 15px;
  }

  .slide-text {
    animation: none;
  }

  .slide-text h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .slide-text p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .slide-image {
    animation: none;
  }

  .slide-image img {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.95);
  }

  /* Hide arrows on mobile, show only pagination */
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  /* Make pagination more prominent on mobile */
  .swiper-pagination {
    bottom: 15px !important;
  }

  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }

  .swiper-pagination-bullet-active {
    transform: scale(1.2);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-carousel {
    padding: 30px 0;
  }

  .slide-content {
    gap: 15px;
    padding: 0 12px;
  }

  .slide-text h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .slide-text p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .swiper-pagination {
    bottom: 10px !important;
    gap: 8px;
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }
}
