/* ============================================
   FRENCH ACADEMY — DESIGN SYSTEM
   ============================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors */
  --primary: #1B4332;
  --primary-dark: #0D2818;
  --primary-light: #2D6A4F;
  --secondary: #C9A84C;
  --accent: #D4AF37;

  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --cream: #F5F0E8;
  --cream-warm: #F8F4EC;
  --dark: #1A1A2E;
  --dark-soft: #2A2A3E;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;

  --success: #10B981;
  --error: #EF4444;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;
  --container-padding: 0 24px;
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page wrapper fade-in */
.page-wrapper {
  animation: fadeIn 0.6s ease-out;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Selection */
::selection {
  background: var(--secondary);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
}

.cursor-ring.clicking {
  width: 30px;
  height: 30px;
}

@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring {
    display: none;
  }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-label svg {
  width: 18px;
  height: 18px;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-gold {
  background: var(--secondary);
  color: var(--dark);
}

.btn-gold:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

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

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--secondary);
}

.navbar.scrolled .logo-text {
  color: var(--primary);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 26px;
  height: 26px;
  color: var(--dark);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link svg {
  width: 18px;
  height: 18px;
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link.active {
  color: var(--secondary);
}

.nav-cta {
  margin-left: 16px;
}

.nav-cta .btn {
  padding: 10px 24px;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.25rem;
    color: var(--white);
    padding: 16px 32px;
  }

  .nav-link:hover {
    color: var(--secondary);
    background: rgba(255,255,255,0.05);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 40, 24, 0.92) 0%,
    rgba(27, 67, 50, 0.85) 50%,
    rgba(26, 26, 46, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
  width: 100%;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
}

.hero-ring {
  position: absolute;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-ring-1 {
  width: 420px;
  height: 420px;
  top: -20px;
  left: -20px;
  animation: pulseRing 3s ease-in-out infinite;
}

.hero-ring-2 {
  width: 460px;
  height: 460px;
  top: -40px;
  left: -40px;
  animation: pulseRing 3s ease-in-out infinite 0.5s;
}

.hero-ring-3 {
  width: 500px;
  height: 500px;
  top: -60px;
  left: -60px;
  animation: pulseRing 3s ease-in-out infinite 1s;
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.02); }
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  text-align: center;
}

.hero-badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Floating decorative images in hero */
.hero-floating-img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-1 {
  width: 120px;
  height: 120px;
  top: -30px;
  right: -60px;
  animation-delay: 0s;
}

.hero-floating-2 {
  width: 100px;
  height: 100px;
  bottom: 50px;
  left: -50px;
  animation-delay: 1s;
}

.hero-floating-3 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  right: 30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

@media (max-width: 1024px) {
  .hero-floating-img {
    display: none;
  }
}

.hero-text {
  color: var(--white);
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--secondary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero-badge-tag svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-social {
  display: flex;
  gap: 16px;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: var(--transition);
}

.hero-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.hero-social svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 100px 0 60px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    width: 260px;
    height: 260px;
  }

  .hero-ring-1 { width: 300px; height: 300px; }
  .hero-ring-2 { width: 340px; height: 340px; }
  .hero-ring-3 { width: 380px; height: 380px; }

  .hero-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -10px;
  }

  .hero-badge-number {
    font-size: 2rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 80px 0 40px;
    gap: 32px;
  }

  .hero-image-wrapper {
    width: 200px;
    height: 200px;
  }

  .hero-ring-1 { width: 230px; height: 230px; top: 15px; left: 15px; }
  .hero-ring-2 { width: 260px; height: 260px; top: 0; left: 0; }
  .hero-ring-3 { width: 300px; height: 300px; top: -20px; left: -20px; }

  .hero-badge {
    padding: 12px 20px;
  }

  .hero-badge-number {
    font-size: 1.75rem;
  }

  .hero-badge-text {
    font-size: 0.75rem;
  }

  .hero-badge-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .hero-badge-tag svg {
    width: 14px;
    height: 14px;
  }

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

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-description {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.875rem;
  }

  .hero-buttons .btn svg {
    width: 18px;
    height: 18px;
  }

  .hero-social {
    gap: 12px;
  }

  .hero-social a {
    width: 40px;
    height: 40px;
  }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--primary);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--primary-dark) 0%, transparent 50%, var(--primary-dark) 100%);
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* ---------- MARQUEE ---------- */
.marquee-section {
  background: var(--cream);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.service-card-image {
  margin: -40px -32px 24px -32px;
  height: 160px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.service-card h4 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9375rem;
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- ABOUT / AUTHORITY ---------- */
.about-authority {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-floating-card h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.about-floating-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content > p {
  color: var(--text-light);
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

/* Additional thumbnail images */
.about-thumb {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-thumb-1 {
  width: 100px;
  height: 100px;
  top: -20px;
  right: -40px;
  animation: float 5s ease-in-out infinite;
}

.about-thumb-2 {
  width: 80px;
  height: 80px;
  bottom: 60px;
  left: -30px;
  animation: float 4s ease-in-out infinite 1s;
}

/* Floating images in about content */
.about-floating-images {
  position: relative;
  margin-bottom: 24px;
}

.about-float-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.about-float-img-1 {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 16px;
}

.about-float-img-2 {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .about-thumb {
    display: none;
  }
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.credential-icon {
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-icon svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.credential-text {
  font-size: 1rem;
  color: var(--text);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-floating-card {
    right: 20px;
    bottom: -20px;
  }
}

/* ---------- PARALLAX DIVIDER ---------- */
.parallax-divider {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: 0;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 40, 24, 0.9) 0%,
    rgba(27, 67, 50, 0.85) 100%
  );
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  padding: 0 24px;
}

.parallax-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.parallax-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.parallax-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .parallax-divider {
    height: 400px;
  }
}

/* ---------- VIDEO GRID ---------- */
.video-section {
  background: var(--off-white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-left: 3px;
}

.video-card:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--secondary);
}

.video-card:hover .video-play-btn svg {
  color: var(--dark);
}

.video-source-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.video-source-badge svg {
  width: 14px;
  height: 14px;
}

.video-info {
  padding: 20px;
}

.video-info h4 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- LEAD FORM ---------- */
.lead-section {
  background: var(--white);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lead-content h2 {
  margin-bottom: 24px;
}

.lead-content > p {
  color: var(--text-light);
  font-size: 1.0625rem;
  margin-bottom: 40px;
}

.lead-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lead-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lead-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.lead-feature h5 {
  margin-bottom: 4px;
}

.lead-feature p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin: 0;
}

.lead-form-card {
  background: var(--off-white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.lead-form-image {
  margin: -48px -48px 24px -48px;
  height: 160px;
  overflow: hidden;
}

.lead-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-form-card h3 {
  text-align: center;
  margin-bottom: 8px;
}

.lead-form-card > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 1rem;
  color: var(--text);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .lead-form-card {
    padding: 32px 24px;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  color: var(--secondary);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  fill: var(--secondary);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background: var(--secondary);
}

.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--dark);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-column h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ---------- FLOATING ACTION BUTTONS ---------- */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideInRight 0.5s ease-out;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  animation: slideInRight 0.5s ease-out 0.1s both;
}

.whatsapp-btn:hover {
  background: #20BD5A;
  transform: translateY(-2px);
}

.whatsapp-btn-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn-icon svg {
  width: 24px;
  height: 24px;
  color: #25D366;
}

.whatsapp-btn span {
  font-weight: 600;
  font-size: 0.9375rem;
}

.whatsapp-btn-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: #25D366;
  z-index: -1;
  animation: pulse 2s infinite;
}

.chatbot-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: var(--transition);
  animation: slideInRight 0.5s ease-out 0.2s both;
}

.chatbot-trigger:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.chatbot-trigger svg {
  width: 24px;
  height: 24px;
}

.chatbot-trigger span {
  font-weight: 600;
  font-size: 0.9375rem;
}

.chatbot-trigger-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-trigger-icon svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-btn span,
  .chatbot-trigger span {
    display: none;
  }

  .whatsapp-btn,
  .chatbot-trigger {
    padding: 14px;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .whatsapp-btn-icon {
    width: 32px;
    height: 32px;
  }

  .whatsapp-btn-icon svg {
    width: 20px;
    height: 20px;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.chatbot-overlay {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 400px;
  height: 600px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 140px);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 998;
  animation: slideUp 0.3s ease-out;
}

.chatbot-overlay.active {
  display: flex;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header-avatar {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-header-avatar svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}

.chatbot-header h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.chatbot-header p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.chatbot-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-close:hover {
  background: rgba(255,255,255,0.2);
}

.chatbot-close svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-message {
  display: flex;
  gap: 12px;
  animation: messageFadeIn 0.3s ease-out;
}

@keyframes messageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.bot {
  align-self: flex-start;
  max-width: 85%;
}

.chat-message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
  max-width: 85%;
}

.chat-message-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-message.bot .chat-message-avatar {
  background: var(--primary);
}

.chat-message.user .chat-message-avatar {
  background: var(--secondary);
}

.chat-message-avatar svg {
  width: 18px;
  height: 18px;
}

.chat-message.bot .chat-message-avatar svg {
  color: var(--white);
}

.chat-message.user .chat-message-avatar svg {
  color: var(--dark);
}

.chat-message-content {
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.chat-message.bot .chat-message-content {
  background: var(--cream);
  color: var(--text);
  border-bottom-left-radius: var(--radius-sm);
}

.chat-message.user .chat-message-content {
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: var(--radius-sm);
}

.chat-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.chat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 2px solid var(--cream);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.chat-btn:hover {
  border-color: var(--secondary);
  background: var(--cream-warm);
}

.chat-btn svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.chat-btn-full {
  grid-column: span 2;
}

.chatbot-footer {
  padding: 16px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--cream);
}

.chatbot-input-wrapper {
  display: flex;
  gap: 12px;
}

.chatbot-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--cream);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  background: var(--white);
  transition: var(--transition);
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--secondary);
}

.chatbot-send {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-send:hover {
  background: var(--primary-light);
}

.chatbot-send svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* ---------- WHATSAPP BUTTON (standalone styles) ---------- */
.whatsapp-btn-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: #25D366;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--success);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast svg {
  width: 24px;
  height: 24px;
}

.toast.error {
  background: var(--error);
}

/* ---------- SPINNER ---------- */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- INTERNAL PAGES ---------- */
.page-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb span {
  color: var(--secondary);
  font-size: 0.875rem;
}

/* Hero with background image */
.page-hero-with-bg {
  background: none !important;
}

.page-hero-with-bg::before {
  display: none;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero-with-bg .breadcrumb,
.page-hero-with-bg h1,
.page-hero-with-bg p {
  position: relative;
  z-index: 1;
}

/* ---------- BOOKING WIZARD ---------- */
.booking-section {
  background: var(--off-white);
  min-height: 100vh;
}

.booking-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.booking-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  gap: 8px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--cream);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.progress-step.active .progress-step-number,
.progress-step.completed .progress-step-number {
  background: var(--primary);
  color: var(--white);
}

.progress-step.completed .progress-step-number {
  background: var(--success);
}

.progress-step-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: none;
}

@media (min-width: 768px) {
  .progress-step-label {
    display: block;
  }

  .progress-step.active .progress-step-label,
  .progress-step.completed .progress-step-label {
    color: var(--text);
    font-weight: 500;
  }
}

.progress-connector {
  width: 60px;
  height: 2px;
  background: var(--cream);
}

.progress-connector.active {
  background: var(--primary);
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.booking-step h3 {
  text-align: center;
  margin-bottom: 8px;
}

.booking-step > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

.service-selection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-option {
  border: 2px solid var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.service-option:hover {
  border-color: var(--secondary);
}

.service-option.selected {
  border-color: var(--primary);
  background: rgba(27, 67, 50, 0.03);
}

.service-option h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-option h5 svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.service-option p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

.date-selection {
  margin-bottom: 40px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.calendar-header {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 8px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-day:hover:not(.disabled) {
  background: var(--cream);
}

.calendar-day.selected {
  background: var(--primary);
  color: var(--white);
}

.calendar-day.disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.time-slot {
  padding: 12px;
  text-align: center;
  border: 2px solid var(--cream);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
}

.time-slot:hover {
  border-color: var(--secondary);
}

.time-slot.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.booking-form-grid .form-group.full-width {
  grid-column: span 2;
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.confirmation-success {
  text-align: center;
  padding: 40px 0;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.confirmation-icon svg {
  width: 40px;
  height: 40px;
  color: var(--success);
}

.confirmation-details {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  text-align: left;
}

.confirmation-details h5 {
  margin-bottom: 16px;
}

.confirmation-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
}

.confirmation-details p:last-child {
  margin-bottom: 0;
}

.confirmation-details svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.confirmation-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .booking-card {
    padding: 32px 24px;
  }

  .service-selection {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .booking-form-grid .form-group.full-width {
    grid-column: span 1;
  }
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-light);
  margin: 0;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 60px 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 64px;
  right: 64px;
  height: 2px;
  background: var(--cream);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
}

.process-step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.process-step h5 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-light);
  max-width: 180px;
  margin: 0;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-steps::before {
    top: 32px;
    bottom: 32px;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 24px;
  }

  .process-step-number {
    margin-bottom: 0;
  }

  .process-step p {
    max-width: none;
  }
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- VIDEO FILTERS ---------- */
.video-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--cream);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--secondary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ---------- LOAD MORE ---------- */
.load-more-wrapper {
  text-align: center;
  margin-top: 48px;
}

/* ---------- VIDEO TESTIMONIALS ---------- */
.video-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.video-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-testimonial-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
}

.video-testimonial-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-testimonial-info {
  padding: 20px;
}

.video-testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.video-testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .video-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .video-testimonials {
    grid-template-columns: 1fr;
  }
}

/* ---------- STATS COMPARE ---------- */
.stats-compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  align-items: start;
}

.stats-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stats-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-compare-item {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-compare-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.stat-compare-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.stat-compare-before {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

.stat-compare-arrow {
  width: 24px;
  height: 24px;
  color: var(--success);
}

.stat-compare-after {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--success);
}

@media (max-width: 768px) {
  .stats-compare {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- TRUST BADGES ---------- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.trust-badge h5 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-badge p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--cream);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -33px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: var(--radius-full);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.timeline-item h4 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-light);
  margin: 0;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  background: var(--primary);
  color: var(--white);
}

.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li {
  color: var(--white);
}

.pricing-card.featured .pricing-features li svg {
  color: var(--secondary);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--dark);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--cream);
}

.pricing-card.featured .pricing-header {
  border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-name {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-period {
  font-size: 0.9375rem;
  opacity: 0.7;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}
