/* ==============================
   VARIABLES & RESET
============================== */
:root {
  --gold:       #FFD700;
  --gold-dark:  #c9a800;
  --green:      #57ff8f;
  --green-dark: #0d9e46;
  --deep:       #16364D;
  --black:      #000000;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --text:       #1a1a1a;
  --text-mid:   #555555;
  --text-light: #888888;
  --border:     #e8e8e8;
  --wa:         #25D366;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Nunito', sans-serif;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==============================
   TYPOGRAPHY HELPERS
============================== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(87, 255, 143, 0.12);
  border: 1px solid rgba(87, 255, 143, 0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.1rem;
}
.section-label.light {
  color: var(--green);
  background: rgba(87,255,143,0.1);
  border-color: rgba(87,255,143,0.3);
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-heading em {
  font-style: italic;
  font-weight: 800;
  color: var(--gold-dark);
}
.section-heading.white { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.section-desc {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ==============================
   REVEAL ANIMATION
============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,215,0,0.12);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(0,0,0,0.97);
  border-bottom-color: rgba(255,215,0,0.25);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: var(--transition);
}
.nav-logo:hover { opacity: 0.8; }

.nav-logo-img {
  width: 96px; height: 96px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.nav-sub {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   HERO — BLACK + BLEND
============================== */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial ambience — pure CSS, zero JS cost */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(87,255,143,0.04) 0%, transparent 65%);
  pointer-events: none;
}

/* Ambient floating particles — CSS keyframes only */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.p {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: drift linear infinite;
}
.p1 { width:3px; height:3px; background:var(--gold); top:15%; left:10%; animation-duration:14s; animation-delay:0s; }
.p2 { width:2px; height:2px; background:var(--green); top:40%; left:20%; animation-duration:18s; animation-delay:2s; }
.p3 { width:4px; height:4px; background:var(--gold); top:60%; left:5%;  animation-duration:12s; animation-delay:4s; }
.p4 { width:2px; height:2px; background:var(--green); top:25%; left:80%; animation-duration:16s; animation-delay:1s; }
.p5 { width:3px; height:3px; background:var(--gold); top:70%; left:75%; animation-duration:20s; animation-delay:3s; }
.p6 { width:2px; height:2px; background:var(--green); top:50%; left:90%; animation-duration:15s; animation-delay:5s; }
@keyframes drift {
  0%   { transform: translateY(0) translateX(0); opacity:0.18; }
  50%  { transform: translateY(-40px) translateX(12px); opacity:0.35; }
  100% { transform: translateY(0) translateX(0); opacity:0.18; }
}

.hero-wrap {
  flex: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── HERO TEXT ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(87,255,143,0.08);
  border: 1px solid rgba(87,255,143,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.6rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wa);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.25; }
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-heading em {
  font-style: italic;
  font-weight: 900;
  color: var(--gold);
}
.heading-highlight {
  color: var(--white);
  position: relative;
  display: inline-block;
}
.heading-highlight::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.7;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--wa);
  color: var(--white);
  padding: 0.9rem 1.7rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
  white-space: nowrap;
}
.btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-item strong {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}
.stat-item span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.stat-divider {
  width: 1px; height: 34px;
  background: rgba(255,255,255,0.12);
}

/* ── HERO VISUAL — CREATIVE IMAGE PANEL ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 520px;
}

/* MAIN LARGE IMAGE */
.hero-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 100%;
  z-index: 2;
}

.hero-img-frame {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* placeholder colour so layout shows before image loads */
  background: #1a1a2e;
  transition: transform 0.6s ease;
}
.hero-img-frame:hover .hero-img-photo {
  transform: scale(1.03);
}

/* Dark overlay on image so it blends with black bg */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.1) 60%,
    rgba(255,215,0,0.08) 100%
  );
  border-radius: inherit;
}

/* Gold border glow on main frame */
.main-frame {
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.2),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,215,0,0.08);
}

/* SDH badge pinned bottom-left of main image */
.hero-badge-float {
  position: absolute;
  bottom: -14px;
  left: -14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--black);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.hbf-logo {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.hbf-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hbf-name {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
}
.hbf-sub {
  font-family: var(--font-head);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* SECONDARY SMALLER IMAGE — top-right, overlapping */
.hero-img-secondary {
  position: absolute;
  right: 0;
  top: 30px;
  width: 44%;
  height: 55%;
  z-index: 3;
}

.secondary-frame {
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(87,255,143,0.15),
    0 16px 48px rgba(0,0,0,0.55);
}

/* Product count chip floating below secondary image */
.hero-chip {
  position: absolute;
  bottom: -18px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  border-radius: 10px;
  padding: 0.55rem 1rem;
  box-shadow: 0 6px 20px rgba(255,215,0,0.4);
  z-index: 5;
}
.chip-num {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.chip-label {
  font-family: var(--font-head);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-top: 2px;
}

/* Decorative rings behind images */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  z-index: 1;
}
.r1 {
  width: 340px; height: 340px;
  border-color: rgba(255,215,0,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
}
.r2 {
  width: 460px; height: 460px;
  border-color: rgba(87,255,143,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 30s linear infinite reverse;
}
@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Gradient blend from black into white for About section */
.hero-blend {
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, var(--white) 100%);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* ==============================
   ABOUT
============================== */
.about {
  background: var(--white);
  padding: 80px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-left p { margin-bottom: 1.2rem; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.pill {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--deep);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  letter-spacing: 0.04em;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0 0.4rem;
}
.about-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.ac-icon { font-size: 1.5rem; }
.ac-gold  { border-top: 3px solid var(--gold); }
.ac-green { border-top: 3px solid var(--green-dark); }
.ac-deep  { border-top: 3px solid var(--deep); }
.ac-light { border-top: 3px solid #ccc; }

/* ==============================
   SERVICES SWIPER SLIDER
============================== */
.services {
  background: var(--off-white);
  padding: 100px 0 110px;
  overflow: hidden;
}

/* Swiper container — full viewport width for "infinite stage" feel */
.services-swiper {
  width: 100%;
  padding: 1.5rem 0 4rem !important;
  overflow: visible !important;
}

/* Each slide */
.svc-slide {
  /* width set by Swiper JS */
  height: auto;
  display: flex;
  align-items: stretch;
}

.svc-card-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  position: relative;
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease,
    border-color 0.4s ease,
    opacity 0.5s ease;
  width: 100%;
  opacity: 0.55;
  transform: scale(0.9);
}

/* Active centred slide is full size and lit up */
.swiper-slide-active .svc-card-inner {
  opacity: 1;
  transform: scale(1);
  border-color: transparent;
  box-shadow:
    0 0 0 2px var(--gold),
    0 20px 50px rgba(255,215,0,0.12),
    var(--shadow-md);
}

/* Previous/next slide slightly larger than the rest */
.swiper-slide-prev .svc-card-inner,
.swiper-slide-next .svc-card-inner {
  opacity: 0.78;
  transform: scale(0.95);
}

/* Gold top bar on active */
.swiper-slide-active .svc-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-dark));
  border-radius: 16px 16px 0 0;
}

.svc-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(255,215,0,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.3s ease;
}
.swiper-slide-active .svc-icon-wrap {
  background: rgba(255,215,0,0.15);
}

.svc-icon { font-size: 1.8rem; }

.svc-card-inner h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}

.svc-card-inner p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

.svc-line {
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin-top: 1.4rem;
  transition: width 0.4s ease;
}
.swiper-slide-active .svc-line { width: 56px; }

/* Swiper pagination dots */
.services-swiper .swiper-pagination {
  bottom: 0 !important;
}
.services-swiper .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(0,0,0,0.2);
  opacity: 1;
  transition: var(--transition);
}
.services-swiper .swiper-pagination-bullet-active {
  background: var(--gold-dark);
  width: 24px;
  border-radius: 4px;
}

/* ==============================
   CONTACT
============================== */
.contact {
  background: var(--black);
  padding: 100px 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-left .section-heading em { color: var(--gold); }

.contact-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.85;
  margin-bottom: 2rem !important;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.contact-cta-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.cta-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.cta-wa-icon {
  width: 68px; height: 68px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.cta-card-top p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

.btn-wa-large {
  display: block;
  width: 100%;
  background: var(--wa);
  color: var(--white);
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  line-height: 1.5;
}
.btn-wa-large:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.cta-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 1rem;
  display: block;
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: #080808;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-logo {
  width: 76px; height: 76px;
  object-fit: contain;
  border-radius: 8px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
}
.footer-brand-sub {
  font-family: var(--font-head);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 0.7rem;
}
.soc {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.soc:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom { text-align: center; }
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  margin: 0;
}

/* ==============================
   WHATSAPP FLOAT WIDGET
============================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wa-bounce 3.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.75);
  animation: none;
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-right: none;
  border-left-color: var(--black);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes wa-bounce {
  0%,100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { transform: translateY(-7px); box-shadow: 0 10px 30px rgba(37,211,102,0.65); }
}

/* ==============================
   RESPONSIVE — TABLET ≤ 900px
============================== */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 3.5rem 2rem 3rem;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-visual  { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-box { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .contact-info { align-items: center; }

  .footer-top { flex-direction: column; text-align: center; align-items: center; }
  .footer-links { justify-content: center; }
}

/* ==============================
   RESPONSIVE — MOBILE ≤ 600px
============================== */
@media (max-width: 600px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1.5rem;
    border-bottom: 1px solid rgba(255,215,0,0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.82rem;
    width: 100%;
    color: rgba(255,255,255,0.7);
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { color: var(--gold); }

  .hero-heading { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-wa, .btn-ghost { width: 100%; justify-content: center; }

  .about { padding: 70px 0; }
  .about-card-grid { grid-template-columns: 1fr; }
  .services { padding: 70px 0 80px; }
  .contact { padding: 70px 0; }

  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
}
