/* =========================================================
   ENTERTAINMENT ZONE — Redesign Demo
   Clean corporate theme · light base + deep navy accent
   ========================================================= */

:root {
  --bg:          #ffffff;
  --bg-2:        #f7f8fa;
  --bg-3:        #eef1f5;
  --panel:       #ffffff;
  --line:        #e4e7ec;
  --line-strong: #cbd2db;
  --text:        #1a1f2b;
  --text-2:      #2d3544;
  --muted:       #5a6474;
  --dim:         #8a94a3;

  --accent:      #0f2a44;   /* deep navy */
  --accent-2:    #173d63;
  --accent-soft: #eaf0f7;
  --accent-ink:  #ffffff;

  --gold:        #b78628;   /* reserved for stars only */

  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;

  --container:   1240px;
  --radius:      6px;
  --radius-lg:   10px;
  --shadow-sm:   0 1px 2px rgba(15,42,68,.06);
  --shadow:      0 4px 18px rgba(15,42,68,.08);
  --shadow-lg:   0 20px 45px rgba(15,42,68,.12);
  --ease:        cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }

p { color: var(--muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* -------- Utilities -------- */
.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin-right: 12px;
  vertical-align: middle;
}

.section { padding: 5.5rem 0; position: relative; }
.section-sm { padding: 3rem 0; }

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; }
.mt-8 { margin-top: 4rem; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.6rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  background: var(--accent-2);
  color: var(--accent-ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: .5rem 0;
  font-weight: 600;
}
.btn-ghost::after {
  content: " →";
  transition: transform .2s var(--ease);
  display: inline-block;
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* -------- Navigation -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), padding .3s var(--ease),
              box-shadow .3s var(--ease), border-color .3s var(--ease);
}
/* Transparent-over-hero variant: white text, no background
   (scoped to top-level nav links only — mega menu links keep their own colour) */
.nav.nav-over-hero > .container > .nav-links > li > a,
.nav.nav-over-hero .nav-phone,
.nav.nav-over-hero .nav-logo {
  color: #fff;
}
.nav.nav-over-hero > .container > .nav-links > li > a:hover,
.nav.nav-over-hero > .container > .nav-links > li > a.active { color: #fff; }
.nav.nav-over-hero > .container > .nav-links > li > a.active::after { background: #fff; }
.nav.nav-over-hero .btn-primary {
  background: #fff;
  color: var(--accent);
}
.nav.nav-over-hero .btn-primary:hover {
  background: #f3f6fb;
  color: var(--accent);
}
.nav.nav-over-hero .nav-toggle span { background: #fff; }

/* Solid state (on-scroll or default for sub-pages with no hero) */
.nav.scrolled,
.nav:not(.nav-over-hero) {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: .8rem 0;
}
.nav.scrolled > .container > .nav-links > li > a,
.nav.scrolled .nav-phone,
.nav.scrolled .nav-logo { color: var(--text-2); }
.nav.scrolled .nav-logo { color: var(--accent); }
.nav.scrolled > .container > .nav-links > li > a:hover,
.nav.scrolled > .container > .nav-links > li > a.active { color: var(--accent); }
.nav.scrolled > .container > .nav-links > li > a.active::after { background: var(--accent); }
.nav.scrolled .btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.nav.scrolled .btn-primary:hover {
  background: var(--accent-2);
  color: var(--accent-ink);
}
.nav.scrolled .nav-toggle span { background: var(--text); }

/* Nav logo image */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: filter .3s var(--ease);
}
.nav.nav-over-hero .nav-logo-img {
  filter: brightness(0) invert(1); /* white logo over hero */
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent);
  text-transform: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); opacity: .6; }

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

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: .5rem 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
}

/* -------- Mega Menu -------- */
.has-mega { position: static; }
.mega-trigger { display: inline-flex; align-items: center; gap: .35rem; cursor: pointer; }
.mega-trigger::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 3px;
  margin-top: -3px;
  transition: transform .2s var(--ease);
}
.has-mega:hover .mega-trigger::after { transform: rotate(-135deg); margin-top: 3px; }

.mega {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-lg);
}
.has-mega:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.mega-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.mega-col ul { list-style: none; }
.mega-col li { margin-bottom: .45rem; }
.mega-col a,
.nav.nav-over-hero .mega-col a,
.nav.scrolled .mega-col a {
  font-size: .875rem;
  color: var(--text-2);
  text-transform: none;
  font-weight: 400;
}
.mega-col a:hover,
.nav.nav-over-hero .mega-col a:hover,
.nav.scrolled .mega-col a:hover { color: var(--accent); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 32px; height: 32px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
  transition: all .25s var(--ease);
}

/* -------- Hero Slider -------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,42,68,.35) 0%, rgba(15,42,68,.55) 60%, rgba(15,42,68,.72) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-content { max-width: 760px; }
.hero .eyebrow { color: #fff; opacity: .85; }
.hero .eyebrow::before { background: #fff; }
.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
}
.hero h1 .em { color: #fff; font-weight: 700; font-style: normal; text-decoration: underline; text-decoration-color: rgba(255,255,255,.5); text-underline-offset: 8px; text-decoration-thickness: 2px; }
.hero-lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2.25rem;
  max-width: 620px;
}
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero .btn-primary { background: #fff; color: var(--accent); }
.hero .btn-primary:hover { background: #f3f6fb; color: var(--accent); }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.hero .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}
.hero-dots button {
  width: 36px; height: 3px;
  background: rgba(255,255,255,.4);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  transition: background .3s var(--ease);
}
.hero-dots button.is-active { background: #fff; }
.hero-dots button:hover { background: rgba(255,255,255,.7); }

.hero-scroll { display: none; }

/* -------- Section header -------- */
.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.sec-head h2 { margin-bottom: .75rem; }
.sec-head p { font-size: 1.02rem; }

/* -------- Service grid -------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s var(--ease);
  display: block;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover img { transform: scale(1.04); }
.service-card .meta {
  padding: 1.25rem 1.35rem 1.35rem;
}
.service-card .meta h3 {
  font-size: 1.1rem;
  margin-bottom: .25rem;
  color: var(--text);
}
.service-card .meta span {
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}

/* -------- Feature row (alternating image/text) -------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature.reverse .feature-text { order: 2; }
.feature.reverse .feature-img  { order: 1; }

.feature-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.feature-text h2 { margin-bottom: 1.25rem; }
.feature-text p { margin-bottom: 1rem; font-size: 1rem; color: var(--muted); }

/* -------- Stats -------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { text-align: center; padding: 0 1rem; }
.stat-num {
  font-size: 2.25rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* -------- Testimonials -------- */
.testimonials-bg {
  background: var(--bg-2);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.test-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all .2s var(--ease);
}
.test-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.test-stars {
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: .75rem;
  font-size: .9rem;
}
.test-body {
  color: var(--text-2);
  font-size: .98rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.test-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.test-author strong {
  display: block;
  color: var(--text);
  font-size: .92rem;
  font-weight: 600;
}
.test-author span {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.test-tag {
  margin-left: auto;
  background: var(--accent-soft);
  color: var(--accent);
  padding: .3rem .7rem;
  border-radius: 100px;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* -------- Page header (sub-pages) -------- */
.page-head {
  position: relative;
  padding: 200px 0 80px;
  overflow: hidden;
  text-align: left;
  color: #fff;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.page-head-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-head-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-head-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,42,68,.45) 0%, rgba(15,42,68,.7) 100%);
}
.page-head-inner { position: relative; z-index: 2; width: 100%; }
.page-head h1 {
  color: #fff;
  max-width: 800px;
}
.page-head .eyebrow { color: rgba(255,255,255,.85); }
.page-head .eyebrow::before { background: #fff; }
.page-head .breadcrumb {
  display: flex;
  gap: .6rem;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}
.page-head .breadcrumb .sep { color: rgba(255,255,255,.45); }
.page-head .breadcrumb a { color: rgba(255,255,255,.85); }
.page-head .breadcrumb a:hover { color: #fff; }

/* -------- Gallery -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-tall .gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }

/* -------- Contact -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { padding-right: 1rem; }
.contact-info h2 { margin-bottom: 1.25rem; }
.contact-block {
  margin: 1.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.contact-block .label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
  font-weight: 600;
}
.contact-block .value {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}
.contact-block a.value:hover { color: var(--accent); }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--text); font-size: 1.4rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--text-2);
  margin-bottom: .4rem;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: .75rem .9rem;
  font-family: inherit;
  font-size: .92rem;
  border-radius: var(--radius);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* -------- CTA band -------- */
.cta-band {
  padding: 4.5rem 0;
  text-align: center;
  background: var(--accent);
  color: var(--accent-ink);
}
.cta-band h2 { color: var(--accent-ink); margin-bottom: .75rem; }
.cta-band p { max-width: 540px; margin: 0 auto 1.75rem; color: rgba(255,255,255,.82); }
.cta-band .eyebrow { color: rgba(255,255,255,.7); }
.cta-band .btn-primary {
  background: var(--accent-ink);
  color: var(--accent);
}
.cta-band .btn-primary:hover {
  background: #f3f6fb;
  color: var(--accent);
}

/* -------- Footer -------- */
.footer {
  background: var(--bg-2);
  padding: 4rem 0 1.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: .5rem; }
.footer a { font-size: .9rem; color: var(--muted); }
.footer a:hover { color: var(--accent); }
.footer-brand p { font-size: .9rem; max-width: 340px; margin-top: .75rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--dim);
}

/* -------- WhatsApp floating widget -------- */
:root {
  --wa-green:    #25D366;
  --wa-green-2:  #1ebe5a;
  --wa-dark:     #075E54;
  --wa-teal:     #128C7E;
}

.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  font-family: var(--font-body);
}

/* The bubble button */
.wa-bubble {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.4),
              0 4px 12px rgba(0,0,0,.15);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.wa-bubble:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(37,211,102,.5),
              0 6px 16px rgba(0,0,0,.2);
}
.wa-bubble svg { width: 32px; height: 32px; }

/* Pulse ring */
.wa-bubble::before,
.wa-bubble::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: .6;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-bubble::after { animation-delay: 1.2s; }

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .55; }
  80%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Notification dot */
.wa-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 20px; height: 20px;
  background: #ff3b30;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.wa-widget.is-open .wa-dot { opacity: 0; transform: scale(0); }

/* Chat panel */
.wa-panel {
  position: absolute;
  bottom: calc(100% + 16px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25),
              0 6px 16px rgba(0,0,0,.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.96);
  transform-origin: bottom right;
  transition: all .28s var(--ease);
}
.wa-widget.is-open .wa-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-panel-head {
  background: var(--wa-dark);
  color: #fff;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.wa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.2);
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-title strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
}
.wa-title small {
  display: block;
  font-size: .72rem;
  opacity: .85;
  margin-top: 2px;
}
.wa-status {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.wa-close {
  margin-left: auto;
  background: transparent;
  color: #fff;
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  opacity: .75;
  transition: opacity .2s;
}
.wa-close:hover { opacity: 1; background: rgba(255,255,255,.12); }

.wa-panel-body {
  padding: 1.25rem 1.1rem 1rem;
  background:
    linear-gradient(rgba(230,221,212,.4), rgba(230,221,212,.4)),
    repeating-linear-gradient(45deg, #e4ddd6 0 2px, #e8e1d9 2px 4px);
  min-height: 120px;
}

.wa-msg {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  padding: .7rem .85rem;
  max-width: 85%;
  font-size: .88rem;
  color: var(--text);
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
  margin-bottom: .5rem;
  line-height: 1.45;
  position: relative;
  animation: wa-msg-in .4s var(--ease) both;
}
.wa-msg::before {
  content: "";
  position: absolute;
  top: 0; left: -6px;
  width: 0; height: 0;
  border-top: 6px solid #fff;
  border-left: 6px solid transparent;
}
.wa-msg small {
  display: block;
  color: var(--dim);
  font-size: .68rem;
  margin-top: .3rem;
  text-align: right;
}
.wa-msg.delay-1 { animation-delay: .2s; }
.wa-msg.delay-2 { animation-delay: .6s; }

@keyframes wa-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wa-panel-foot {
  padding: .85rem 1.1rem 1.1rem;
  background: #fff;
  border-top: 1px solid #eee;
}
.wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: var(--wa-green);
  color: #fff;
  border: none;
  padding: .85rem 1.2rem;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease);
  text-decoration: none;
}
.wa-cta:hover {
  background: var(--wa-green-2);
  transform: translateY(-1px);
  color: #fff;
}
.wa-cta svg { width: 18px; height: 18px; }

.wa-note {
  text-align: center;
  font-size: .72rem;
  color: var(--dim);
  margin-top: .6rem;
}

@media (max-width: 480px) {
  .wa-widget { bottom: 18px; right: 18px; }
  .wa-bubble { width: 56px; height: 56px; }
  .wa-bubble svg { width: 28px; height: 28px; }
  .wa-panel { width: calc(100vw - 36px); }
}

/* -------- Reveal animations -------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* -------- Responsive -------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 480px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature.reverse .feature-text { order: 1; }
  .feature.reverse .feature-img  { order: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .mega-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero { padding: 110px 0 60px; }
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .page-head { padding: 120px 0 50px; }

  /* Mobile menu overlay */
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 6rem 2rem 2rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.25rem; }
  .mega { display: none; }
}
