/* ========== VARIABLES ========== */
:root {
  --navy: #0C2340;
  --navy-mid: #1A3A5C;
  --navy-light: #24507A;
  --gold: #C9A84C;
  --gold-hover: #D4B55E;
  --gold-dark: #A8893D;
  --sand: #F5F0E8;
  --sand-dark: #EDE5D8;
  --carbon: #2B2B2B;
  --carbon-light: #4A4A4A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 0.4s var(--ease-out);
  --transition-fast: 0.25s var(--ease-out);

  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1200px;
}

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

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

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

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

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

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 8px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  animation: preloaderProgress 1.5s var(--ease-out) forwards;
}

@keyframes preloaderProgress {
  to { width: 100%; }
}

/* ========== UTILITIES ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }
.light { color: var(--sand) !important; }

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

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

.section-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--carbon-light);
  max-width: 600px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(255,255,255,0.65); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}

.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

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

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

.btn-lg { padding: 18px 48px; font-size: 14px; }
.btn-full { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(12, 35, 64, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  transition: height var(--transition);
}

.navbar.scrolled .nav-logo-img { height: 64px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.lang-toggle:hover { color: var(--white); }
.lang-active { color: var(--gold); }
.lang-divider { opacity: 0.3; }
.lang-inactive { opacity: 0.5; }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 35, 64, 0.75) 0%,
    rgba(12, 35, 64, 0.6) 50%,
    rgba(12, 35, 64, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 140px 24px 120px;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-title-gold {
  color: var(--gold);
  display: block;
}

.hero-description {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
}

.stat-icon { color: var(--gold); flex-shrink: 0; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ========== PARK SECTION ========== */
.section-park {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.park-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.park-intro-text .section-title { margin-bottom: 24px; }

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.park-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.video-play-btn svg { margin-left: 4px; }
.video-play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.park-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.park-feature {
  padding: 36px 28px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.park-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.park-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.08);
  border-color: var(--gold);
  background: var(--white);
}

.park-feature:hover::before { transform: scaleX(1); }

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.park-feature:hover .feature-icon-wrapper {
  background: var(--gold);
  color: var(--navy);
}

.park-feature h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.park-feature p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== ADVANTAGES SECTION ========== */
.section-advantages {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

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

.advantages-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,35,64,0.92) 0%, rgba(26,58,92,0.88) 100%);
}

.section-advantages .container { position: relative; z-index: 2; }

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

.advantage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 36px;
  border-radius: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.advantage-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.advantage-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.advantage-card:hover::after { transform: scaleX(1); }

.advantage-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.advantage-card:hover .advantage-number { color: rgba(201, 168, 76, 0.4); }

.advantage-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ========== ABOUT SECTION ========== */
.section-about {
  padding: var(--section-padding) 0;
  background: var(--sand);
}

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

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

.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(12, 35, 64, 0.15);
}

.about-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 12px;
  z-index: 1;
}

.about-role {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}

.about-description {
  font-size: 17px;
  color: var(--carbon-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-quote {
  background: var(--white);
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.about-traits {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trait {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition-fast);
}

.trait:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

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

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(12, 35, 64, 0.1);
  border-color: var(--gold);
}

.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.service-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header {
  margin-bottom: 16px;
}

.service-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  padding: 6px 12px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 100px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  flex-grow: 1;
}

.service-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  transition: all var(--transition-fast);
}

.service-link:hover { color: var(--gold); transform: translateX(4px); }

/* ========== CTA SECTION ========== */
.section-cta {
  padding: 80px 0;
  background: var(--sand);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
  margin: 0;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-credit a {
  color: var(--gold);
  font-weight: 500;
}

.footer-credit a:hover { color: var(--gold-hover); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ========== GSAP ANIMATION HELPERS ========== */
.anim-fade { opacity: 0; transform: translateY(40px); }
.anim-fade-left { opacity: 0; transform: translateX(-40px); }
.anim-fade-right { opacity: 0; transform: translateX(40px); }
.anim-scale { opacity: 0; transform: scale(0.9); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .park-features-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-logo-img { height: 72px; }
  .navbar.scrolled .nav-logo-img { height: 56px; }
  .navbar { padding: 16px 0; }
  .navbar.scrolled { padding: 8px 0; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 36px 36px;
    gap: 0;
    transition: right 0.5s var(--ease-out);
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }

  .nav-menu.active { right: 0; }

  .nav-menu a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-menu a::after { display: none; }
  .nav-cta { display: none; }
  .lang-toggle { padding: 6px 8px; }

  /* Hero mobile */
  .hero { min-height: 100svh; }
  .hero-content { padding: 120px 20px 80px; }
  .hero-label { font-size: 10px; letter-spacing: 3px; margin-bottom: 20px; }
  .hero-title { font-size: 32px; margin-bottom: 16px; }
  .hero-description { font-size: 15px; margin-bottom: 32px; }
  .hero-scroll-indicator { bottom: 20px; }

  /* Stats mobile */
  .stats-bar { padding: 28px 0; }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 8px; gap: 10px; }
  .stat-number { font-size: 18px; }
  .stat-label { font-size: 11px; }
  .stat-icon svg { width: 24px; height: 24px; }

  /* Park mobile */
  .park-intro { grid-template-columns: 1fr; gap: 32px; }
  .park-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .park-feature { padding: 24px 20px; }
  .section-description { font-size: 15px; }

  /* Park mobile active states (touch interaction) */
  .park-feature.mobile-active {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(12, 35, 64, 0.08);
    border-color: var(--gold);
    background: var(--white);
  }
  .park-feature.mobile-active::before { transform: scaleX(1); }
  .park-feature.mobile-active .feature-icon-wrapper {
    background: var(--gold);
    color: var(--navy);
  }

  /* Advantages mobile */
  .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
  .advantage-card { padding: 28px 24px; }
  .advantage-number { font-size: 36px; margin-bottom: 10px; }
  .advantage-card h3 { font-size: 20px; }
  .advantage-card p { font-size: 14px; }

  /* Advantages mobile active states */
  .advantage-card.mobile-active {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
  }
  .advantage-card.mobile-active::after { transform: scaleX(1); }
  .advantage-card.mobile-active .advantage-number { color: rgba(201, 168, 76, 0.4); }

  /* About mobile */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-col { order: -1; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .about-image-accent { max-width: 280px; top: -10px; right: -10px; }
  .about-quote { padding: 20px 20px; font-size: 16px; }
  .about-traits { gap: 8px; }
  .trait { padding: 6px 14px; font-size: 12px; }

  /* Services mobile */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card-body { padding: 24px 20px 28px; }
  .service-card h3 { font-size: 22px; }

  /* Services mobile active states */
  .service-card.mobile-active {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(12, 35, 64, 0.1);
    border-color: var(--gold);
  }
  .service-card.mobile-active .service-card-image img {
    transform: scale(1.08);
  }

  /* CTA mobile */
  .section-cta { padding: 60px 0; }
  .cta-content h2 { font-size: 24px; }

  /* Footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { height: 64px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* WhatsApp float mobile */
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .btn-lg { width: 100%; padding: 16px 32px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .hero-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .about-photo { max-width: 240px; }
  .about-image-accent { max-width: 240px; }
  .navbar { padding: 12px 0; }
  .nav-logo-img { height: 60px; }
  .navbar.scrolled .nav-logo-img { height: 48px; }
}