/* ===========================
    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(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.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: 160px;
  height: 37.55px;
  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: flex-end;
  list-style: none;
  gap: 2rem;
  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: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: #666666;
}

.navbar.scrolled .nav-links a:hover {
  color: #10b981;
}

/* Mobile Join Us Button - Hidden on Desktop */
.mobile-join-us {
  display: none;
}

/* 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 24px;
  font-size: 14px;
}

/* ===========================
    Hero Section
    =========================== */
.hero {
  padding: 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
  height: 85vh;
  min-height: 550px;
  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%;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: radial-gradient(
    circle at center,
    rgba(16, 185, 129, 0.15) 0%,
    rgba(0, 0, 0, 0.3) 70%
  );
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-content {
  color: white;
  max-width: 600px;
  padding: 20px;
  position: relative;
  transform: translateZ(0);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 2rem 0;
  justify-content: flex-start;
  justify-content: flex-start;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.feature-item svg {
  flex-shrink: 0;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  animation: pulse 3s infinite ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
  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: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.hero-content h1 {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.hero-content h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  margin-bottom: 0;
  margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 5px;
}

.btn-large {
  padding: 10px 20px;
  font-size: 13px;
}

.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(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  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.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 15px;
}

.carousel-nav.next {
  right: 15px;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
  transform: scale(1.1);
}

.hero-shape {
  display: none;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 40%,
      rgba(59, 130, 246, 0.04) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 3;
}

.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.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #999999;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

.service-card-large {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

.service-image {
  position: relative;
  height: 150px;
  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(
    135deg,
    rgba(16, 185, 129, 0.8) 0%,
    rgba(16, 185, 129, 0.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-large:hover .service-overlay {
  opacity: 1;
}

.service-icon-large {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 1rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: iconFloat 3s ease-in-out infinite;
}

.service-icon-large:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  animation-play-state: paused;
}

.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: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  position: relative;
}

.service-content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.service-content p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-content .btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.service-content .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.service-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;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}

.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: 50px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(
      circle at 30% 70%,
      rgba(16, 185, 129, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(16, 185, 129, 0.06) 0%,
      transparent 40%
    ),
    linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.about::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  z-index: 1;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.05);
  z-index: 1;
}

.about-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.about-header h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.about-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Introduction principale */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
  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);
}

.intro-content h3 {
  font-size: 24px;
  color: #10b981;
  margin-bottom: 1rem;
  font-weight: 600;
}

.intro-content p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.intro-stats {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}

.intro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #666666;
  font-weight: 500;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.intro-image:hover img {
  transform: scale(1.05);
}

/* Valeurs clés */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: 1rem;
  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;
}

.value-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;
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border-color: #10b981;
}

.value-icon {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.2);
  margin: 0 auto 0.75rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  border-color: #10b981;
}

.value-card h4 {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.value-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}

/* 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: 20px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.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: 80px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.mission h2 {
  text-align: center;
  margin-bottom: 50px;
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.mission-card h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.mission-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===========================
    Philosophy Section
    =========================== */
.philosophy {
  padding: 80px 0;
  background: #ffffff;
}

.philosophy h2 {
  text-align: center;
  margin-bottom: 40px;
}

.philosophy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-text {
  text-align: center;
  margin-bottom: 50px;
}

.philosophy-text p {
  font-size: 1.2rem;
  color: #1a1a1a;
  line-height: 1.8;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.philosophy-item {
  background: linear-gradient(135deg, #f9fdf8 0%, #ffffff 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 30px;
}

.philosophy-item h3 {
  font-size: 1.3rem;
  color: #10b981;
  margin-bottom: 20px;
}

.philosophy-item ul {
  list-style: none;
  padding: 0;
}

.philosophy-item li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.philosophy-item li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.philosophy-item li:last-child {
  border-bottom: none;
}

/* ===========================
    How We Do It Section
    =========================== */
.how-we-do {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.how-we-do h2 {
  text-align: center;
  margin-bottom: 50px;
}

.how-we-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: all 0.3s ease;
}

.how-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.how-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
}

.how-item h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.how-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===========================
    Service Hero Section
    =========================== */
.service-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  text-align: center;
}

.service-image-section {
  margin-top: -30px;
  margin-bottom: 40px;
}

.service-detail-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.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: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  margin-bottom: 25px;
  color: white;
}

.service-hero-icon svg {
  width: 50px;
  height: 50px;
}

.service-hero h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.service-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.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.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.08);
}

.service-detail-card h2 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.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.15);
  border-radius: 16px;
  padding: 25px;
}

.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: 10px;
  padding: 12px 15px;
  background: #ffffff;
  border-radius: 8px;
  color: #666;
  transition: all 0.3s ease;
}

.other-services-list a:hover {
  background: #10b981;
  color: white;
}

.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: 2.5rem;
  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: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.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: 2.5rem;
  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;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  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;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  transform: translateY(-1px);
}

.form-group select {
  cursor: pointer;
  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='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 2px dashed rgba(16, 185, 129, 0.3);
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.file-upload-main {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.file-upload-sub {
  font-size: 11px;
  color: #666666;
}

.form-consent {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 12px;
  color: #666666;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 3px;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: #10b981;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.btn-primary.btn-large {
  position: relative;
  overflow: hidden;
}

.btn-primary.btn-large .btn-text {
  position: relative;
  z-index: 2;
}

.btn-primary.btn-large .btn-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.btn-primary.btn-large:hover .btn-icon {
  opacity: 1;
  right: 0.75rem;
}

.application-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fdf8 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.info-icon {
  margin-bottom: 0.75rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 12px;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  font-size: 12px;
  color: #666666;
  line-height: 1.5;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.2rem;
}

.info-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* ===========================
    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;
}

.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: 75vh;
    min-height: 450px;
  }

  .hero-carousel {
    height: 100%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons button {
    width: 100%;
  }

  .hero-stats-mobile {
    display: flex;
    justify-content: center;
  }

  .hero-stats-desktop {
    display: none;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }

  .hero-shape {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    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: 2px 0 20px rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(16, 185, 129, 0.2);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    color: #1a1a1a;
    font-weight: 500;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    width: 100%;
  }

  .nav-links li:not(.mobile-join-us) a {
    background: linear-gradient(to right, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .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: #10b981;
    transform: translateX(5px);
  }

  .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: 150px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
  }

  .service-card h3 {
    font-size: 0.85rem;
  }

  .service-card p {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .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: 2rem;
  }

  .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.75rem 0;
  }

  .nav-content {
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 12px;
  }

  .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.75rem;
  }

  .contact .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .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: 70vh;
    min-height: 450px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .hero-buttons {
    justify-content: center;
    gap: 0.5rem;
  }

  .carousel-indicators {
    bottom: 15px;
  }

  .hero-features {
    justify-content: center;
    margin: 1rem 0;
  }

  .feature-item {
    font-size: 12px;
    padding: 6px 10px;
  }

  .hero-badge {
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .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: 140px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
  }

  .service-card h3 {
    font-size: 0.8rem;
  }

  .service-card p {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .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: 16px;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.1);
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 2rem auto; /* Add some margin for better spacing */
}

.login-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 1rem 1rem 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: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  backdrop-filter: blur(10px);
}

.login-logo h1 {
  font-size: 1.5rem;
  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: 1rem;
}

.login-form h2 {
  font-size: 1.25rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 1rem;
  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-form .form-group {
  margin-bottom: 0.75rem;
}

.login-form .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.login-form .form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  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-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  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.75rem;
}

.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.75rem 1rem;
  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: 14px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  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: 16px;
  }

  .login-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .login-logo .logo-image {
    width: 60px;
    height: 60px;
  }

  .login-logo h1 {
    font-size: 1.5rem;
  }

  .login-form-container {
    padding: 1.5rem;
  }

  .login-form h2 {
    font-size: 1.25rem;
  }

  .login-footer {
    padding: 1rem 1.5rem;
  }
}

/* ===========================
    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: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
