/* ============================================================
   KC PAVING DESIGN SYSTEM v2
   Tokens: Cormorant Garamond (display) + Playfair (headings) + DM Sans (body)
   Gold used sparingly — 3-4 moments only
   ============================================================ */

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

:root {
  --gold:        #C0923A;
  --gold-light:  #D4AA58;
  --gold-dim:    rgba(192,146,58,0.12);
  --gold-border: rgba(192,146,58,0.22);

  --bg:          #080808;
  --s1:          #0F0F0F;
  --s2:          #171717;
  --s3:          #1F1F1F;
  --s-warm:      #0C0900;

  --text:        #EAE4D8;
  --dim:         #8A8070;
  --faint:       #464038;

  --border:      rgba(255,255,255,0.06);
  --border-g:    rgba(192,146,58,0.2);

  --fd: 'Cormorant Garamond', serif;
  --fh: 'Playfair Display', serif;
  --fb: 'DM Sans', sans-serif;

  --r:    8px;
  --rl:   14px;
  --t:    0.25s ease;
  --ts:   0.5s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: var(--fh); color: var(--text); }
h1 em, h2 em { font-family: var(--fd); font-style: italic; font-weight: 400; color: var(--gold-light); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  transition: var(--t);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: #0A0600;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(234,228,216,0.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(234,228,216,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }


.full-width { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--t);
}
#navbar.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 0.3px;
  transition: var(--t);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: var(--fb);
  background: var(--gold);
  color: #0A0600;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 9px 22px;
  border-radius: var(--r);
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--gold-light); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: var(--t); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* Scene backgrounds — layered, crossfade between them */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1),
              transform 12s cubic-bezier(0.0,0,0.2,1);
  will-change: opacity, transform;
}
.hero-bg.active {
  opacity: 1;
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.52) 55%, rgba(8,6,0,0.62) 100%);
  z-index: 1;
}


/* Animated scene text inside h1 */
.hero-scene-text {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-scene-text.changing {
  opacity: 0;
  transform: translateY(10px);
}

/* Per-scene subtitle line */
.hero-scene-desc {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(234,228,216,0.48);
  margin-bottom: 28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-scene-desc.changing {
  opacity: 0;
  transform: translateY(6px);
}

/* floating stat — top right */
.hero-float {
  position: absolute;
  top: 130px;
  right: 48px;
  z-index: 5;
  text-align: right;
}
.hero-float-num {
  display: block;
  font-family: var(--fd);
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-float-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(234,228,216,0.45);
  line-height: 1.5;
  margin-top: 4px;
}

/* centered content */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
}
.hero-rule {
  width: 44px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 18px;
}
.hero-tagline {
  font-family: var(--fb);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--fd);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 em {
  font-family: var(--fd);
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  max-width: 500px;
  font-size: 1.05rem;
  color: rgba(234,228,216,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-bottom { display: none; }
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* scroll line */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* hero entrance animations */
.hero-rule       { opacity:0; animation: up 0.7s 0.1s  ease forwards; }
.hero-tagline    { opacity:0; animation: up 0.7s 0.25s ease forwards; }
.hero h1         { opacity:0; animation: up 0.8s 0.4s  ease forwards; }
.hero-scene-desc { opacity:0; animation: up 0.7s 0.52s ease forwards; }
.hero-sub        { opacity:0; animation: up 0.7s 0.6s  ease forwards; }
.hero-btns       { opacity:0; animation: up 0.7s 0.75s ease forwards; }
.hero-float      { opacity:0; animation: up 0.7s 0.9s  ease forwards; }

@keyframes up {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #080808;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('scene-driveway.jpg');
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}
.services::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.92) 50%,
    rgba(8,6,0,0.88) 100%
  );
  z-index: 0;
}
.services .container { position: relative; z-index: 1; }
/* Glass rows on hover */
.svc-row:hover {
  background: rgba(255,255,255,0.035) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.svc-head-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.svc-head-note {
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.svc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.svc-col { border-top: 1px solid var(--border); }

.svc-row {
  display: grid;
  grid-template-columns: 48px 1fr 20px;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.svc-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.25s ease;
}
.svc-row:hover { padding-left: 14px; background: rgba(255,255,255,0.015); }
.svc-row:hover::before { width: 2px; }
.svc-row:hover .svc-info h3 { color: var(--gold-light); }
.svc-row:hover > .fa-arrow-right { opacity: 1; transform: translateX(0); color: var(--gold); }

.svc-n {
  font-family: var(--fd);
  font-size: 0.82rem;
  color: var(--faint);
  letter-spacing: 1px;
  user-select: none;
  padding-top: 1px;
}
.svc-info h3 {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  transition: color 0.25s;
}
.svc-info p { font-size: 0.8rem; color: var(--dim); line-height: 1.4; }
.svc-row > .fa-arrow-right {
  font-size: 0.72rem;
  color: var(--faint);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s ease;
}
.svc-cta {
  margin-top: 48px;
  text-align: center;
}
.svc-cta .btn {
  padding: 16px 44px;
  font-size: 1rem;
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery {
  background: var(--s1);
  padding-top: clamp(80px, 10vw, 130px);
}
.gal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}
.gal-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.gal-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 5px;
  width: 100%;
}
.gm {
  position: relative;
  overflow: hidden;
  background: var(--s3);
}
.gm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.gm:hover img { transform: scale(1.07); }
.gm-1 { grid-column: 1; grid-row: 1 / 3; }  /* tall left — pathway */
.gm-2 { grid-column: 2; grid-row: 1; }
.gm-3 { grid-column: 3; grid-row: 1; }
.gm-4 { grid-column: 2; grid-row: 2; }
.gm-5 { grid-column: 3; grid-row: 2; }
.gm span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(234,228,216,0.9);
  background: rgba(8,8,8,0.52);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid rgba(192,146,58,0.18);
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--s1);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process .container { position: relative; z-index: 1; }
.process-head {
  margin-bottom: 64px;
}
.process-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 480px;
}

/* ── Timeline layout ── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
}
.pt-step {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pt-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}
.pt-num {
  font-family: var(--fd);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.pt-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(192,146,58,0.15) 100%);
  position: relative;
}
.pt-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.pt-line--last {
  background: linear-gradient(to right, var(--gold) 0%, transparent 100%);
}
.pt-body h3 {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.pt-body p {
  font-size: 0.875rem;
  color: var(--dim);
  line-height: 1.9;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
  background: #080808;
}
/* Pathway photo layer */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('gallery3.jpg');
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}
/* Dark gradient — heavy everywhere so form text stays readable */
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8,8,8,0.97) 0%,
    rgba(8,8,8,0.92) 40%,
    rgba(8,8,8,0.88) 70%,
    rgba(8,8,8,0.85) 100%
  );
  z-index: 0;
}
.contact-inner {
  position: relative;
  z-index: 1;
}
/* Glassmorphism form card */
.contact .contact-form {
  background: rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 8px 48px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 10px 0 18px;
}
.contact-left > p {
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 0.9rem;
}
.cinfo { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.cinfo-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--dim);
  font-size: 0.875rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.25s;
}
.cinfo-row i { color: var(--gold); width: 14px; margin-top: 3px; flex-shrink: 0; }
.cinfo-row:hover { color: var(--text); }
.csocial { display: flex; gap: 8px; }
.csocial a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-g);
  border-radius: var(--r);
  color: var(--gold);
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.25s;
}
.csocial a:hover { background: var(--gold); color: var(--bg); }

/* Form — underline style */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 44px;
  background: rgba(0,0,0,0.55) !important;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--rl);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.7rem;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
  opacity: 1 !important;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid rgba(255,255,255,0.5) !important;
  border-radius: 0;
  padding: 10px 0;
  color: #ffffff !important;
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.25s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold) !important;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.65) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.65) !important;
  opacity: 1 !important;
}
.contact-form select { color: #ffffff !important; cursor: pointer; -webkit-text-fill-color: #ffffff !important; }
.contact-form select option { background: #1a1a1a; color: #ffffff; }
.contact-form textarea { resize: vertical; min-height: 88px; }

/* Override browser autofill background & text colour */
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(0,0,0,0.82) inset !important;
  -webkit-text-fill-color: #ffffff !important;
  caret-color: #ffffff !important;
}
.full-width { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid rgba(192,146,58,0.2);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('scene-pathway.jpg');
  background-size: cover;
  background-position: center 50%;
  z-index: 0;
  opacity: 0.18;
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 18px; display: block; }
.footer-brand p {
  color: var(--dim);
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--dim);
  font-size: 0.72rem;
  text-decoration: none;
  transition: all 0.25s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links h4,
.footer-contact h4 {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  color: var(--dim);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--text); }

.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact a {
  display: flex; align-items: center; gap: 10px;
  color: var(--dim); font-size: 0.85rem;
  text-decoration: none; transition: color 0.25s;
}
.footer-contact a:hover { color: var(--text); }
.footer-contact i { color: var(--gold); width: 14px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--faint); font-size: 0.78rem; }
.footer-tagline {
  font-family: var(--fd);
  font-style: italic;
  color: rgba(192,146,58,0.35) !important;
  font-size: 0.85rem !important;
}

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════ */
.wa-float {
  position: fixed !important;
  bottom: max(28px, env(safe-area-inset-bottom, 28px));
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* button on right, label grows left */
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  /* prevent label width pushing button off-screen */
  max-width: calc(100vw - 56px);
}

/* Pill label — hidden by default, slides in on hover */
.wa-label {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* Green circle button */
.wa-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.wa-btn i {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}
.wa-float:hover .wa-btn {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37,211,102,0.55), 0 2px 10px rgba(0,0,0,0.3);
}

/* Pulse ring */
.wa-btn::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-cols { gap: 0 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #080808;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 9998;
    overflow: hidden;
  }
  .nav-links.open a { font-size: 1.5rem; color: var(--text); }
  /* Keep burger on top of the open menu */
  .burger { z-index: 9999; position: relative; }

  /* Hero */
  .hero h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-float { top: 90px; right: 20px; }
  .hero-float-num { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* Services */
  .svc-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .svc-head-note { display: none; }
  .svc-cols { grid-template-columns: 1fr; gap: 0; }
  .svc-col:last-child { border-top: none; }

  /* Gallery */
  .gal-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gal-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gm-1 { grid-column: 1; grid-row: 1 / 3; }
  .gm-2 { grid-column: 2; grid-row: 1; }
  .gm-3 { grid-column: 2; grid-row: 2; }
  .gm-4 { grid-column: 1 / 3; grid-row: 3; }
  .gm-5 { display: none; }

  /* Process */
  .process-timeline { grid-template-columns: 1fr; gap: 40px 0; }
  .pt-line { width: 48px; }
  .pt-line--last { width: 48px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .contact-form { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .gal-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }
  .gm-1, .gm-2, .gm-3, .gm-4, .gm-5 {
    grid-column: 1 !important;
    grid-row: auto !important;
    display: block !important;
  }
  .contact-form { padding: 24px 16px; }

  /* WhatsApp — always hard-anchored bottom-right, no label on mobile */
  .wa-float {
    bottom: 20px !important;
    right: 20px !important;
  }
  .wa-label { display: none !important; }
}
