/* ===========================
    Reset & Base Styles
    =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(16, 185, 129, 0.02) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(16, 185, 129, 0.02) 0%,
      transparent 40%
    );
  background-attachment: fixed;
}

/* ===========================
    Typography
    =========================== */
h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

p {
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transition: width 0.3s ease;
}

a:hover::before {
  width: 100%;
}

/* ===========================
    Container & Layout
    =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ===========================
    Navigation
    =========================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 20, 18, 0.18);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.1rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 33, 43, 0.08);
  box-shadow: 0 14px 34px rgba(20, 33, 43, 0.08);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.logo-image {
  width: 190px;
  height: 45px;
  border-radius: 4px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-image {
  transform: scale(1.05);
}

.logo-text {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-text {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1.5rem;
  flex: 1;
  padding: 0;
  margin: 0;
}

/* Mobile Menu Active State */
.nav-links.active {
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0;
  margin-top: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .hamburger-line {
  background: #666666;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links a {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
  transform: none;
}

.nav-links a.active {
  color: #ffffff;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a.active::before {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: #14212b;
}

.navbar.scrolled .nav-links a:hover {
  color: #127c63;
}

.navbar.scrolled .nav-links a.active {
  color: #127c63;
}

.navbar.scrolled .nav-links a::before {
  background: #127c63;
}

/* Mobile Join Us Button - Hidden on Desktop */
.mobile-join-us {
  display: none;
}

.desktop-join-us {
  margin-left: auto;
}

/* Show Join Us button in mobile menu when menu is active */
.nav-links.active .mobile-join-us {
  display: list-item !important;
  text-align: center;
  margin-top: 0.25rem;
}

.nav-links.active .mobile-join-us a {
  display: inline-block;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-sizing: border-box;
}

/* ===========================
    Buttons
    =========================== */
.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
  -webkit-box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
  -moz-box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background: transparent;
  color: #10b981;
  border: 1px solid #10b981;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.btn-large {
  padding: 12px 28px;
  font-size: 14px;
  border-radius: 999px;
}

/* ===========================
    Hero Section
    =========================== */
.hero {
  padding: 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
  height: 88vh;
  min-height: 640px;
  transform: translateZ(0);
  perspective: 1000px;
  background-image: radial-gradient(
      circle at 15% 85%,
      rgba(16, 185, 129, 0.12) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(9, 19, 16, 0.72) 0%,
      rgba(9, 19, 16, 0.46) 48%,
      rgba(9, 19, 16, 0.2) 100%
    ),
    radial-gradient(
      circle at 22% 35%,
      rgba(18, 124, 99, 0.22) 0%,
      transparent 42%
    );
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content {
  color: white;
  max-width: 600px;
  width: 100%;
  min-height: auto;
  margin: 0 auto;
  padding: 30px 28px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.07) 100%
  );
  backdrop-filter: blur(14px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(8, 18, 16, 0.16);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 0;
  justify-content: flex-start;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.feature-item svg {
  flex-shrink: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: none;
  animation: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-badge.secondary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.25);
}

.hero-badge.accent {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 3px 8px rgba(139, 92, 246, 0.25);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.25);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.25);
  }
}

.badge-text {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content h1 {
  background: linear-gradient(135deg, #ffffff 0%, #eef6f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 0.85rem;
  text-shadow: none;
  position: relative;
  max-width: 13ch;
}

.hero-content h1::after {
  display: none;
}

.hero-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
  font-weight: 400;
  text-shadow: none;
  max-width: 52ch;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.btn-primary,
.btn-secondary {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 5px;
}

.btn-large {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 999px;
}

.hero-stats-mobile {
  display: none;
  gap: 1.5rem;
  margin-top: 20px;
}

.hero-stats-mobile .stat-item {
  text-align: center;
}

.hero-stats-mobile .stat-item h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 0;
}

.hero-stats-mobile .stat-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 15, 0.22) 0%,
    rgba(7, 17, 15, 0.04) 28%,
    rgba(7, 17, 15, 0.18) 100%
  );
  z-index: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.carousel-nav.prev {
  left: 24px;
}

.carousel-nav.next {
  right: 24px;
}

.carousel-indicators {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
  transform: none;
}

.hero-shape {
  display: none;
}

.floating-elements {
  display: none;
}

.hero::after {
  display: none;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: float 10s infinite ease-in-out;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.15);
}

.element-1 {
  width: 40px;
  height: 40px;
  top: 25%;
  left: 12%;
  animation-delay: 0s;
}

.element-2 {
  width: 30px;
  height: 30px;
  top: 65%;
  left: 85%;
  animation-delay: 1.5s;
}

.element-3 {
  width: 50px;
  height: 50px;
  top: 75%;
  left: 20%;
  animation-delay: 3s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translate(8px, 12px) rotate(3deg) scale(1.05);
    opacity: 1;
  }
  50% {
    transform: translate(15px, 8px) rotate(-2deg) scale(0.95);
    opacity: 0.9;
  }
  75% {
    transform: translate(8px, 5px) rotate(1deg) scale(1.02);
    opacity: 0.95;
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.8;
  }
}

/* ===========================
   Hero Stats Desktop
   =========================== */
.hero-stats-desktop {
  display: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-align: left;
}

.stat-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 20px;
  height: 20px;
}

.stat-item h3 {
  font-size: 20px;
  margin-bottom: 0;
  color: white;
}

.stat-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* ===========================
    Services Section
    =========================== */
.services {
  padding: 40px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  width: 100%;
  max-width: 100%;
}

.services h2 {
  text-align: center;
  margin-bottom: 0.6rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: 0;
  color: #14212b;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #5f6b76;
  margin-bottom: 3rem;
}

.services.contact-info-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}

.shape-1 { width: 300px; height: 300px; background: #10b981; top: 10%; left: -5%; animation: pulse-slow 15s infinite; }
.shape-2 { width: 250px; height: 250px; background: #3b82f6; bottom: 15%; right: 5%; animation: pulse-slow 18s infinite reverse; }
.shape-3 { width: 400px; height: 400px; background: #10b981; top: 20%; right: -10%; animation: pulse-slow 20s infinite; }

@keyframes pulse-slow {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, 10px); }
}

.contact-info-section .container {
  position: relative;
  z-index: 1;
}

.contact-info-section h2 {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
}

.contact-info-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #3b82f6);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.contact-info-card:hover {
  transform: translateY(-12px);
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
}

.contact-info-icon {
  margin: 0 auto 2rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 20px;
  color: #10b981;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.contact-info-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.25rem;
  width: 100%;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-large:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 18, 16, 0.04) 0%,
    rgba(8, 18, 16, 0.58) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.service-card-large:hover .service-overlay {
  opacity: 1;
}

.service-icon-large {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  padding: 0.85rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: none;
}

.service-icon-large:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: none;
  animation-play-state: initial;
}

.service-icon-large svg {
  transition: all 0.3s ease;
}

.service-card-large:hover .service-icon-large svg {
  transform: rotate(360deg);
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

.service-content {
  padding: 1.25rem;
}

/* Base service-card styles */
.service-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(20, 33, 43, 0.08);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20, 33, 43, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(20, 33, 43, 0.12);
  border-color: rgba(18, 124, 99, 0.22);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-content {
  padding: 1.5rem 1.4rem 1.4rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #14212b;
  margin-bottom: 0.85rem;
  position: relative;
  line-height: 1.2;
}

.service-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 46px;
  height: 3px;
  background: linear-gradient(135deg, #127c63 0%, #0b5d4b 100%);
  border-radius: 999px;
}

.service-content p {
  color: #5f6b76;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  margin-top: 0.35rem;
  font-size: 0.96rem;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #127c63;
}

.service-link::before {
  display: none;
}

.service-link::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.service-link:hover::after {
  width: 28px;
}

/* Neutralize older duplicate service-card rules */
.service-card::before,
.service-card:hover::before {
  left: 18px;
}

.service-card.card-1,
.service-card.card-2,
.service-card.card-3,
.service-card.card-4,
.service-card.card-5,
.service-card.card-6,
.service-card.card-7 {
  border-top: none;
}

.service-card.card-1:hover,
.service-card.card-2:hover,
.service-card.card-3:hover,
.service-card.card-4:hover,
.service-card.card-5:hover,
.service-card.card-6:hover,
.service-card.card-7:hover {
  border-color: rgba(18, 124, 99, 0.22);
  box-shadow: 0 28px 60px rgba(20, 33, 43, 0.12);
}

/* Hide legacy shimmer duplicate */
.service-card::before {
  top: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
}

.service-card.card-1 {
  border-top: 4px solid #10b981;
}

.service-card.card-2 {
  border-top: 4px solid #ef4444;
}

.service-card.card-3 {
  border-top: 4px solid #3b82f6;
}

.service-card.card-4 {
  border-top: 4px solid #0ea5e9;
}

.service-card.card-5 {
  border-top: 4px solid #8b5cf6;
}

.service-card.card-6 {
  border-top: 4px solid #ec4899;
}

.service-card.card-7 {
  border-top: 4px solid #f59e0b;
}

.service-card.card-1:hover {
  border-color: #10b981;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25);
}

.service-card.card-2:hover {
  border-color: #ef4444;
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.25);
}

.service-card.card-3:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.25);
}

.service-card.card-4:hover {
  border-color: #0ea5e9;
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.25);
}

.service-card.card-5:hover {
  border-color: #8b5cf6;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.25);
}

.service-card.card-6:hover {
  border-color: #ec4899;
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.25);
}

.service-card.card-7:hover {
  border-color: #f59e0b;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.25);
}

.service-icon {
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.icon-animation {
  transition: transform 0.3s ease;
}

.service-card:hover .icon-animation {
  transform: scale(1.1);
}

/* Ajout de l'animation de rotation continue */
.rotating {
  animation: rotate 8s linear infinite;
  transform-origin: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.service-card p {
  color: #999999;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-card .btn-outline {
  margin-top: auto;
}

.service-card .btn-outline:hover {
  background: #10b981;
  color: white;
}

/* ===========================
    CTA Section
    =========================== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: ctaGlow 8s infinite ease-in-out;
}

@keyframes ctaGlow {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
}

.cta h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 1.5rem;
}

/* ===========================
    About Section
    =========================== */
.about {
  padding: 32px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.12) 0%, transparent 34%),
    radial-gradient(circle at bottom right, rgba(18, 124, 99, 0.1) 0%, transparent 32%),
    linear-gradient(180deg, #f6fbf7 0%, #eff8f1 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 8%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
  filter: blur(6px);
}

.about::after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.09);
  z-index: 1;
}

.about-shell {
  position: relative;
  z-index: 2;
}

.about-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.5rem;
  border-radius: 32px;
  border: 1px solid rgba(20, 33, 43, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 251, 249, 0.88) 100%);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(20, 33, 43, 0.09);
}

.about-copy {
  padding: 1.2rem 1.1rem 1.1rem;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 124, 99, 0.09);
  border: 1px solid rgba(18, 124, 99, 0.12);
  color: #127c63;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-copy h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: #14212b;
  margin-bottom: 0.9rem;
  text-shadow: none;
}

.about-lead {
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #53616d;
  margin-bottom: 1.6rem;
}

.about-story {
  display: grid;
  gap: 0.9rem;
}

.about-story p {
  color: #4d5b66;
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 0;
}

.about-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 33, 43, 0.08);
  color: #21303b;
  font-weight: 600;
}

.about-feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #10b981 0%, #0b5d4b 100%);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.1);
}

.about-actions {
  margin-top: 1.8rem;
}

.about-side {
  display: grid;
  gap: 1rem;
}

.about-panel {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 245, 0.96) 100%);
  border: 1px solid rgba(20, 33, 43, 0.08);
  box-shadow: 0 18px 40px rgba(20, 33, 43, 0.08);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.14) 0%, transparent 42%);
  pointer-events: none;
}

.about-panel-accent {
  background: linear-gradient(160deg, #127c63 0%, #0f5c49 100%);
  color: white;
  border-color: transparent;
}

.about-panel-accent::before {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18) 0%, transparent 45%);
}

.about-panel-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #127c63;
  margin-bottom: 0.85rem;
}

.about-panel-accent .about-panel-label {
  color: rgba(255, 255, 255, 0.8);
}

.about-panel h3 {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  color: #14212b;
  margin-bottom: 0.8rem;
}

.about-panel p {
  position: relative;
  z-index: 1;
  color: #57646f;
  line-height: 1.8;
  margin-bottom: 0;
}

.about-panel-accent h3,
.about-panel-accent p {
  color: white;
}

.about-panel-accent p {
  color: rgba(255, 255, 255, 0.88);
}

.about-pillars {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: #edf6f0;
  border: 1px solid rgba(18, 124, 99, 0.12);
  color: #173542;
  font-size: 0.86rem;
  font-weight: 700;
}

/* Mission et vision */
.about-mission {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.mission-item h3 {
  font-size: 18px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: 'Calibri', 'Segoe UI', sans-serif;
  text-transform: capitalize;
}

.mission-item p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Engagement communautaire */
.about-community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.community-content h3 {
  font-size: 24px;
  color: #10b981;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.community-content p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.community-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.community-image:hover img {
  transform: scale(1.05);
}

/* ===========================
    Mission Section
    =========================== */
.mission {
  padding: 88px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(18, 124, 99, 0.08) 0%, transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
}

.mission-shell {
  display: grid;
  gap: 2rem;
}

.mission-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mission-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 124, 99, 0.08);
  border: 1px solid rgba(18, 124, 99, 0.12);
  color: #127c63;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mission-heading h2 {
  text-align: center;
  margin-bottom: 0.9rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: 0;
  color: #14212b;
  text-shadow: none;
  font-family: 'Calibri', 'Segoe UI', sans-serif;
  text-transform: none;
}

.mission-intro {
  color: #596672;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.mission-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(20, 33, 43, 0.08);
  box-shadow: 0 22px 54px rgba(20, 33, 43, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(20, 33, 43, 0.11);
}

.mission-card-primary {
  background: linear-gradient(160deg, #127c63 0%, #0f5c49 100%);
  color: white;
  border-color: transparent;
}

.mission-card-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mission-card-primary::before {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18) 0%, transparent 42%);
}

.mission-card-secondary::before {
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.12) 0%, transparent 40%);
}

.mission-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  margin-bottom: 1.3rem;
}

.mission-card-primary .mission-icon {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.mission-card-secondary .mission-icon {
  background: linear-gradient(135deg, #e8f7ef 0%, #d7f0e3 100%);
  border: 1px solid rgba(18, 124, 99, 0.12);
  color: #127c63;
}

.mission-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-card-primary .mission-label {
  color: rgba(255, 255, 255, 0.76);
}

.mission-card-secondary .mission-label {
  color: #127c63;
}

.mission-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
  font-family: 'Calibri', 'Segoe UI', sans-serif;
  text-transform: capitalize;
}

.mission-card-primary h3 {
  color: white;
}

.mission-card-secondary h3 {
  color: #14212b;
}

.mission-card p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.mission-card-primary p {
  color: rgba(255, 255, 255, 0.9);
}

.mission-card-secondary p {
  color: #5b6874;
}

.mission-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mission-meta-item {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.mission-card-primary .mission-meta-item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
}

.mission-card-secondary .mission-meta-item {
  background: #edf6f0;
  border: 1px solid rgba(18, 124, 99, 0.1);
  color: #183742;
}

/* ===========================
    Philosophy Section
    =========================== */
.philosophy {
  padding: 88px 0;
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08) 0%, transparent 26%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.philosophy-shell {
  display: grid;
  gap: 2rem;
}

.philosophy-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 124, 99, 0.08);
  border: 1px solid rgba(18, 124, 99, 0.12);
  color: #127c63;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.philosophy-heading h2 {
  text-align: center;
  margin-bottom: 0.9rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: 0;
  color: #14212b;
  text-shadow: none;
}

.philosophy-text {
  text-align: center;
  margin-bottom: 0;
}

.philosophy-text p {
  font-size: 1rem;
  color: #596672;
  line-height: 1.85;
  margin-bottom: 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.philosophy-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
  border: 1px solid rgba(20, 33, 43, 0.08);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 22px 54px rgba(20, 33, 43, 0.08);
}

.philosophy-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.12) 0%, transparent 42%);
  pointer-events: none;
}

.philosophy-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #127c63;
}

.philosophy-item h3 {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  color: #14212b;
  margin-bottom: 1rem;
}

.philosophy-item ul {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.philosophy-item li {
  padding: 0.95rem 0 0.95rem 1.8rem;
  border-bottom: 1px solid rgba(20, 33, 43, 0.08);
  color: #5c6975;
  position: relative;
  line-height: 1.7;
}

.philosophy-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #0b5d4b 100%);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.08);
}

.philosophy-item li:last-child {
  border-bottom: none;
}

/* ===========================
    How We Do It Section
    =========================== */
.how-we-do {
  padding: 88px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.08) 0%, transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.how-shell {
  display: grid;
  gap: 2rem;
}

.how-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.how-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(18, 124, 99, 0.08);
  border: 1px solid rgba(18, 124, 99, 0.12);
  color: #127c63;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.how-heading h2 {
  text-align: center;
  margin-bottom: 0.9rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: 0;
  color: #14212b;
  text-shadow: none;
}

.how-intro {
  color: #596672;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 0;
}

.how-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.how-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
  border-radius: 28px;
  padding: 1.9rem;
  text-align: left;
  box-shadow: 0 22px 54px rgba(20, 33, 43, 0.08);
  border: 1px solid rgba(20, 33, 43, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.12) 0%, transparent 42%);
  pointer-events: none;
}

.how-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(20, 33, 43, 0.11);
}

.how-step {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #127c63;
}

.how-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  background: linear-gradient(135deg, #127c63 0%, #0f5c49 100%);
  border-radius: 24px;
  margin-bottom: 1.2rem;
  color: white;
  box-shadow: 0 16px 30px rgba(18, 124, 99, 0.2);
}

.how-item h3 {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  color: #14212b;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.how-item p {
  position: relative;
  z-index: 1;
  color: #5c6975;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===========================
    Service Hero Section
    =========================== */
.service-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #ecfdf5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-image-section {
  margin-top: -40px;
  margin-bottom: 50px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.service-detail-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(16, 185, 129, 0.1);
  border: 4px solid white;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-weight: 500;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #059669;
  gap: 12px;
}

.service-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  margin-bottom: 30px;
  color: #10b981;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
  position: relative;
}

.service-hero-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
}

.service-hero-icon svg {
  width: 50px;
  height: 50px;
}

.service-hero h1 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-hero-subtitle {
  font-size: 1.5rem;
  color: #10b981;
  font-weight: 600;
  margin: -10px 0 20px;
}

/* ===========================
    Service Detail Section
    =========================== */
.service-detail {
  padding: 80px 0;
  background: #ffffff;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.service-detail-card {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(16, 185, 129, 0.04);
  transition: box-shadow 0.3s ease;
}

.service-detail-card h2 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.service-detail-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.service-full-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.service-full-content p {
  margin-bottom: 15px;
  color: #666;
}

/* Content Section Titles */
.service-full-content .content-section-title {
  color: #2c5282;
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.service-full-content .content-section-title:first-child {
  margin-top: 0;
}

.service-full-content .content-paragraph {
  margin-bottom: 20px;
  text-align: justify;
}

.service-full-content .content-list {
  margin: 20px 0;
  padding-left: 25px;
}

.service-full-content .content-list li {
  margin-bottom: 12px;
  padding-left: 10px;
}

.service-features h3 {
  font-size: 1.2rem;
  color: #10b981;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #1a1a1a;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list svg {
  color: #10b981;
  flex-shrink: 0;
}

.service-cta {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

/* ===========================
    Service Sidebar
    =========================== */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: linear-gradient(135deg, #f9fdf8 0%, #ffffff 100%);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.other-services-list {
  list-style: none;
  padding: 0;
}

.other-services-list li {
  margin-bottom: 8px;
}

.other-services-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 12px;
  color: #334155;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-weight: 500;
}

.other-services-list a:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.2);
}

.other-services-list .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.contact-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .sidebar-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2rem;
  }
  
  .service-hero-icon {
    width: 80px;
    height: 80px;
  }
  
  .service-detail-card {
    padding: 25px;
  }
}

/* About Values */
.about-values {
  margin-top: 25px;
}

.about-values h3 {
  font-size: 1.1rem;
  color: #10b981;
  margin-bottom: 8px;
}

.about-values p {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-content,
  .philosophy-grid,
  .how-we-do-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-card,
  .philosophy-item,
  .how-item {
    padding: 25px;
  }
}

/* ===========================
    Contact Section
    =========================== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9fdf8 0%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  background: linear-gradient(135deg, #1a1a1a 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

/* Left Column: Contact Info */
.contact-left {
  display: flex;
  flex-direction: column;
}

/* Right Column: Form */
.contact-form-wrapper {
  position: sticky;
  top: 2rem;
}

/* Full Width Map - below both columns */
.contact-map-full {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.contact-map-full iframe {
  display: block;
  width: 100%;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.2);
}

.contact-item:hover::before {
  transform: scaleY(1);
}

.contact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.contact-icon svg {
  stroke: white;
}

.contact-details h4 {
  margin-bottom: 0.25rem;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
}

.contact-details p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Form Container */
.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.1);
  position: relative;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 20px 20px 0 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Contact Map */
.contact-map {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* Success/Error Messages */
.form-message {
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
  display: block;
}

/* ===========================
    Service Detail Pages - New Design
    =========================== */

/* Service Hero Section */
.service-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.9) 0%,
    rgba(16, 185, 129, 0.7) 100%
  );
}

.service-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-hero-icon {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: iconFloat 4s ease-in-out infinite;
}

.service-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service Overview Section */
.service-overview {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-content h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.overview-content p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.overview-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.overview-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.overview-feature:hover .feature-icon {
  transform: scale(1.1);
  border-color: #10b981;
}

.overview-feature h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.overview-feature p {
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.overview-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.overview-image:hover img {
  transform: scale(1.05);
}

/* Services Offered Section */
.services-offered {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fdf8 0%, #f0fdf4 100%);
}

.services-offered h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-offered .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid-offered {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-offered-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.08);
  position: relative;
  overflow: hidden;
}

.service-offered-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.service-offered-card:hover::before {
  left: 100%;
}

.service-offered-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.service-offered-icon {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.service-offered-card:hover .service-offered-icon {
  transform: scale(1.1);
  border-color: #10b981;
}

.service-offered-card h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-offered-card p {
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Service CTA Section */
.service-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.service-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: ctaGlow 8s infinite ease-in-out;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
  .overview-grid,
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-hero-content h1 {
    font-size: 3rem;
  }

  .service-hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .service-hero {
    height: 60vh;
    min-height: 400px;
  }

  .service-hero-content h1 {
    font-size: 2.5rem;
  }

  .service-hero-content p {
    font-size: 1.1rem;
  }

  .service-hero-icon {
    width: 60px;
    height: 60px;
    padding: 1rem;
  }

  .service-hero-icon svg {
    width: 60px;
    height: 60px;
  }

  .service-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .overview-content h2,
  .services-offered h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .services-grid-offered {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-offered-card {
    padding: 1.5rem;
  }

  .overview-features {
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .service-hero-content h1 {
    font-size: 2rem;
  }

  .service-hero-content p {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .overview-content h2,
  .services-offered h2,
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .service-offered-icon {
    width: 60px;
    height: 60px;
  }

  .service-offered-icon svg {
    width: 36px;
    height: 36px;
  }

  .services-grid-offered {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-offered-card {
    padding: 20px;
  }

  .service-offered-card h4 {
    font-size: 1rem;
  }

  .service-offered-card p {
    font-size: 0.85rem;
  }
}

.back-button-section {
  padding: 15px 0;
  background: #f9fdf8;
}

.back-button-section .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 12px;
  font-size: 13px;
}

.related-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  position: relative;
  overflow: hidden;
}

.related-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.3),
    transparent
  );
}

.related-services h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  position: relative;
}

.related-services h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.service-image {
  margin: 1rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.service-image:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
    Agency Staff Section
    =========================== */
.agency-staff {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
}

/* ===========================
    Accordion Section
    =========================== */
.accordion-section {
  margin-top: 3rem;
}

.accordion-main-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.accordion-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.accordion {
  background: linear-gradient(135deg, #f9fdf8 0%, #f0fdf4 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion:hover {
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.25);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  cursor: pointer;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.accordion-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.accordion-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.accordion.active .accordion-content {
  max-height: 2000px;
}

.accordion-intro {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  background: linear-gradient(135deg, #f9fdf8 0%, #f0fdf4 100%);
}

.accordion-intro p {
  margin-bottom: 1rem;
  color: #555555;
  line-height: 1.6;
}

.accordion-intro p:last-child {
  margin-bottom: 0;
}

.accordion-item {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.accordion-item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
}

.accordion-item p {
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.staff-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* About Section Header */
.about-section-header {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.about-section-header .section-header {
  text-align: center;
  margin-bottom: 0;
}

.about-section-header .section-header h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-family: 'Calibri', 'Segoe UI', sans-serif;
  text-transform: none;
}

/* ===========================
   Join Us Page - Redesign
   =========================== */

/* Hero Section */
.join-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  overflow: hidden;
}

.join-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.join-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 50%, rgba(4, 120, 87, 0.2) 100%);
  z-index: 1;
}

.join-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.join-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white !important;
  max-width: 800px;
  margin: 0 auto;
}

.join-hero-content * {
  color: white !important;
}

.join-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.join-hero > .container > .join-hero-content > p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.join-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Application Section */
.application-section {
  padding: 5rem 0;
  background: #f8faf9;
}

.application-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* Form Wrapper */
.application-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.form-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

/* Progress Steps */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: #10b981;
  border-color: #10b981;
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.progress-step.completed .step-circle {
  background: #10b981;
  border-color: #10b981;
  color: white;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #9ca3af;
  transition: color 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
  color: #10b981;
}

.progress-line {
  flex: 0 0 60px;
  height: 2px;
  background: #d1d5db;
  margin: 0 1rem;
  margin-bottom: 1.5rem;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-group label svg {
  color: #10b981;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10b981;
  background: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* File Upload */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  background: #fafafa;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.03);
}

.file-upload-area.file-selected {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
  border-style: solid;
}

.file-upload-area svg {
  color: #10b981;
  margin-bottom: 1rem;
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.file-upload-main {
  font-weight: 600;
  color: #374151;
}

.file-upload-sub {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Checkbox */
.form-consent {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
}

.checkbox-label a {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-next,
.btn-prev,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-next {
  background: #10b981;
  color: white;
  margin-left: auto;
}

.btn-next:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-prev {
  background: #f3f4f6;
  color: #374151;
}

.btn-prev:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

.btn-submit {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1rem 2.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Sidebar */
.application-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.sidebar-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.sidebar-card h3 svg {
  color: #10b981;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #374151;
}

.benefits-list li svg {
  flex-shrink: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.process-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.process-info strong {
  color: #1a1a1a;
  font-size: 0.95rem;
}

.process-info span {
  color: #6b7280;
  font-size: 0.85rem;
}

/* Support Card */
.support-card {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
}

.support-card h3 {
  color: white;
}

.support-card h3 svg {
  color: white;
}

.support-card p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.support-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .application-grid {
    grid-template-columns: 1fr;
  }

  .application-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .join-hero {
    padding: 6rem 0 4rem;
  }

  .join-hero h1 {
    font-size: 2.5rem;
  }

  .join-hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .application-form-wrapper {
    padding: 2rem;
  }

  .form-progress {
    padding: 1rem;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .step-label {
    font-size: 0.75rem;
  }

  .progress-line {
    flex: 0 0 40px;
    margin: 0 0.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-buttons {
    flex-direction: column-reverse;
  }

  .btn-next,
  .btn-prev,
  .btn-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .join-hero h1 {
    font-size: 2rem;
  }

  .join-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-header h2 {
    font-size: 1.75rem;
  }
}

.about-section-header .section-header h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: 0;
  color: #14212b;
}

@media (max-width: 1024px) {
  .about-intro-card {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding: 0.75rem 0.55rem 0.4rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 24px 0 68px;
  }

  .about-intro-card {
    padding: 1rem;
    border-radius: 26px;
  }

  .about-copy h2 {
    font-size: 1.35rem;
  }

  .about-lead {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .about-feature-list {
    grid-template-columns: 1fr;
  }

  .about-panel {
    border-radius: 22px;
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .about-copy h2 {
    font-size: 1.3rem;
  }

  .about-feature-item,
  .about-pill {
    font-size: 0.82rem;
  }

  .mission-card {
    padding: 1.45rem;
    border-radius: 22px;
  }
}

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .how-we-do-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mission {
    padding: 72px 0;
  }

  .mission-card h3 {
    font-size: 1.4rem;
  }

  .mission-meta {
    gap: 0.55rem;
  }

  .philosophy {
    padding: 72px 0;
  }

  .philosophy-item {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .philosophy-item h3 {
    font-size: 1.3rem;
  }

  .how-we-do {
    padding: 72px 0;
  }

  .how-item {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .how-item h3 {
    font-size: 1.25rem;
  }
}

.staff-description p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.staff-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: linear-gradient(135deg, #f9fdf8 0%, #f0fdf4 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  padding: 1.3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}

.benefit-icon {
  margin-bottom: 0.75rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.benefit-card p {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.benefit-card p:last-child {
  margin-bottom: 0;
}

/* ===========================
    Testimonials Section
    =========================== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9fdf8 0%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  background: linear-gradient(135deg, #1a1a1a 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.testimonials h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.testimonials .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 3.5rem;
  margin-top: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.2);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.star {
  color: #fbbf24;
  font-size: 18px;
  line-height: 1;
}

.star.empty {
  color: #e5e7eb;
}

.testimonial-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.testimonial-author h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.85rem;
  color: #6b7280;
}

.testimonial-submit {
  max-width: 620px;
  margin: 2rem auto 0;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.14);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 33, 43, 0.07);
  overflow: hidden;
}

.testimonial-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #ffffff;
  border: 0;
  color: #14212b;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.testimonial-toggle strong {
  display: block;
  color: #14212b;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.testimonial-toggle small {
  display: block;
  color: #5f6b76;
  font-size: 0.82rem;
  line-height: 1.4;
}

.testimonial-toggle-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-weight: 700;
}

.testimonial-toggle[aria-expanded="true"] .testimonial-toggle-icon {
  transform: rotate(45deg);
}

.testimonial-form-panel {
  border-top: 1px solid rgba(16, 185, 129, 0.12);
  padding: 1rem 1.15rem 1.15rem;
}

.testimonial-form {
  display: grid;
  gap: 0.85rem;
}

.testimonial-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.testimonial-form label {
  display: block;
  color: #14212b;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 33, 43, 0.14);
  border-radius: 8px;
  color: #14212b;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 0.75rem;
  background: #ffffff;
}

.testimonial-form textarea {
  resize: vertical;
}

.testimonial-form input:focus,
.testimonial-form select:focus,
.testimonial-form textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
  outline: none;
}

.testimonial-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-form-message {
  color: #5f6b76;
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-form-message.success {
  color: #047857;
}

.testimonial-form-message.error {
  color: #b91c1c;
}

.testimonial-hp {
  display: none;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
}

.testimonials h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.testimonials .section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 3rem;
}

.testimonials-container {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem;
  margin-bottom: 3rem;
  scrollbar-width: thin;
  scrollbar-color: #10b981 #f0f0f0;
}

.testimonials-container::-webkit-scrollbar {
  height: 8px;
}

.testimonials-container::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.testimonials-container::-webkit-scrollbar-thumb {
  background: #10b981;
  border-radius: 4px;
}

.testimonial-card {
  flex: 0 0 320px;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 14px;
  line-height: 1;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding: 0 0.75rem;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2.5rem;
  color: rgba(16, 185, 129, 0.2);
  font-family: Georgia, serif;
  position: absolute;
  line-height: 1;
}

.testimonial-text::before {
  top: -8px;
  left: 0;
}

.testimonial-text::after {
  bottom: -25px;
  right: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 12px;
  color: #10b981;
  font-weight: 500;
}

.testimonials-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-nav {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.testimonial-nav:hover:not(:disabled) {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.testimonial-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
}

/* ===========================
    Application Form Section
    =========================== */
.application-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9fdf8 0%, #f0fdf4 100%);
}

.application-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
}

.application-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.application-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.application-form-container {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.08);
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10b981;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2310b981' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.2em;
  padding-right: 3rem;
}

.file-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem;
  border: 2px dashed rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.file-upload-area:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  transform: scale(1.01);
}

.file-upload-area svg {
  color: #10b981;
  transition: transform 0.3s ease;
}

.file-upload-area:hover svg {
  transform: translateY(-5px);
}

.file-upload-main {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.file-upload-sub {
  font-size: 0.85rem;
  color: #666;
}

.form-consent {
  margin: 0.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.85rem;
  color: #555;
  cursor: pointer;
  line-height: 1.5;
}

.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.checkbox-label input:checked + .checkmark {
  background: #10b981;
  border-color: #10b981;
  color: white;
}

.checkbox-label input:checked + .checkmark::after {
  content: "✓";
  font-size: 0.9rem;
  font-weight: bold;
}

.btn-primary.btn-large {
  padding: 1.25rem;
  font-size: 1.1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  font-weight: 700;
}

.application-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.info-card:hover {
  transform: translateY(-10px) rotate(1deg);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 700;
}

.info-card p, .info-card li {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.info-card ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.info-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

@media (max-width: 992px) {
  .application-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .application-form-container {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .application-section h2 {
    font-size: 2rem;
  }
}

/* ===========================
    Contact Info Section
    =========================== */
.contact-info-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
}

.contact-info-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
}

.contact-info-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

.contact-info-icon {
  margin: 0 auto 1rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.2);
}

.contact-info-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}

/* ===========================
    Map Section
    =========================== */
.map-container {
  margin-top: 3rem;
  text-align: center;
}

.map-container h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  background: #ffffff;
  padding: 1rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .map-container {
    margin-top: 2rem;
  }

  .map-container h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .map-wrapper {
    padding: 0.5rem;
  }

  .map-wrapper iframe {
    height: 250px;
  }
}

/* ===========================
    Footer
    =========================== */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  color: white;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(16, 185, 129, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 15px 20px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 253, 244, 0.9) 25%, 
    rgba(255, 255, 255, 0.95) 50%, 
    rgba(236, 253, 245, 0.9) 75%, 
    rgba(255, 255, 255, 0.95) 100%);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
  position: relative;
  overflow: hidden;
  max-width: fit-content;
}

.footer-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(16, 185, 129, 0.1) 50%, 
    transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.footer-logo-image {
  width: 200px;
  height: 46.94px;
  border-radius: 4px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
  transform: scale(1.05);
}

.footer-section h3::after,
.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 1px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}

.footer-section a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transition: width 0.3s ease;
}

.footer-section a:hover {
  color: #10b981;
  transform: translateX(5px);
}

.footer-section a:hover::before {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.social-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  font-weight: 400;
}

/* ===========================
    Cross-browser Compatibility & Responsive Design
    =========================== */

/* Cross-browser prefixes for better compatibility */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Flexbox fallbacks for older browsers */
.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Grid fallbacks */
.grid-container {
  display: -ms-grid;
  display: grid;
}

/* Transitions with fallbacks */
.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Border-radius fallbacks */
.border-radius {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

/* Box-shadow fallbacks */
.box-shadow {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    -moz-animation-duration: 0.01ms !important;
  }
}

/* Large tablets and small laptops */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0 15px;
  }

  .admin-container {
    padding: 25px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .application-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .application-form-container {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .admin-container {
    padding: 20px;
  }

  .admin-header h1 {
    font-size: 2.5rem;
  }
}

/* Small tablets */
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Large mobile devices */
@media (max-width: 768px) {
  .admin-container {
    padding: 15px;
  }

  .admin-header h1 {
    font-size: 2rem;
  }

  .applications-grid,
  .messages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .application-card,
  .message-card {
    padding: 15px;
  }

  .application-header,
  .message-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .admin-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-input {
    min-width: auto;
  }

  .application-actions,
  .message-actions {
    justify-content: center;
  }

  .btn-action {
    flex: 1;
    text-align: center;
  }

  .message-content {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 16px;
  }

  .hero {
    height: 100svh;
    min-height: 620px;
  }

  .hero-carousel {
    height: 100%;
    min-height: inherit;
  }

  .hero-content h1 {
    font-size: 26px;
    max-width: none;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a,
  .hero-buttons button {
    width: 100%;
  }

  .hero-stats-mobile {
    display: flex;
    justify-content: center;
  }

  .hero-stats-desktop {
    display: none;
  }

  .carousel-nav {
    display: none;
  }

  .hero-shape {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(300px, 86vw);
    height: 100dvh;
    overflow-y: auto;
    background: rgba(248, 249, 247, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 30px 15px;
    gap: 1rem;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 12px 0 32px rgba(20, 33, 43, 0.12);
    border-right: 1px solid rgba(20, 33, 43, 0.08);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    color: #14212b;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(20, 33, 43, 0.08);
    width: 100%;
  }

  .nav-links li:not(.mobile-join-us) a {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
  }

  .nav-links .mobile-join-us a {
    -webkit-text-fill-color: white !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  }

  .nav-links a:hover {
    color: #127c63;
    transform: none;
  }

  .nav-links a.active {
    color: #127c63;
    border-bottom-color: rgba(16, 185, 129, 0.35);
  }

  .mobile-join-us {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
  }

  .mobile-join-us .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin: 0;
  }

  .desktop-join-us {
    display: none;
  }

  .services-container {
    padding: 0.5rem;
  }

  .service-card {
    width: 100%;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .btn-small {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-left {
    order: 1;
  }

  .contact-form-wrapper {
    order: 2;
    position: static;
  }

  .contact-map-full {
    order: 3;
    height: 280px;
    margin-top: 1rem;
  }

  .contact-item {
    padding: 1.25rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact h2 {
    font-size: 1.35rem;
  }

  .services-grid,
  .doctors-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }

  .service-card {
    padding: 24px 20px;
    width: 100%;
    max-width: 100%;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-card .service-icon svg {
    width: 48px;
    height: 48px;
  }

  .service-card .btn-outline {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .service-card .btn-outline {
    padding: 6px 10px;
    font-size: 0.65rem;
  }

  .navbar {
    padding: 0.9rem 0;
  }

  .nav-content {
    gap: 1rem;
  }

  .logo-image {
    width: 174px;
    height: 41px;
  }

  .hamburger-line {
    background: #ffffff;
  }

  .navbar.scrolled .hamburger-line {
    background: #14212b;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 12px;
  }

  .slide-content {
    align-items: center;
    padding-top: 92px;
    padding-bottom: 24px;
    min-height: inherit;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .about {
    padding: 40px 0;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .intro-content h3 {
    font-size: 18px;
  }

  .intro-stats {
    justify-content: center;
    gap: 1rem;
  }

  .stat-number {
    font-size: 24px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.2rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }

  .about-mission .mission-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .mission-item h3 {
    font-size: 18px;
  }

  .about-community {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .community-content h3 {
    font-size: 18px;
  }

  .community-content p {
    font-size: 14px;
  }

  /* Service Detail Responsive Styles */
  .service-detail {
    padding: 30px 0;
  }

  .service-detail-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .service-icon-large {
    width: 50px;
    height: 50px;
  }

  .service-detail-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .service-description h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .service-description h3 {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.5rem 0;
  }

  .care-types {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .care-type {
    padding: 0.75rem;
  }

  .service-info-card {
    padding: 0.75rem;
  }

  .service-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .info-item {
    margin-bottom: 0.25rem;
    font-size: 12px;
  }

  .service-cta {
    gap: 0.5rem;
  }

  .service-cta .btn-primary,
  .service-cta .btn-secondary {
    padding: 6px 12px;
    font-size: 12px;
  }

  .back-button-section {
    padding: 12px 0;
  }

  .back-button-section .btn-outline {
    padding: 5px 10px;
    font-size: 12px;
  }

  .related-services {
    padding: 30px 0;
  }

  .related-services h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  .container {
    padding: 0 15px;
  }

  /* Contact Section - Mobile */
  .contact {
    padding: 60px 0;
  }

  .contact h2 {
    font-size: 1.3rem;
  }

  .contact .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .testimonial-submit {
    margin-top: 1.5rem;
    padding: 0;
  }

  .testimonial-form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-item {
    padding: 1rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .contact-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .contact-form-container {
    padding: 1.25rem;
  }

  .contact-form button {
    width: 100%;
    justify-content: center;
  }

  .contact-map-full {
    width: 100%;
    height: 250px;
    margin-top: 0.5rem;
    border-radius: 12px;
  }

  .contact-map-full iframe {
    height: 250px;
    border-radius: 12px;
  }

  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
    padding: 20px 16px;
    margin: 0 auto;
  }

  .slide-content {
    padding-top: 88px;
    padding-bottom: 20px;
    min-height: inherit;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .carousel-indicators {
    bottom: 15px;
  }

  .hero-features {
    justify-content: flex-start;
    margin: 1.2rem 0 0;
  }

  .feature-item {
    font-size: 12px;
    padding: 8px 10px;
    width: 100%;
    border-radius: 14px;
  }

  .hero-badge {
    padding: 6px 10px;
    margin-bottom: 12px;
  }

  .badge-text {
    font-size: 11px;
  }

  .element-1,
  .element-2,
  .element-3 {
    display: none;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .stat-icon {
    width: 30px;
    height: 30px;
  }

  .stat-item h3 {
    font-size: 16px;
  }

  .stat-item p {
    font-size: 11px;
  }

  .services,
  .doctors,
  .blog,
  .contact {
    padding: 50px 0;
  }

  .stats {
    padding: 25px 0;
  }

  .cta {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 16px;
  }

  .nav-links {
    gap: 1rem;
  }

  .service-card {
    width: 100%;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.88rem;
    margin-bottom: 0.9rem;
  }

  .btn-small {
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  .about-header h2 {
    font-size: 24px;
  }

  .about-intro {
    padding: 1.5rem;
  }

  .intro-content h3 {
    font-size: 16px;
  }

  .intro-stats {
    justify-content: center;
    gap: 1rem;
  }

  .stat-number {
    font-size: 20px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-card {
    padding: 1rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
  }

  .about-mission .mission-content {
    padding: 1.5rem;
  }

  .mission-item h3 {
    font-size: 16px;
  }

  .about-community {
    padding: 1.5rem;
  }

  .community-content h3 {
    font-size: 16px;
  }

  /* Service Detail Mobile Styles */
  .service-detail {
    padding: 20px 0;
  }

  .service-detail-header h1 {
    font-size: 1.5rem;
  }

  .service-icon-large {
    width: 45px;
    height: 45px;
  }

  .service-description h2 {
    font-size: 1.3rem;
  }

  .service-description h3 {
    font-size: 1rem;
  }

  .service-description p {
    font-size: 13px;
  }

  .service-description ul li {
    font-size: 13px;
  }

  .care-type {
    padding: 0.6rem;
  }

  .care-type h4 {
    font-size: 0.9rem;
  }

  .care-type p {
    font-size: 12px;
  }

  .info-item {
    flex-direction: column;
    gap: 0.1rem;
    font-size: 11px;
  }

  .service-info-card h3 {
    font-size: 0.9rem;
  }

  .back-button-section {
    padding: 10px 0;
  }

  .back-button-section .btn-outline {
    padding: 4px 8px;
    font-size: 11px;
  }

  .service-cta .btn-primary,
  .service-cta .btn-secondary {
    padding: 5px 10px;
    font-size: 11px;
  }

  .related-services {
    padding: 25px 0;
  }

  .related-services h2 {
    font-size: 1.2rem;
  }

  .service-image {
    margin: 0.75rem 0;
  }
}

/* ===========================
    Login Page Styles
    =========================== */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-container {
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: auto 0; /* Center vertically but allow some top/bottom space */
}

.login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(16, 185, 129, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.login-container {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.1);
  max-width: 340px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 1rem auto;
}

.login-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 0.75rem;
  text-align: center;
  color: white;
}

.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.login-logo .logo-image {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px;
  backdrop-filter: blur(10px);
}

.login-logo h1 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-logo p {
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 400;
}

.login-form-container {
  padding: 0.85rem;
}

.login-page .login-form {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.login-page .login-form h2 {
  font-size: 1rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.error-message {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 1rem;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.login-page .login-form .form-group {
  margin-bottom: 0.6rem;
}

.login-page .login-form .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.login-page .login-form .form-group input {
  width: 100%;
  padding: 8px 10px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.login-form .form-group input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}

.login-form .form-group input::placeholder {
  color: #9ca3af;
  font-size: 13px;
}

.login-page .login-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.6rem;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.login-footer {
  padding: 0.65rem 0.85rem;
  background: rgba(16, 185, 129, 0.02);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  text-align: center;
}

.back-to-site-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.back-to-site-btn:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

/* Responsive Login */
@media (max-width: 480px) {
  .login-page {
    padding: 10px;
  }

  .login-container {
    border-radius: 12px;
    max-width: 330px;
  }

  .login-header {
    padding: 0.75rem;
  }

  .login-logo .logo-image {
    width: 58px;
    height: 58px;
  }

  .login-logo h1 {
    font-size: 1.1rem;
  }

  .login-form-container {
    padding: 0.85rem;
  }

  .login-page .login-form h2 {
    font-size: 1rem;
  }

  .login-footer {
    padding: 0.65rem 0.85rem;
  }
}

/* ===========================
    Admin Page Styles
    =========================== */
.admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(139, 92, 246, 0.06) 0%,
      transparent 50%
    );
  min-height: 100vh;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.12);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.08);
}

.admin-container::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.15) 0%,
    rgba(16, 185, 129, 0.05) 70%
  );
  z-index: 0;
  animation: adminFloat 20s ease-in-out infinite;
}

.admin-container::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(59, 130, 246, 0.03) 70%
  );
  z-index: 0;
  animation: adminFloat 25s ease-in-out infinite reverse;
}

@keyframes adminFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(20px, -15px) scale(1.05);
    opacity: 0.8;
  }
  66% {
    transform: translate(-15px, 20px) scale(0.95);
    opacity: 0.7;
  }
}

.admin-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.admin-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.admin-header h1 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.admin-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
  opacity: 0.8;
}

.admin-header p {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

.admin-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.application-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.application-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.application-card:hover::before {
  left: 100%;
}

.application-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.application-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.application-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.application-info {
  margin-bottom: 10px;
}

.application-info p {
  margin: 3px 0;
  font-size: 13px;
  color: #666666;
}

.application-info strong {
  color: #1a1a1a;
  font-weight: 600;
}

.cv-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.cv-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-new {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-reviewed {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.status-accepted {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border: 1px solid rgba(6, 95, 70, 0.2);
}

.status-rejected {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.login-form {
  max-width: 400px;
  margin: 100px auto;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #1a1a1a;
  font-weight: 700;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}

.login-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-secondary {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Admin Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.admin-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.admin-stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.03),
    transparent
  );
  transition: left 0.5s ease;
}

.admin-stats .stat-item:hover::before {
  left: 100%;
}

.admin-stats .stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.2);
}

.admin-stats .stat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  transition: all 0.3s ease;
}

.admin-stats .stat-item:hover .stat-icon {
  transform: scale(1.05);
  border-color: #10b981;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.admin-stats .stat-content {
  flex: 1;
}

.admin-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.admin-stats .stat-label {
  font-size: 0.75rem;
  color: #666666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Admin Sections */
.admin-section {
  margin-bottom: 3rem;
}

.admin-section h2 {
  font-size: 1.75rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.admin-section h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

/* Carousel Grid */
.carousel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Card Item */
.card-item {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
  transition: all 0.3s ease;
}

.card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.card-item .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.card-item .card-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.card-item .card-body {
  margin-bottom: 15px;
}

.card-item .card-body p {
  color: #666;
  font-size: 0.9rem;
}

.card-item .card-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Messages Grid */
.messages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

.message-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.message-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.message-card:hover::before {
  left: 100%;
}

.message-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.message-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.message-info {
  margin-bottom: 15px;
}

.message-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #666666;
}

.message-info strong {
  color: #1a1a1a;
  font-weight: 600;
}

.message-content {
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(16, 185, 129, 0.02);
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.message-content p {
  margin: 0;
  line-height: 1.6;
  color: #555555;
}

.message-actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
}

/* Admin Action Buttons */
.application-actions,
.message-actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.btn-action {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-accept {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-reject {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.btn-reject:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-view {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.btn-view:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Search and Filter */
.admin-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.search-input {
  flex: 1;
  min-width: 250px;
  padding: 12px 16px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.filter-select {
  padding: 12px 16px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.filter-select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Responsive Admin Styles */
@media (max-width: 768px) {
  .admin-container {
    padding: 15px;
  }

  .admin-header h1 {
    font-size: 2rem;
  }

  .admin-stats {
    gap: 1rem;
  }

  .admin-stats .stat-item {
    min-width: 100px;
    padding: 0.75rem;
  }

  .admin-stats .stat-number {
    font-size: 1.5rem;
  }

  .applications-grid,
  .messages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .application-card,
  .message-card {
    padding: 15px;
  }

  .application-header,
  .message-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .admin-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-input {
    min-width: auto;
  }

  .application-actions,
  .message-actions {
    justify-content: center;
  }

  .btn-action {
    flex: 1;
    text-align: center;
  }

  .message-content {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .admin-header h1 {
    font-size: 1.75rem;
  }

  .application-card {
    padding: 12px;
  }

  .application-header h3 {
    font-size: 1.1rem;
  }

  .cv-download {
    padding: 4px 8px;
    font-size: 11px;
    gap: 4px;
  }

  .status-badge {
    padding: 4px 8px;
    font-size: 11px;
  }
}

/* ===========================
    Password Change Modal
    =========================== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
}

.close:hover,
.close:focus {
  color: #10b981;
  text-decoration: none;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-weight: 700;
}

.modal-content .form-group {
  margin-bottom: 1.25rem;
}

.modal-content .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
}

.modal-content .form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.modal-content .form-group input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}

.modal-content .btn-primary {
  width: 100%;
  margin-top: 1rem;
}

.success-message {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 1.5rem;
  color: #065f46;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* Password Input with Toggle */
.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-container input {
  flex: 1;
  padding-right: 40px; /* Space for the toggle button */
  width: 100%;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666666;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.password-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Ensure login form inputs work with password toggle */
.login-form .password-input-container input {
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.login-form .password-input-container input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}

/* ===========================
    Application Details Modal
    =========================== */
.details-grid {
  display: grid;
  gap: 2rem;
}

.detail-section {
  background: rgba(16, 185, 129, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.detail-section h3 {
  color: #10b981;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item label {
  font-weight: 600;
  color: #1a1a1a;
  flex: 0 0 150px;
}

.detail-item span {
  color: #666666;
  flex: 1;
  text-align: right;
}

.detail-section p {
  color: #555555;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Details Modal Scrolling */
#details-modal .modal-content,
#message-details-modal .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

/* ===========================
    About Page Styles
    =========================== */
.page-hero {
  background: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
  color: white;
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.about-page {
  padding: 80px 0;
  background: #f8fafc;
}

.about-page-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-page-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.about-page-section:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.about-page-text h2 {
  color: #10b981;
  font-size: 1.75rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.about-page-text p {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-page-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 50px auto 0;
}

.about-stat-card {
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  color: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
  transition: transform 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-page-section {
    padding: 30px 20px;
  }
  
  .about-page-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-stat-number {
    font-size: 2.5rem;
  }
}

/* About Section Header */
.about-section-header {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.about-section-header .section-header {
  text-align: center;
  margin-bottom: 0;
}

.about-section-header .section-header h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-family: 'Calibri', 'Segoe UI', sans-serif;
  text-transform: none;
}
