/* ═══════════════════════════════════════════════════
   MZL MAJUJAYA ENTERPRISE — styles.css
   Theme: Dark Premium | Gold Accent | Cinematic
═══════════════════════════════════════════════════ */

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

:root {
  --gold:         #c9a84c;
  --gold-light:   #e2c97a;
  --gold-dim:     rgba(201,168,76,0.22);
  --gold-mid:     rgba(201,168,76,0.50);
  --dark:         #1e1b17;
  --dark-2:       #ede9e2;
  --dark-3:       #e4dfd7;
  --dark-4:       #d9d4cb;
  --dark-5:       #c5bfb5;
  --bg:           #f9f6f1;
  --text:         #1e1b17;
  --text-muted:   #6e6257;
  --text-dim:     #a09590;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'DM Sans', sans-serif;
  --nav-h:        76px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:      cubic-bezier(0.4, 0, 1, 1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }

::-webkit-scrollbar       { width: 2px; }
::-webkit-scrollbar-track { background: var(--dark-3); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 1px; }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}
.section      { padding: 110px 0; }
.section-dark { background: var(--dark-2); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.btn-primary:hover { color: var(--gold); }
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span,
.btn-primary:not(:has(span)) { position: relative; z-index: 1; }
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid rgba(240,237,232,0.25);
  transition: border-color 0.35s, color 0.35s, transform 0.3s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(249,246,241,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-dim);
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
}
nav.scrolled {
  background: rgba(249,246,241,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-dim);
}

.nav-logo      { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-main { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); line-height: 1; }
.nav-logo-sub  { font-size: 0.57rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }

.nav-links     { display: flex; gap: 2.6rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover        { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.lang-toggle {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  padding: 7px 13px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: background 0.35s, color 0.35s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(249,246,241,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gold-dim);
  z-index: 190;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.mobile-menu.open       { max-height: 400px; }
.mobile-menu ul         { list-style: none; padding: 24px 5vw 36px; display: flex; flex-direction: column; gap: 0; }
.mobile-menu a          { display: block; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); padding: 14px 0; border-bottom: 1px solid var(--dark-4); transition: color 0.3s; }
.mobile-menu a:hover    { color: var(--gold); }

/* ══════════════════════════════════════
   HERO — CINEMATIC SLIDER
══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}

/* ── Slide base ── */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active   { opacity: 1; z-index: 1; }
.slide.previous { opacity: 0; z-index: 0; }

/* ── Ken Burns: each slide has unique direction via data attrs in JS ── */
.slide-bg {
  position: absolute;
  inset: -8%;          /* slightly oversized for pan room */
  background-size: cover;
  background-position: center;
  will-change: transform;
  /* JS adds / removes .kb-animate */
  transition: none;
}
.slide-bg.kb-animate {
  animation: kbBase 9s ease-out forwards;
}

/* Named keyframes per direction */
@keyframes kbBase       { from { transform: scale(1.08) translate(0,0);         } to { transform: scale(1) translate(0,0); } }
@keyframes kbLeft       { from { transform: scale(1.08) translate(-3%, 0);      } to { transform: scale(1) translate(0,0); } }
@keyframes kbRight      { from { transform: scale(1.08) translate(3%, 0);       } to { transform: scale(1) translate(0,0); } }
@keyframes kbUp         { from { transform: scale(1.08) translate(0, -2%);      } to { transform: scale(1) translate(0,0); } }
@keyframes kbDown       { from { transform: scale(1.08) translate(0,  2%);      } to { transform: scale(1) translate(0,0); } }
@keyframes kbDiagTL     { from { transform: scale(1.08) translate(-2%, -2%);    } to { transform: scale(1) translate(0,0); } }
@keyframes kbDiagBR     { from { transform: scale(1.08) translate( 2%,  2%);    } to { transform: scale(1) translate(0,0); } }

/* ── Cinematic overlay ── */
.slide-overlay {
  position: absolute;
  inset: 0;
  /* vignette + dark gradient toward content */
  background:
    radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(8,8,8,0.55) 100%),
    linear-gradient(100deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.3) 55%, rgba(8,8,8,0.2) 100%);
}

/* ── Slide content ── */
.slide-content {
  position: absolute;
  bottom: 15vh;
  left: 8vw;
  max-width: 660px;
  z-index: 2;
}

.slide-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  transition: width 0.8s 0.1s var(--ease);
}
.slide.active .slide-line { width: 48px; }

.slide-tag {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s 0.25s var(--ease), transform 0.7s 0.25s var(--ease);
}

.slide-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slide-title span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.35s var(--ease), transform 0.8s 0.35s var(--ease);
}
.slide-title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.48s var(--ease), transform 0.8s 0.48s var(--ease);
}

.slide-sub {
  font-size: 0.92rem;
  color: rgba(240,237,232,0.65);
  margin-bottom: 38px;
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s 0.6s var(--ease), transform 0.7s 0.6s var(--ease);
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s 0.75s var(--ease), transform 0.7s 0.75s var(--ease);
}

/* Animate in when slide is active */
.slide.active .slide-tag,
.slide.active .slide-title span,
.slide.active .slide-title em,
.slide.active .slide-sub,
.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

/* ── Progress bar ── */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(240,237,232,0.08);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

/* ── Controls ── */
.slider-nav {
  position: absolute;
  bottom: 44px;
  right: 6vw;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.slider-prev,
.slider-next {
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid rgba(240,237,232,0.2);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.slider-prev svg,
.slider-next svg { width: 18px; height: 18px; }
.slider-prev:hover,
.slider-next:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.08); }

.slider-counter { display: flex; align-items: center; gap: 10px; }
#slideCurrentNum {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 1.5ch;
}
.slider-sep {
  width: 28px; height: 1px;
  background: rgba(240,237,232,0.2);
}
.slider-total {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── Dots ── */
.slider-dots {
  position: absolute;
  bottom: 52px;
  left: 8vw;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 20px; height: 2px;
  background: rgba(240,237,232,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.4s var(--ease);
}
.dot.active { background: var(--gold); width: 40px; }

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollDrop 2s ease-in-out infinite;
}
.scroll-hint p {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--dark-3);
  border-top:    1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 52px;
  gap: 5px;
}
.stat-num   { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.stat-divider { width: 1px; height: 44px; background: var(--gold-dim); }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dark-5);
}
.service-card {
  background: var(--dark-3);
  padding: 44px 38px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: var(--dark-4); }
.service-card:hover::before { opacity: 1; }

.service-hover-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.service-card:hover .service-hover-line { width: 100%; }

.service-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.service-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-icon { transform: translateY(-3px); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.865rem; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: visible;
}
.about-image img {
  position: relative;
  z-index: 1;
  transition: transform 0.9s var(--ease);
  height: 100%;
  object-fit: cover;
}
.about-image:hover img { transform: scale(1.03); }

/* Gold frame accent */
.about-img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold-mid);
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.about-image:hover .about-img-accent { transform: translate(4px, 4px); }

.about-badge {
  position: absolute;
  top: 24px; left: -20px;
  width: 96px; height: 96px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 2;
}
.badge-num  { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--dark); line-height: 1; }
.badge-text { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark); }

.about-content { display: flex; flex-direction: column; gap: 22px; }
.about-content .section-title { margin-bottom: 0; }
.about-content p { font-size: 0.91rem; color: var(--text-muted); }

.about-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 4px 0; }
.about-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 1px;
  background: var(--gold);
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark-3);
}
.gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item img {
  transition: transform 0.9s var(--ease), filter 0.6s;
  filter: brightness(0.88);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.1) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s, transform 0.45s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-arrow { transform: rotate(45deg); }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-info .section-title { margin-bottom: 0; }
.contact-info > p { font-size: 0.91rem; color: var(--text-muted); }

.contact-details { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.contact-item    { display: flex; gap: 18px; align-items: flex-start; }
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.contact-item > div { display: flex; flex-direction: column; gap: 4px; }
.contact-item span { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.contact-item a,
.contact-item p  { font-size: 0.91rem; color: var(--text); line-height: 1.6; }
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--dark-5);
  padding: 44px;
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 2px;
  background: var(--gold);
}

.contact-form  { display: flex; flex-direction: column; gap: 22px; }
.form-group    { display: flex; flex-direction: column; gap: 9px; }
.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--dark-5);
  border-bottom-color: var(--dark-5);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--dark-3);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--dark-3); color: var(--text); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--gold-dim);
  padding: 44px 0;
}
.footer-inner {
  width: min(1200px, 90vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo  { display: flex; flex-direction: column; gap: 2px; }
.footer-copy  { font-size: 0.75rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #22c55e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 300;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(34,197,94,0.55); }
.wa-float svg   { width: 28px; height: 28px; color: #fff; position: relative; z-index: 1; }
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 56px; }
  .about-image   { aspect-ratio: 16/9; max-width: 600px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }

  .section    { padding: 80px 0; }

  .slide-content  { left: 6vw; right: 6vw; bottom: 14vh; }
  .slide-title    { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .slider-nav     { right: 4vw; bottom: 36px; gap: 10px; }
  .slider-dots    { left: 6vw; bottom: 44px; }
  .scroll-hint    { display: none; }

  .stats-bar      { gap: 0; }
  .stat           { padding: 22px 28px; }
  .stat-divider   { height: 30px; }

  .services-grid  { grid-template-columns: 1fr; }
  .service-card   { padding: 36px 28px; }

  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }

  .contact-form-wrap { padding: 32px 24px; }
  .footer-inner   { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 480px) {
  .gallery-grid         { grid-template-columns: 1fr; }
  .gallery-item.large   { grid-column: span 1; aspect-ratio: 4/3; }
  .stats-bar            { flex-direction: column; }
  .stat-divider         { width: 40px; height: 1px; }
  .slide-actions        { flex-direction: column; }
  .about-badge          { top: 12px; left: -10px; width: 80px; height: 80px; }
  .badge-num            { font-size: 1.2rem; }
  .about-img-accent     { display: none; }
}
