/* ==========================================================================
   Vishaal Adventure Park - Stylesheet
   File:        style.css
   Description: Core styles for the homepage - layout, components,
                animations, and responsive breakpoints.
   Load order:  Linked in <head> after Google Fonts, before body renders.
   Depends on:  index.html (structure), script.js (interaction states
                such as .open, .in-view, .loaded added via JS)
   ========================================================================== */

:root {
  --blue: #1a3a8f;
  --blue-dark: #0f2460;
  --blue-light: #2952cc;
  --red: #e03220;
  --green: #2e9e35;
  --orange: #f7941d;
  --cyan: #00aacc;
  --white: #ffffff;
  --off-white: #f8f7ff;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6b7280;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── PRELOADER ─── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0f2460;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.preloader img {
  width: 260px; height: auto; max-width: 70vw;
  animation: preloaderPulse 1.1s ease-in-out infinite;
}
.preloader.loaded {
  opacity: 0; visibility: hidden; pointer-events: none;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.9); opacity: 0.65; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader img { animation: none; }
}

html { scroll-behavior: smooth; }

section[id], a[id] { scroll-margin-top: 110px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, .bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--blue-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 100px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}

.nav-logo img {
  height: 56px; width: auto; object-fit: contain; max-width: none;
}

.nav-logo.logo-fallback img { display: none; }
.nav-logo.logo-fallback::after {
  content: 'VISHAAL ADVENTURE PARK';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.03em;
  color: #fff; white-space: nowrap;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-links a.active { background: var(--orange); color: #fff; }

.nav-cta {
  background: var(--red); color: #fff !important;
  border-radius: 6px !important;
  padding: 9px 18px !important;
}
.nav-cta:hover { background: #c82516 !important; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  margin-top: 68px;
  min-height: 620px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, #1e5aa8 70%, #0f2460 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}

.shape {
  position: absolute; border-radius: 50%;
  opacity: 0.12;
}

.shape-1 { width: 480px; height: 480px; background: var(--cyan); top: -140px; right: -80px; }
.shape-2 { width: 300px; height: 300px; background: var(--orange); bottom: -80px; right: 200px; opacity: 0.08; }
.shape-3 { width: 200px; height: 200px; background: var(--green); top: 60px; right: 340px; opacity: 0.1; }

.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 33%, var(--green) 66%, var(--cyan) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 60px 80px;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--orange);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 24px;
}

.hero-eyebrow span { color: rgba(255,255,255,0.6); }

h1.hero-title {
  font-size: 86px; line-height: 0.92;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

h1.hero-title em { color: var(--orange); font-style: normal; }

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.78);
  line-height: 1.65; font-weight: 300;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.btn-primary {
  background: var(--orange); color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 15px 34px; border-radius: 8px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.2s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(247,148,29,0.4);
}
.btn-primary:hover { background: #e6850d; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(247,148,29,0.5); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4); color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 13px 32px; border-radius: 8px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex; gap: 40px;
  margin-top: 44px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-image {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 58%;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.03) 6%,
    rgba(0,0,0,0.08) 12%,
    rgba(0,0,0,0.16) 18%,
    rgba(0,0,0,0.28) 24%,
    rgba(0,0,0,0.44) 30%,
    rgba(0,0,0,0.62) 36%,
    rgba(0,0,0,0.80) 42%,
    rgba(0,0,0,0.93) 48%,
    black 56%);
  mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.03) 6%,
    rgba(0,0,0,0.08) 12%,
    rgba(0,0,0,0.16) 18%,
    rgba(0,0,0,0.28) 24%,
    rgba(0,0,0,0.44) 30%,
    rgba(0,0,0,0.62) 36%,
    rgba(0,0,0,0.80) 42%,
    rgba(0,0,0,0.93) 48%,
    black 56%);
}

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

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 12px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 500; margin-top: 2px;
}

/* ─── COLOR BAR ─── */
.color-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: 72px;
}

.cb-item {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.06em;
  color: #fff; text-transform: uppercase;
  cursor: pointer; transition: filter 0.2s;
}
.cb-item:hover { filter: brightness(1.1); }
.cb-item svg { width: 22px; height: 22px; }

.cb-1 { background: var(--red); }
.cb-2 { background: var(--green); }
.cb-3 { background: var(--orange); }
.cb-4 { background: var(--blue); }

/* ─── SECTION COMMON ─── */
section { padding: 90px 80px; }

.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}

h2.section-title {
  font-size: 58px; color: var(--blue-dark);
  line-height: 1; margin-bottom: 16px;
}

.section-desc {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; max-width: 100%;
  margin-bottom: 48px;
}

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

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

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  text-decoration: none; color: inherit;
  display: block;
  border: 1px solid rgba(0,0,0,0.06);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,58,143,0.12); }

.card-header {
  height: 190px;
  display: flex; align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.card-header-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}

.card-icon-bg {
  position: absolute; right: -20px; top: -20px;
  width: 160px; height: 160px; border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}

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

.ch-wedding { background: linear-gradient(135deg, rgba(26,58,143,0.78), rgba(41,82,204,0.78)); }
.ch-corporate { background: linear-gradient(135deg, rgba(15,110,86,0.78), rgba(29,158,117,0.78)); }
.ch-adventure { background: linear-gradient(135deg, rgba(224,50,32,0.78), rgba(247,148,29,0.78)); }
.ch-restaurant { background: linear-gradient(135deg, rgba(247,148,29,0.78), rgba(245,200,66,0.78)); }
.ch-about { background: linear-gradient(135deg, rgba(91,60,196,0.78), rgba(155,110,243,0.78)); }
.ch-contact { background: linear-gradient(135deg, rgba(0,170,204,0.78), rgba(0,119,168,0.78)); }

.ci-wedding { background: rgba(255,255,255,0.25); }
.ci-corporate { background: rgba(255,255,255,0.25); }
.ci-adventure { background: rgba(255,255,255,0.25); }
.ci-restaurant { background: rgba(255,255,255,0.25); }
.ci-about { background: rgba(255,255,255,0.25); }
.ci-contact { background: rgba(255,255,255,0.25); }

.card-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.22); color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  z-index: 2;
}

.card-body { padding: 22px 24px 24px; }

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.04em;
  color: var(--blue-dark); margin-bottom: 8px;
}

.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

.card-link {
  font-size: 13px; font-weight: 600;
  color: var(--blue); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase;
}

.card-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ─── WHY US ─── */
.why-us {
  background: var(--blue-dark);
  color: #fff;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
}

.why-content { padding: 90px 80px; }
.why-content .section-title { color: #fff; }
.why-content .section-desc { color: rgba(255,255,255,0.65); }

.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }

.feat-item { display: flex; gap: 18px; align-items: flex-start; }

.feat-dot {
  width: 42px; height: 42px; border-radius: 10px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.fd-1 { background: var(--red); }
.fd-2 { background: var(--green); }
.fd-3 { background: var(--orange); }
.fd-4 { background: var(--cyan); }

.feat-dot svg { width: 22px; height: 22px; color: #fff; }

.feat-text h3 {
  font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 4px; font-family: 'Poppins', sans-serif; letter-spacing: 0;
}
.feat-text p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.why-visual {
  background: linear-gradient(135deg, #112066 0%, #1a3a8f 50%, #0c2a6e 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px;
  gap: 20px;
  position: relative; overflow: hidden;
}

.why-visual::before {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,170,204,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 28px 36px;
  text-align: center; width: 100%;
  max-width: 280px;
  position: relative; z-index: 1;
  transition: background 0.2s;
}
.stat-card:hover { background: rgba(255,255,255,0.11); }

.stat-card .big { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; }
.stat-card .lbl { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

.sc-1 .big { color: var(--orange); }
.sc-2 .big { color: var(--cyan); }
.sc-3 .big { color: var(--green); }

.stat-row { display: flex; gap: 16px; width: 100%; max-width: 280px; }
.stat-row .stat-card { flex: 1; padding: 20px 16px; }
.stat-row .big { font-size: 40px; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--off-white); }

.testimonials h2 { margin-bottom: 48px; }

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

.testi-card {
  background: #fff; border-radius: 16px;
  padding: 28px; border: 1px solid rgba(0,0,0,0.06);
}

.stars { color: var(--orange); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }

.testi-text {
  font-size: 14px; color: var(--text-mid); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0;
}

.av-1 { background: var(--blue); }
.av-2 { background: var(--green); }
.av-3 { background: var(--red); }

.author-name { font-size: 14px; font-weight: 600; color: var(--blue-dark); }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ─── GALLERY STRIP ─── */
.gallery-strip {
  background: var(--blue-dark);
  padding: 0;
  display: grid; grid-template-columns: repeat(6, 1fr);
  min-height: 220px;
}

.gallery-cell {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  min-height: 220px;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  flex-direction: column; gap: 10px;
  padding: 20px;
  text-align: center;
}
.gallery-cell:last-child { border-right: none; }
.gallery-cell:hover { background: rgba(255,255,255,0.06); color: #fff; }
.gallery-cell svg { width: 36px; height: 36px; opacity: 0.6; }
.gallery-cell:hover svg { opacity: 1; }

.gc-1:hover { background: rgba(224,50,32,0.2); }
.gc-2:hover { background: rgba(46,158,53,0.2); }
.gc-3:hover { background: rgba(247,148,29,0.2); }
.gc-4:hover { background: rgba(0,170,204,0.2); }
.gc-5:hover { background: rgba(41,82,204,0.2); }
.gc-6:hover { background: rgba(91,60,196,0.2); }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #c82516 100%);
  padding: 80px;
  text-align: center; color: #fff;
}

.cta-section h2 { font-size: 68px; color: #fff; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.65; }

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

.btn-white {
  background: #fff; color: var(--red);
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 15px;
  padding: 15px 36px; border-radius: 8px;
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

.btn-outline-white {
  background: transparent; color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 13px 34px; border-radius: 8px;
  text-decoration: none; display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ─── FOOTER ─── */
footer {
  background: #060d1f;
  padding: 64px 80px 40px;
  color: rgba(255,255,255,0.55);
}

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

.footer-brand img { height: 58px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand.logo-fallback img { display: none; }
.footer-brand.logo-fallback::before {
  content: 'VISHAAL ADVENTURE PARK';
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.03em; color: #fff;
  margin-bottom: 16px;
}

.footer-tagline { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

.footer-socials { margin-top: 50px; display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: 'Poppins', sans-serif; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9); margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }

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

.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--orange); text-decoration: none; }

.footer-madewith {
  font-size: 13px; color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.footer-badges { display: flex; gap: 10px; }
.badge-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 5px 14px;
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ─── FLOATING WHATSAPP ─── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ─── SCHEMA (hidden) ─── */
.schema-hidden { display: none; }

/* ─── ANNOUNCEMENT TICKER ─── */
.ticker-wrap {
  width: 100%; overflow: hidden;
  height: 40px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--green), var(--cyan), var(--blue));
  background-size: 300% 100%;
  animation: tickerGradient 12s ease infinite;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: tickerScroll 26s linear infinite;
}
.ticker-track span {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0 14px;
}
.ticker-track span.ticker-dot {
  padding: 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 700;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes tickerGradient { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ─── NAV TOGGLE (mobile) ─── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none; cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block; width: 100%; height: 2.5px; background: #fff; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ─── SCROLL REVEAL ─── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal-stagger].in-view > * { opacity: 1; transform: translateY(0); }
[data-reveal-stagger].in-view > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].in-view > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].in-view > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-stagger].in-view > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].in-view > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-stagger].in-view > *:nth-child(6) { transition-delay: 0.4s; }

/* ─── HERO EXTRA VIBRANCY ─── */
.shape { animation: floatShape 9s ease-in-out infinite; }
.shape-2 { animation-delay: 1.2s; animation-duration: 11s; }
.shape-3 { animation-delay: 2.4s; animation-duration: 7.5s; }
@keyframes floatShape {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-16px, 18px) scale(1.06); }
}

.hero-eyebrow svg { animation: spin-slow 6s linear infinite; transform-origin: center; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.btn-primary { position: relative; }
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: 8px;
  box-shadow: 0 0 0 0 rgba(247,148,29,0.55);
  animation: pulseRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(247,148,29,0.5); }
  80% { box-shadow: 0 0 0 16px rgba(247,148,29,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,148,29,0); }
}

/* ─── COLOR BAR shimmer ─── */
.cb-item { position: relative; overflow: hidden; }
.cb-item::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 4.5s ease-in-out infinite;
}
.cb-item:nth-child(2)::before { animation-delay: 0.6s; }
.cb-item:nth-child(3)::before { animation-delay: 1.2s; }
.cb-item:nth-child(4)::before { animation-delay: 1.8s; }
@keyframes shimmer { 0% { left: -60%; } 55%, 100% { left: 130%; } }

/* ─── GALLERY STRIP vibrancy ─── */
.gallery-cell::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s;
}
.gc-1::before { background: radial-gradient(circle at 50% 30%, rgba(224,50,32,0.35), transparent 70%); }
.gc-2::before { background: radial-gradient(circle at 50% 30%, rgba(46,158,53,0.35), transparent 70%); }
.gc-3::before { background: radial-gradient(circle at 50% 30%, rgba(247,148,29,0.35), transparent 70%); }
.gc-4::before { background: radial-gradient(circle at 50% 30%, rgba(0,170,204,0.35), transparent 70%); }
.gc-5::before { background: radial-gradient(circle at 50% 30%, rgba(41,82,204,0.35), transparent 70%); }
.gc-6::before { background: radial-gradient(circle at 50% 30%, rgba(91,60,196,0.35), transparent 70%); }
.gallery-cell:hover::before { opacity: 1; }
.gallery-cell:hover svg { transform: translateY(-4px) scale(1.08); }
.gallery-cell span, .gallery-cell svg { position: relative; z-index: 1; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1080px) {
  section { padding: 70px 40px; }
  .hero { flex-direction: column; align-items: stretch; min-height: 0; }
  .hero-content { padding: 50px 40px 30px; max-width: 100%; }
  .hero-image {
    position: relative; top: auto; right: auto; bottom: auto; width: 100%; height: 320px;
    -webkit-mask-image: none; mask-image: none;
  }
  h1.hero-title { font-size: 62px; }
  h2.section-title { font-size: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-cell { min-height: 160px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 60px; right: 0; left: 0;
    background: var(--blue-dark);
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  }
  .nav-links.open { max-height: calc(100vh - 60px); overflow-y: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 24px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { margin: 12px 24px; text-align: center; }
  .hero { margin-top: 60px; }
  .hero-image { height: 240px; }

  .ticker-wrap { max-width: 100%; height: 34px; }
  .ticker-track span { font-size: 11px; padding: 0 10px; }
  .ticker-track span.ticker-dot { padding: 0; font-size: 12px; }
  .nav-logo img { height: 42px; }

  h1.hero-title { font-size: 46px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 34px; }

  .color-bar { grid-template-columns: repeat(2, 1fr); height: auto; }
  .cb-item { padding: 16px 0; font-size: 16px; }

  section { padding: 56px 24px; }
  h2.section-title { font-size: 36px; }
  .section-desc { font-size: 15px; margin-bottom: 32px; }

  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); min-height: 140px; }

  .cta-section { padding: 56px 24px; }
  .cta-section h2 { font-size: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-btn { width: 48px; height: 48px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  h1.hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 28px; }
  h2.section-title { font-size: 30px; }
  .cta-section h2 { font-size: 32px; }
  .cta-buttons { flex-direction: column; }
  .gallery-strip { grid-template-columns: 1fr; }
}
