/* ═══════════════════════════════════════════
   RESPONSIVE.CSS — Full Mobile Optimization
   Breakpoints: 375px · 480px · 768px · 1024px
═══════════════════════════════════════════ */

/* ── BASE: All screens ── */
*, *::before, *::after { box-sizing:border-box; }
html { -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
img { max-width:100%; height:auto; display:block; }
body { overflow-x:hidden; }

/* ── ANNOUNCE BAR ── */
.announce-bar {
  display:flex; align-items:center; justify-content:center;
  gap:20px; padding:8px 20px;
  font-size:12px; flex-wrap:nowrap; white-space:nowrap; overflow:hidden;
}

/* ── NAVBAR ── */
.navbar {
  display:flex; align-items:center;
  justify-content:space-between;
  padding:0 24px; height:64px;
  position:sticky; top:0; z-index:400; width:100%;
}
.nav-links {
  display:flex; gap:32px; list-style:none;
  margin:0; padding:0; align-items:center;
}
.nav-right { display:flex; align-items:center; gap:12px; }
.hamburger {
  display:none; flex-direction:column;
  gap:5px; background:none; border:none;
  cursor:pointer; padding:6px;
}
.hamburger span {
  display:block; width:24px; height:2px;
  border-radius:2px; transition:all .3s ease;
}
.mobile-nav {
  display:none; flex-direction:column;
  position:fixed; top:64px; left:0; right:0;
  z-index:399; padding:20px 24px 28px;
  gap:4px;
}
.mobile-nav.open { display:flex; }
.mobile-link {
  padding:14px 0; font-family:'Montserrat',sans-serif;
  font-size:15px; font-weight:500; letter-spacing:.04em;
  border-bottom:1px solid rgba(255,255,255,0.05);
  color:#B8B0A0; text-decoration:none;
  transition:color .2s ease;
}
.mobile-link:hover { color:#C9A84C; }

/* ── DESKTOP ── */
@media(min-width:769px) {
  .nav-links   { display:flex !important; }
  .hamburger   { display:none !important; }
  .mobile-nav  { display:none !important; }
  .ab-email, .ab-addr { display:inline !important; }
  #navWaBtn    { display:inline-flex !important; }
}

/* ── TABLET & MOBILE ── */
@media(max-width:768px) {
  /* Announce bar */
  .ab-email, .ab-addr { display:none !important; }
  .announce-bar { justify-content:center; gap:0; padding:6px 16px; }

  /* Nav */
  .nav-links  { display:none !important; }
  .hamburger  { display:flex !important; }
  #navWaBtn   { display:none !important; }
  .navbar     { padding:0 16px; height:60px; }
  .nav-logo img { width:140px !important; }

  /* Hero */
  .hero {
    padding:90px 20px 56px !important;
    text-align:center;
    min-height:auto !important;
  }
  .hero h1 { font-size:clamp(30px,7.5vw,48px) !important; line-height:1.25; }
  .hero-sub { font-size:14px !important; }
  .hero-btns { flex-direction:column; align-items:center; gap:12px !important; }
  .hero-btns .btn { width:100%; max-width:280px; text-align:center; justify-content:center; }
  .hero-stats { grid-template-columns:repeat(3,1fr) !important; gap:0; }
  .stat-num { font-size:22px !important; }
  .stat-lbl { font-size:10px !important; }
  .hero-badge { font-size:10px !important; padding:5px 14px !important; }

  /* Section padding */
  .section-pad { padding:52px 0 !important; }
  .container, section > .inner, .section-inner { padding:0 16px !important; }

  /* Services split */
  .svc-split {
    grid-template-columns:1fr !important;
    border:1px solid rgba(201,168,76,0.12);
    border-radius:6px; overflow:hidden;
  }
  .svc-list { border-right:none !important; border-bottom:1px solid rgba(201,168,76,0.1); max-height:260px; overflow-y:auto; }
  .svc-panel { padding:28px 20px !important; }
  .svc-panel-title { font-size:18px !important; }
  .svc-panel-desc { font-size:13px !important; }
  .svc-item { padding:14px 16px !important; }
  .svc-header { margin-bottom:28px; }
  .svc-header h2 { font-size:clamp(24px,6vw,36px) !important; }

  /* Why Us */
  .why-inner { grid-template-columns:1fr !important; gap:32px !important; }
  .why-card { padding:24px !important; }
  .why-quote { font-size:15px !important; }
  .promises { gap:20px !important; }

  /* Gold Banner */
  .gold-banner .inner,
  .gold-banner-inner { flex-direction:column !important; text-align:center; gap:24px !important; }
  .gold-stats { justify-content:center; gap:16px !important; }
  .gold-banner-heading { font-size:clamp(22px,5.5vw,32px) !important; }

  /* Reviews */
  .rev-card { width:240px !important; }
  .rev-track { gap:14px !important; }
  .reviews-head { flex-direction:column; align-items:flex-start; gap:16px !important; margin-bottom:28px; }
  .rev-rating-badge { align-self:flex-start; }

  /* Contact */
  .contact-inner {
    grid-template-columns:1fr !important;
    gap:32px !important;
    padding:0 16px !important;
  }
  .contact { padding:48px 0 !important; }
  .form-box { padding:24px 16px !important; }
  .section-title { font-size:clamp(22px,5.5vw,32px) !important; }

  /* Footer */
  .footer-grid {
    grid-template-columns:1fr !important;
    gap:36px !important;
    padding:0 16px !important;
  }
  footer { padding:44px 0 24px !important; }
  .f-tagline { font-size:13px !important; }
  .f-socials { gap:10px !important; }

  /* Float buttons */
  .float-top {
    width:44px !important; height:44px !important;
    bottom:96px !important; right:16px !important;
    font-size:16px !important;
  }
  .float-wa {
    width:50px !important; height:50px !important;
    bottom:32px !important; right:16px !important;
  }
  .float-wa svg { width:22px !important; height:22px !important; }
  #vchat-btn { bottom:32px !important; left:16px !important; width:48px !important; height:48px !important; }
  #vchat-window { width:calc(100vw - 28px) !important; left:14px !important; bottom:96px !important; }
}

/* ── SMALL MOBILE (375px) ── */
@media(max-width:420px) {
  .hero h1 { font-size:28px !important; }
  .hero-stats { gap:0; }
  .stat { padding:12px 6px !important; }
  .stat-num { font-size:20px !important; }
  .rev-card { width:220px !important; }
  .svc-panel { padding:20px 14px !important; }
  .form-box { padding:20px 12px !important; }
  .contact-inner { padding:0 12px !important; }
}

/* ── TABLET (769–1024px) ── */
@media(min-width:769px) and (max-width:1024px) {
  .hero h1 { font-size:clamp(36px,5vw,52px) !important; }
  .services-grid { grid-template-columns:repeat(2,1fr) !important; }
  .contact-inner { gap:32px !important; }
  .footer-grid { grid-template-columns:1fr 1fr !important; gap:32px !important; }
  .why-inner { gap:32px !important; }
}

/* ── PERFORMANCE: Reduce animations on mobile ── */
@media(max-width:768px) and (prefers-reduced-motion:no-preference) {
  .rev-track--left  { animation-duration:25s !important; }
  .rev-track--right { animation-duration:30s !important; }
}
@media(prefers-reduced-motion:reduce) {
  .rev-track { animation:none !important; }
  .hero::after { animation:none !important; }
  .gold-banner { animation:none !important; }
  * { transition-duration:.01ms !important; animation-duration:.01ms !important; }
}

/* ── FORM INPUT MOBILE ── */
@media(max-width:768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size:16px !important; /* Prevents iOS auto-zoom */
    padding:10px 0 !important;
  }
  .form-submit { width:100% !important; padding:14px !important; font-size:13px !important; }
}

/* ── MARQUEE — mobile speed ── */
@media(max-width:768px) {
  .marquee-inner { animation-duration:14s !important; }
  .marquee-wrap { padding:10px 0 !important; }
}
