/* ============================================
   CREDIBLE OVERSEAS - DESIGN TOKENS & BASE STYLES
   Mobile First, Desktop Refined
   ============================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  /* Primary - Deep Ocean Blue */
  --primary: #0A2463;
  --primary-dark: #061539;
  --primary-light: #1B4F8A;
  --primary-rgb: 10, 36, 99;

  /* Secondary - Coral/Salmon */
  --secondary: #E8374D;
  --secondary-dark: #C42A3A;
  --secondary-light: #FF5C6B;

  /* Accent - Teal */
  --accent: #3EACA9;
  --accent-dark: #2D8A87;
  --accent-light: #5FC7C4;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --cream: #F0F4F8;
  --cream-warm: #EDF2F7;
  --dark: #0D1B2A;
  --dark-soft: #1B2838;
  --text: #1E293B;
  --text-light: #475569;
  --text-muted: #94A3B8;

  /* Semantic */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-2xl: 0 30px 80px rgba(0,0,0,0.15);
  --shadow-color: rgba(var(--primary-rgb), 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-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
  --z-toast: 600;

  /* Container */
  --container-max: 1280px;
  --container-padding: 1rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

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

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

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

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-full);
}

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

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

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

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

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

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

.cursor-ring.click {
  width: 30px;
  height: 30px;
  border-color: var(--primary);
  opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* ============================================
   PAGE WRAPPER - FADE IN
   ============================================ */
.page-wrapper {
  opacity: 0;
  animation: pageFadeIn 0.8s ease forwards;
  animation-delay: 0.1s;
}

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

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

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

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-lg {
  padding: var(--space-4xl) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }

p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-sm) 0;
  transition: var(--transition);
  background: transparent;
}

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

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  z-index: var(--z-sticky);
}

.navbar-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.navbar-logo span {
  display: none;
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  padding: var(--space-xs) 0;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

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

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

.navbar-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: var(--z-sticky);
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: calc(var(--z-sticky) - 1);
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  opacity: 0;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

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

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

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 55, 77, 0.3);
}

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

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(62, 172, 169, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-pulse {
  animation: btnPulse 2s infinite;
}

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

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.btn.loading .btn-text {
  opacity: 0.7;
}

.btn.loading .btn-spinner {
  display: block;
}

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

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.card-icon-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.card-icon-secondary { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); }
.card-icon-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); }

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.badge-secondary {
  background: rgba(232, 55, 77, 0.1);
  color: var(--secondary);
}

.badge-accent {
  background: rgba(62, 172, 169, 0.1);
  color: var(--accent);
}

.badge-ghost {
  background: var(--cream);
  color: var(--text-light);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-btns {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: var(--z-fixed);
}

@media (min-width: 640px) {
  .floating-btns {
    bottom: var(--space-xl);
    right: var(--space-xl);
    flex-direction: row;
  }
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
  animation: slideInRight 0.5s ease forwards;
  opacity: 0;
  line-height: 1;
}

@media (min-width: 640px) {
  .float-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

.float-btn:nth-child(1) { animation-delay: 0.3s; }
.float-btn:nth-child(2) { animation-delay: 0.5s; }

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

.float-btn:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow-xl);
}

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

.float-btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.float-btn-whatsapp svg {
  color: var(--white);
}

.float-btn-whatsapp.pulse {
  animation: slideInRight 0.5s ease forwards, btnPulse 2s 1s infinite;
}

.float-btn-chat {
  background: var(--primary);
  color: var(--white);
  padding: 10px;
}

@media (min-width: 640px) {
  .float-btn-chat {
    padding: 12px;
  }
}

.float-btn-chat svg {
  color: var(--white);
}

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

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,36,99,0.78) 0%, rgba(13,27,42,0.52) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 5rem var(--container-padding) 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr auto;
    gap: 4rem;
    padding: 6rem var(--container-padding) 5rem;
  }
}

/* ---- Text Block ---- */
.hero-text-block {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.highlight-bar {
  position: relative;
  display: inline;
  color: var(--white);
}

.highlight-bar::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  right: -4px;
  bottom: 2px;
  background: var(--secondary);
  border-radius: 6px;
  z-index: -1;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.hero-video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.85;
  transition: var(--transition);
}

.hero-video-link:hover { opacity: 1; }

.hero-play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-play-icon svg { margin-left: 2px; }

.hero-video-link:hover .hero-play-icon {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ---- Image Block ---- */
.hero-img-block {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

@media (min-width: 900px) {
  .hero-img-block { justify-content: flex-end; }
}

.hero-img-frame {
  position: relative;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

@media (min-width: 900px) {
  .hero-img-frame { width: 280px; }
}

.hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .hero-img { height: 400px; }
}

.hero-img-badge {
  position: absolute;
  bottom: -12px;
  left: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(232,55,77,0.35);
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--dark);
  padding: var(--space-3xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(var(--primary-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

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

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

@media (min-width: 640px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  background: var(--secondary);
  padding: var(--space-md) 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-right: var(--space-xl);
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

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

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.service-card-title {
  margin-bottom: var(--space-sm);
}

.service-card-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary);
  transition: var(--transition);
  padding: var(--space-sm) 0;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.service-card-link:hover {
  gap: var(--space-sm);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.about-image {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-float-card {
  position: absolute;
  bottom: -15px;
  right: 10px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-xl);
  text-align: center;
  min-width: 130px;
}

@media (min-width: 640px) {
  .about-float-card {
    bottom: -20px;
    right: -20px;
    padding: var(--space-xl);
    min-width: 160px;
  }
}

.about-float-card-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.about-float-card-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(62, 172, 169, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-check-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.about-check-text {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* ============================================
   PARALLAX DIVIDER
   ============================================ */
.parallax-divider {
  position: relative;
  padding: var(--space-4xl) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .parallax-divider {
    background-attachment: fixed;
  }
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.9), rgba(62, 172, 169, 0.7));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

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

.parallax-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.parallax-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.parallax-btns .btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* ============================================
   VIDEO PREVIEW
   ============================================ */
.videos-section {
  background: var(--off-white);
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

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

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

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

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

.video-card:hover .video-play-overlay {
  background: rgba(0,0,0,0.5);
}

.video-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

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

.video-card-body {
  padding: var(--space-lg);
}

.video-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.video-card-source {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

.lead-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.lead-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

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

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

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

.lead-feature-text p {
  font-size: 0.9rem;
}

.lead-form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .lead-form-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
  }
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.form-input {
  width: 100%;
  padding: 1rem 1.125rem;
  border: 2px solid var(--cream-warm);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
  font-size: 1rem;
  touch-action: manipulation;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(62, 172, 169, 0.1);
}

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

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

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--dark);
}

.testimonials-section .section-tag {
  color: var(--accent);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  overflow: hidden;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.testimonial-quote-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(62, 172, 169, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.testimonial-quote-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
}

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

.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.cta-btns .btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-soft);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

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

.footer-social-link:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

@media (min-width: 640px) {
  .footer-contact-item {
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  word-break: break-word;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  top: 80px;
  left: var(--space-md);
  right: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: var(--z-toast);
  transform: translateX(0);
  opacity: 0;
  transition: opacity 0.4s ease;
  max-width: none;
}

.toast.show {
  opacity: 1;
}

@media (min-width: 640px) {
  .toast {
    top: 100px;
    left: auto;
    right: var(--space-xl);
    max-width: 350px;
    transform: translateX(calc(100% + 50px));
  }

  .toast.show {
    transform: translateX(0);
  }
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.toast-text h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.toast-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-toggle {
  position: fixed;
  bottom: 75px;
  right: var(--space-sm);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: slideInRight 0.5s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

@media (min-width: 640px) {
  .chatbot-toggle {
    right: var(--space-xl);
  }
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

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

.chatbot-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--z-fixed) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.chatbot-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.chatbot-window {
  position: fixed;
  bottom: 160px;
  right: var(--space-sm);
  width: calc(100vw - 2rem);
  max-width: 340px;
  height: 480px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (min-width: 640px) {
  .chatbot-window {
    right: var(--space-xl);
    bottom: 160px;
    width: calc(100vw - 2rem);
    max-width: 380px;
    height: 550px;
  }
}

.chatbot-window.show {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.chatbot-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.chatbot-header-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.chatbot-header-text p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

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

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

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

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--off-white);
}

.chat-message {
  display: flex;
  gap: var(--space-sm);
  animation: msgFadeIn 0.3s ease;
}

@keyframes msgFadeIn {
  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;
}

.chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-message.bot .chat-avatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

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

.chat-avatar svg {
  width: 14px;
  height: 14px;
  color: var(--white);
}

.chat-bubble {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-message.bot .chat-bubble {
  background: var(--white);
  color: var(--text);
  border-bottom-left-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

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

.chat-quick-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.chat-quick-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border: 2px solid var(--cream-warm);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
}

.chat-quick-btn:hover {
  border-color: var(--accent);
  background: rgba(62, 172, 169, 0.05);
  color: var(--accent);
}

.chat-quick-btn svg {
  width: 18px;
  height: 18px;
  color: inherit;
  flex-shrink: 0;
}

.chat-input-area {
  padding: var(--space-md);
  background: var(--white);
  border-top: 1px solid var(--cream-warm);
  display: flex;
  gap: var(--space-sm);
}

.chat-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-warm);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  transition: var(--transition);
}

.chat-input:focus {
  outline: none;
  border-color: var(--accent);
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  background: var(--secondary-dark);
  transform: scale(1.05);
}

.chat-send-btn svg {
  width: 18px;
  height: 18px;
  color: var(--white);
  margin-left: 2px;
}

/* Chat service cards */
.chat-service-card {
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  cursor: pointer;
  transition: var(--transition);
}

.chat-service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.chat-service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-service-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.chat-service-info h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  margin-bottom: 2px;
}

.chat-service-info p {
  font-size: 0.75rem;
}

/* ============================================
   PAGE-SPECIFIC: ABOUT
   ============================================ */
.page-hero {
  padding: 6rem 0 2rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .page-hero {
    padding: 8rem 0 3rem;
  }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.9), rgba(13, 27, 42, 0.85));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

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

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

.bio-section {
  background: var(--white);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.bio-image-wrap {
  position: relative;
}

.bio-image {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.timeline-section {
  background: var(--off-white);
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.timeline-item {
  display: flex;
  gap: var(--space-xl);
  position: relative;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-dot svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.timeline-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--dark);
}

.timeline-content p {
  font-size: 0.9rem;
}

.timeline-year {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

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

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

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

/* ============================================
   PAGE-SPECIFIC: SERVICES
   ============================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

/* Services full grid cards — slightly taller with icon prominent */
.services-full-grid .service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1.5px solid var(--cream);
  display: flex;
  flex-direction: column;
}

.services-full-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.services-full-grid .service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}

.services-full-grid .service-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.services-full-grid .service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.services-full-grid .service-card-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.services-full-grid .service-card ul {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: var(--space-xl);
  padding-left: var(--space-lg);
  flex-grow: 1;
}

.services-full-grid .service-card ul li {
  margin-bottom: 6px;
  list-style: disc;
  line-height: 1.5;
}

.services-full-grid .service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--secondary);
  transform: scale(1);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.pricing-amount span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.pricing-duration {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--space-lg);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: var(--text);
}

.pricing-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

.process-section {
  background: var(--off-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
}

.process-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .process-step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.process-step h4 {
  margin-bottom: var(--space-xs);
  font-size: 0.95rem;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
  gap: var(--space-sm);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
  .faq-question {
    padding: var(--space-lg);
    font-size: 0.95rem;
    gap: var(--space-md);
  }
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .faq-question svg {
    width: 20px;
    height: 20px;
  }
}

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

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

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

.faq-answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/* ============================================
   PAGE-SPECIFIC: VIDEOS
   ============================================ */
.videos-page-section {
  background: var(--white);
}

.videos-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--cream);
  transition: var(--transition);
  cursor: pointer;
}

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

.videos-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* ============================================
   PAGE-SPECIFIC: TESTIMONIALS
   ============================================ */
.testimonials-page-section {
  background: var(--off-white);
}

.testimonials-tabs {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  border: 2px solid var(--cream-warm);
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.stats-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stats-card-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stats-card-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: var(--space-xs);
}

@media (min-width: 640px) {
  .stats-overview {
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
  }

  .stats-card {
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
  }

  .stats-card-number {
    font-size: 2.5rem;
  }

  .stats-card-label {
    font-size: 0.85rem;
  }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.google-reviews-embed {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .google-reviews-embed {
    padding: var(--space-xl);
  }
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--cream);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-xl);
}

@media (min-width: 640px) {
  .google-rating-badge {
    padding: var(--space-lg) var(--space-2xl);
  }
}

/* ============================================
   PAGE-SPECIFIC: BOOKING WIZARD
   ============================================ */
.book-section {
  background: var(--off-white);
  min-height: 100svh;
  padding-top: 100px;
}

.booking-wizard {
  max-width: 700px;
  margin: 0 auto;
}

.wizard-steps {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.wizard-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--cream-warm);
  color: var(--text-muted);
  transition: var(--transition);
}

.wizard-step.active .wizard-step-num {
  background: var(--secondary);
  color: var(--white);
}

.wizard-step.done .wizard-step-num {
  background: var(--success);
  color: var(--white);
}

.wizard-step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: none;
}

.wizard-connector {
  width: 40px;
  height: 2px;
  background: var(--cream-warm);
  margin: 0 4px;
  align-self: center;
}

.wizard-connector.done {
  background: var(--success);
}

.wizard-step.active .wizard-step-num {
  background: var(--secondary);
  color: var(--white);
}

.wizard-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: pageFadeIn 0.4s ease;
}

.wizard-panel h3 {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 2px solid var(--cream-warm);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.service-option-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-option.selected .service-option-radio {
  border-color: var(--secondary);
  background: var(--secondary);
}

.service-option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  display: none;
}

.service-option.selected .service-option-radio::after {
  display: block;
}

.service-option:hover,
.service-option.selected {
  border-color: var(--secondary);
  background: rgba(232, 55, 77, 0.03);
}

.service-option-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-option.selected .service-option-radio {
  border-color: var(--secondary);
  background: var(--secondary);
}

.service-option-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-option-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.service-option-info h4 {
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.service-option-info p {
  font-size: 0.8rem;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-2xl);
  gap: var(--space-md);
}

.wizard-nav .btn {
  flex: 1;
  justify-content: center;
}

.wizard-nav > div:empty {
  display: none;
}

.wizard-nav .btn-prev {
  max-width: 140px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-sm);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.calendar-day-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: var(--space-sm);
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  border-color: var(--accent);
  background: rgba(62, 172, 169, 0.05);
}

.calendar-day.selected {
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
}

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

.calendar-day.empty {
  cursor: default;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.time-slot {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--cream-warm);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.time-slot:hover:not(.disabled) {
  border-color: var(--accent);
}

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

.time-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: var(--text-muted);
}

.confirmation-card {
  text-align: center;
  padding: var(--space-2xl);
}

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

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

.confirmation-details {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: left;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.confirmation-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9rem;
}

.confirmation-row svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.confirmation-row strong {
  min-width: 80px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (min-width: 640px) {
  :root {
    --container-padding: 1.5rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card {
    padding: var(--space-xl);
  }

  .service-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-lg);
  }

  .service-card-icon svg {
    width: 26px;
    height: 26px;
  }

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

  .about-image-wrap {
    order: 2;
  }

  .about-image-wrap {
    grid-row: 1;
  }

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

  .lead-form-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
  }

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

  .testimonial-card {
    padding: var(--space-xl);
  }

  .floating-btns {
    bottom: var(--space-xl);
    right: var(--space-xl);
  }

  .float-btn {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.85rem;
  }

  .chatbot-toggle {
    bottom: 90px;
    right: var(--space-md);
    width: 56px;
    height: 56px;
  }

  .bio-grid {
    grid-template-columns: 1fr 2fr;
  }

  .bio-image-wrap {
    position: sticky;
    top: 100px;
  }

  .process-steps {
    grid-template-columns: repeat(5, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1.05);
  }

  .services-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .wizard-step-label {
    display: block;
  }

  .chat-quick-btns {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .marquee-content {
    gap: var(--space-2xl);
    padding-right: var(--space-2xl);
  }

  .marquee-item {
    font-size: 1.5rem;
  }

  .chatbot-window {
    right: var(--space-xl);
    max-width: 380px;
    height: 550px;
  }
}

/* ============================================
   RESPONSIVE - DESKTOP
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --container-padding: 2rem;
  }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .navbar-logo span {
    display: block;
  }

  .navbar-nav {
    display: flex;
  }

  .navbar-cta {
    display: block;
  }

  .hamburger {
    display: none;
  }

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

  .about-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-4xl);
  }

  .videos-grid,
  .videos-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-overview {
    grid-template-columns: repeat(4, 1fr);
  }

  .calendar-grid {
    gap: var(--space-md);
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hidden { display: none !important; }
.visible { display: block !important; }

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  opacity: 1;
  pointer-events: all;
}

.video-modal-inner {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.show .video-modal-inner {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.video-modal-close:hover {
  background: rgba(255,255,255,0.3);
}

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

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}
