 /* ========================================
   PREMIUM DESIGN SYSTEM - CLEAN WHITE LUXURY
   ======================================== */
:root {
  --orange: #FF6B35;
  --orange-light: #FF8C42;
  --orange-dark: #E54D1F;
  --green: #1F3A0F;
  --green-light: #2D5016;
  --text: #1a1a1a;
  --text-light: #555;
  --text-muted: #888;
  --white: #ffffff;
  --cream: #FFFAF6;
  --cream-dark: #FFF5EE;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
  --shadow-orange: 0 15px 40px rgba(255,107,53,0.25);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-dark);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-60px) translateX(-10px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) translateX(-20px) rotate(270deg);
    opacity: 1;
  }
}

@keyframes heroZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Animation utility classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-40px);
}

.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(40px);
}

.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

.animate-on-scroll.scale {
  transform: scale(0.9);
}

.animate-on-scroll.scale.visible {
  transform: scale(1);
}

/* Stagger animation for children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.9s; }
.stagger-children.visible > *:nth-child(10) { transition-delay: 1s; }
.stagger-children.visible > *:nth-child(11) { transition-delay: 1.1s; }
.stagger-children.visible > *:nth-child(12) { transition-delay: 1.2s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-medium);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  padding: 0.7rem 0;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255,107,53,0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Playfair Display', serif;
}

.logo i {
  color: var(--orange);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--orange);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  padding: 0.8rem 1.5rem;
  display: block;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--orange);
}

.dropdown-menu a::after {
  display: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  padding: 0.9rem 2rem !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-orange);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  /*position: absolute;*/
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255,107,53,0.35);
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: var(--transition-fast);
}

/* ========================================
   HERO SECTION - CINEMATIC
   ======================================== */
.hero-slider {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  background: var(--green);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255,107,53,0.3);
  border-radius: 50%;
  animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; width: 15px; height: 15px; }
.particle:nth-child(3) { left: 40%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 60%; top: 70%; animation-delay: 1s; width: 8px; height: 8px; }
.particle:nth-child(5) { left: 80%; top: 40%; animation-delay: 3s; }
.particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 5s; width: 12px; height: 12px; }
.particle:nth-child(7) { left: 30%; top: 80%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 70%; top: 20%; animation-delay: 1.5s; width: 6px; height: 6px; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 25s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,58,15,0.85), rgba(255,107,53,0.75));
}

.slide-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  position: relative;
  padding: 2rem;
  max-width: 900px;
}

.slide-content h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-slide.active .slide-content h1 {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.accent-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #FFD700);
  margin: 1.5rem auto;
  border-radius: 2px;
  opacity: 0;
  animation: scaleIn 0.8s ease forwards;
  animation-delay: 0.5s;
}

.hero-slide.active .accent-line {
  opacity: 0;
  animation: scaleIn 0.8s ease forwards;
  animation-delay: 0.5s;
}

.slide-content .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
}

.hero-slide.active .slide-content .hero-subtitle {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;
}

.hero-slide.active .hero-buttons {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  padding: 1.1rem 2.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255,107,53,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

/* Hero Navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  z-index: 10;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev { left: 3rem; }
.hero-next { right: 3rem; }

.hero-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.hero-dot:hover {
  background: rgba(255,255,255,0.5);
}

.hero-dot.active {
  width: 40px;
  border-radius: 6px;
  background: var(--orange);
  border-color: var(--white);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
  /* background: linear-gradient(135deg, var(--green), var(--green-light)); */
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background:var(--cream-dark);
  border-radius: 20px;
  transition: var(--transition-medium);
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
  display: inline-block;
  transition: var(--transition-fast);
}

.stat-item:hover .stat-icon {
  transform: scale(1.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color:  var(--text);
  font-size: 1rem;
  font-weight: 500;
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
  padding: 7rem 3rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.services-section {
  background: var(--cream);
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,140,66,0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Service card with image */
.service-card-img {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.service-card-img:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-medium);
}

.service-card-img:hover img {
  transform: scale(1.05);
}

.service-card-img .content {
  padding: 2rem;
}

/* ========================================
   SERVICE DETAILS SECTION
   ======================================== */
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.service-detail-block.reverse {
  direction: rtl;
}

.service-detail-block.reverse > * {
  direction: ltr;
}

.service-detail-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,107,53,0.3));
  z-index: 1;
  pointer-events: none;
}

.service-detail-content .number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,107,53,0.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.service-detail-content h3 {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.service-detail-content p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-detail-content li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.service-detail-content li i {
  color: var(--orange);
  font-size: 1.2rem;
}

.service-detail-content a {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-detail-content a:hover {
  gap: 1rem;
}

/* ========================================
   MEMBERSHIP SECTION
   ======================================== */
.membership-container {
  max-width: 1400px;
  margin: 3rem auto;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.membership-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=800') center/cover;
  opacity: 0.1;
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  position: relative;
  z-index: 1;
}

.membership-pricing {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.membership-badge {
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.3);
}

.membership-pricing h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.membership-price {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  margin: 1rem 0;
}

.membership-pricing p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.membership-benefits {
  padding: 4rem;
  color: var(--white);
}

.membership-benefits h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: var(--transition-medium);
  border: 1px solid rgba(255,255,255,0.1);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(10px);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--orange);
}

.benefit-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.benefit-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
  background: var(--white);
}

.team-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(31,58,15,0.8), transparent);
  opacity: 0;
  transition: var(--transition-medium);
}

.team-card:hover .team-image::after {
  opacity: 1;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background: var(--white);
}

.team-role {
  background: var(--cream);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-info h4 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.team-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.team-social a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

/* ========================================
   TIMELINE SECTION - FIXED
   ======================================== */
.timeline-section {
  background: var(--cream);
  padding: 7rem 3rem;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  transform: translateX(-50%);
  /*z-index: 1;*/
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*margin-bottom: 4rem;*/
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 100%;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Left-aligned items (odd numbers: 1, 3, 5...) */
.timeline-item:nth-child(odd) .timeline-content {
  order: 1;
  margin-right: auto;
  width: 45%;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-number {
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Right-aligned items (even numbers: 2, 4, 6...) */
.timeline-item:nth-child(even) .timeline-content {
  order: 3;
  margin-left: auto;
  width: 45%;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-number {
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
}

/* Arrow pointers for timeline items */
.timeline-item:nth-child(odd) .timeline-content::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent var(--white);
  transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 15px 0;
  border-color: transparent var(--white) transparent transparent;
  transform: translateY(-50%);
}

.timeline-content h3 {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.timeline-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  /*align-items: center;*/
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow-orange);
  border: 4px solid var(--cream);
  z-index: 2;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .timeline-line {
    left: 35px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    padding-left: 100px;
    /*margin-bottom: 3rem;*/
    align-items: flex-start;
  }
  
  .timeline-item .timeline-content {
    order: 2 !important;
    width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
  }
  
  .timeline-item .timeline-number {
    order: 1 !important;
    position: absolute;
    left: 0;
    transform: translateX(0);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .timeline-content::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .timeline-section {
    padding: 5rem 1.5rem;
  }
  
  .timeline-item {
    padding-left: 80px;
  }
  
  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .timeline-content h3 {
    font-size: 1.5rem;
  }
}
/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1200') center/cover;
  opacity: 0.1;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: 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");
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 1.3rem 3rem;
  box-shadow: var(--shadow-lg);
}

.cta-buttons .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Alternate CTA */
.cta-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  padding: 5rem 4rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.cta-offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 0.8rem 2rem;
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.cta-card h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.cta-card p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

.cta-price-block {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-price {
  text-align: center;
}

.cta-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Playfair Display', serif;
}

.cta-price .label {
  color: var(--text-light);
  font-size: 1rem;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream);
  border-radius: 24px;
  transition: var(--transition-medium);
}

.why-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.why-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-orange);
  transition: var(--transition-medium);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(10deg);
}

.why-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.why-card h3 {
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 1rem;
  font-weight: 700;
}

.why-card p {
  line-height: 1.8;
  color: var(--text-light);
}

/* ========================================
   FOUNDATION SECTION
   ======================================== */
.foundation-section {
  background: var(--cream);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,58,15,0.9), rgba(255,107,53,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--white);
  transform: scale(0);
  transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  animation: scaleIn 0.3s ease;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 45px;
  height: 45px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  transform: rotate(90deg);
  background: var(--orange-dark);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  background: var(--cream);
}

.testimonials-carousel {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 33.333%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  min-height: 350px;
  position: relative;
  transition: var(--transition-medium);
  border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  font-size: 3rem;
  color: rgba(255,107,53,0.15);
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-avatar-placeholder {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h5 {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
}

.author-info p {
  color: var(--orange);
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  color: var(--orange);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.carousel-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  border: 1px solid rgba(0,0,0,0.03);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 2rem;
}

.news-content h3 {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.news-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info > p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.contact-card h4 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.contact-card h4 i {
  font-size: 1.2rem;
}

.contact-card p {
  line-height: 1.8;
  color: var(--text-light);
}

.contact-card a {
  color: var(--text-light);
}

.contact-card a:hover {
  color: var(--orange);
}

.contact-form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 2rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--green);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group label span {
  color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.2rem;
  border: 2px solid rgba(31,58,15,0.1);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: rgba(255,255,255,0.8);
  padding: 5rem 3rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=800') center/cover;
  opacity: 0.05;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-section p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  z-index: 999;
  box-shadow: var(--shadow-orange);
  font-size: 1.2rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,107,53,0.4);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  overflow-y: auto;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.modal.active {
  display: block;
}

.modal-content {
  background: var(--white);
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 24px;
  overflow: hidden;
  animation: scaleIn 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  background: var(--orange);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: var(--white);
  font-size: 1.8rem;
}

.modal-close {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-prev { left: 1rem; }
  .hero-next { right: 1rem; }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid,
  .news-grid,
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-detail-block,
  .service-detail-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .membership-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-slide {
    min-width: 50%;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .timeline-line {
    left: 35px;
  }
  
  .timeline-item {
    flex-direction: column;
    padding-left: 100px;
    /*margin-bottom: 3rem;*/
  }
  
  .timeline-content,
  .timeline-content.right {
    text-align: left;
    padding: 0;
  }
  
  .timeline-number {
    position: absolute;
    left: 0;
  }
  
  .timeline-spacer {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 5rem 1.5rem;
  }
  
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .stats-container,
  .services-grid,
  .team-grid,
  .gallery-grid,
  .news-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slide {
    min-width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-nav {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .cta-card {
    padding: 3rem 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .membership-pricing,
  .membership-benefits {
    padding: 2.5rem 2rem;
  }
  
  .cta-price-block {
    flex-direction: column;
  }
}