@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;500;600&family=Roboto:wght@400&display=swap');

/* ─────────────────────────── TOKENS ─────────────────────────── */
:root {
  --ink:       #0c1524;
  --ink-2:     #3d5068;
  --ink-3:     #8899aa;
  --surface:   #f5f7fc;
  --white:     #ffffff;
  --blue:      #1a56f0;
  --blue-dk:   #1040d0;
  --blue-soft: #e8effe;
  --orange:    #ff5c1a;
  --green:     #10b981;
  --amber:     #f59e0b;
  --border:    #e0e7f0;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(12,21,36,.06), 0 1px 2px rgba(12,21,36,.04);
  --shadow-md: 0 4px 16px rgba(12,21,36,.08), 0 1px 4px rgba(12,21,36,.04);
  --shadow-lg: 0 12px 40px rgba(12,21,36,.12);
  --red:       #dc2626;
}

/* ─────────────────────────── RESET ─────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--surface); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─────────────────────────── TOPBAR PROMO ─────────────────────────── */
.topbar-promo { background: linear-gradient(90deg, #8434E4 0%, #2765D0 100%); padding: 5px 0; text-align: center; }
.topbar-promo-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 400; text-decoration: none; }
.topbar-promo-link:hover { opacity: .88; }
.topbar-promo-icon { flex-shrink: 0; }

/* ─────────────────────────── FLOATING BULK ORDER ─────────────────────────── */
.bulk-order-float { position: fixed; bottom: 24px; left: 24px; z-index: 20; display: block; width: 70px; transition: transform .2s; }
.bulk-order-float:hover { transform: scale(1.07); }
.bulk-order-float img { width: 100%; height: auto; }

/* ─────────────────────────── SITE HEADER / NAV ─────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 10; background: #fff; box-shadow: 0 0 5px rgba(0,0,0,.5); }
.nav { max-width: 1240px; margin: auto; padding: 5px 24px; display: flex; align-items: center; }

/* Logo — 20% */
.nav-logo-col { flex: 0 0 20%; }
.nav-logo-img { height: 40px; width: auto; display: block; }

/* Nav links — 60% */
.nav-links-col { flex: 0 0 60%; display: flex; justify-content: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-menu a { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--ink); padding: 8px 14px; border-radius: 8px; display: block; transition: color .18s, background .18s; }
.nav-menu a:hover { color: #2765D0; background: rgba(39,101,208,.06); }

/* CTA — 20%, desktop only */
.nav-cta-col { flex: 0 0 20%; display: flex; justify-content: flex-end; }
.btn-ship-now { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: #fff; background: #000; border-radius: 8px; padding: 10px 24px; display: inline-block; transition: background .2s, transform .15s; }
.btn-ship-now:hover { background: #2765D0; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer { display: none; background: #fff; border-top: 1px solid var(--border); padding: 16px 24px 20px; }
.nav-drawer.is-open { display: block; }
.nav-drawer-menu { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.nav-drawer-menu a { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: var(--ink); padding: 10px 4px; display: block; border-bottom: 1px solid var(--border); }
.btn-ship-now--full { display: block; text-align: center; }

/* ─────────────────────────── HERO WRAP ─────────────────────────── */
.hero-wrap { background: var(--ink); position: relative; overflow: hidden; }
.hero-wrap::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 75% 40%, rgba(26,86,240,.4) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 90%, rgba(255,92,26,.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 50% 0%, rgba(26,86,240,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-wrap::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}

/* ─────────────────────────── HERO COMMON ─────────────────────────── */
.hero { position: relative; z-index: 2; max-width: 1240px; margin: auto; padding: 64px 24px 72px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: #9ab8ff; font-size: 12.5px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; width: fit-content;
}
.pulse-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: blink 2.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(32px, 4.5vw, 54px); font-weight: 800; color: #fff; line-height: 1.06; letter-spacing: -1.8px; margin-bottom: 14px; }
.hero h1 .highlight { background: linear-gradient(105deg, #ff5c1a 0%, #ffb347 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { color: #7b95b8; font-size: 16px; line-height: 1.7; max-width: 520px; }
.hero > * { opacity: 0; animation: slideUp .65s ease forwards; }
.hero .breadcrumb { animation-delay: .05s; }
.hero .hero-eyebrow { animation-delay: .12s; }
.hero h1 { animation-delay: .22s; }
.hero .hero-desc { animation-delay: .34s; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────────────────────── BREADCRUMB ─────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: #4a6480; }
.breadcrumb a { color: #6fa0ff; font-weight: 500; transition: color .18s; }
.breadcrumb a:hover { color: #9ab8ff; }
.breadcrumb svg { color: #2e4060; flex-shrink: 0; }

/* ─────────────────────────── MAIN ─────────────────────────── */
.main { max-width: 1240px; margin: auto; padding: 0 24px; }

/* ─────────────────────────── SECTION HEADER ─────────────────────────── */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-tag { display: inline-block; background: var(--blue-soft); color: var(--blue); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.sec-head h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -1.2px; color: var(--ink); margin-bottom: 12px; }
.sec-head p { color: var(--ink-2); font-size: 15px; max-width: 480px; margin: auto; }

/* ─────────────────────────── BANNER ─────────────────────────── */
.banner-wrap { padding: 0 0 80px; }
.banner { background: var(--ink); border-radius: var(--radius-lg); padding: 56px 64px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; position: relative; overflow: hidden; }
.banner::before { content:''; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(26,86,240,.35) 0%, transparent 70%); right: -80px; top: -120px; pointer-events: none; }
.banner-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.2); color: #4ade80; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; width: fit-content; }
.banner h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(22px, 2.8vw, 36px); font-weight: 800; letter-spacing: -.8px; color: #fff; margin-bottom: 10px; }
.banner p { color: #7b95b8; font-size: 15px; max-width: 500px; line-height: 1.65; }
.banner-btn { display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--ink); font-weight: 800; font-size: 15px; padding: 16px 30px; border-radius: 12px; flex-shrink: 0; position: relative; z-index: 2; box-shadow: 0 4px 20px rgba(0,0,0,.18); transition: transform .18s, box-shadow .18s; }
.banner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }

/* ─────────────────────────── WHATSAPP BANNER ─────────────────────────── */
.wa-banner { background: #fff; box-shadow: 0 0 10px rgba(0,0,0,.2); }
.wa-banner-inner { max-width: 1240px; margin: auto; padding: 14px 24px; display: flex; align-items: center; }
.wa-logo-col { flex: 0 0 20%; display: flex; justify-content: flex-end; padding-right: 20px; }
.wa-logo-col img { width: 40%; max-width: 140px; }
.wa-text-col { flex: 0 0 60%; border-left: 2px solid #D8DDE5; padding: 8px 24px; }
.wa-text-col p { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 500; text-transform: capitalize; line-height: 1.2; color: var(--ink); text-align: center; }
.wa-btn-col { flex: 0 0 20%; display: flex; justify-content: flex-start; }
.wa-join-btn { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(120deg, #25D366 0%, #46AF55 70%); color: #fff; font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; padding: 12px 22px; border-radius: 10px; flex-direction: row-reverse; transition: transform .2s, box-shadow .2s; }
.wa-join-btn:hover { transform: scale(1.04); box-shadow: 1px 1px 5px 1px rgba(0,0,0,.4); }
.wa-join-btn i { font-size: 26px; }

/* ─────────────────────────── SITE FOOTER ─────────────────────────── */
.site-footer { background: linear-gradient(160deg, #000002 0%, #001B51 100%); }
.footer-inner { max-width: 1240px; margin: auto; padding: 72px 5% 56px; display: flex; gap: 10px; align-items: flex-start; }

.footer-brand-col { flex: 0 0 40%; padding-right: 35px; display: flex; flex-direction: column; gap: 28px; }
.footer-logo { width: 55%; max-width: 200px; }
.footer-offices { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.5; color: rgba(255,255,255,.65); text-align: justify; }
.footer-offices strong { color: #fff; font-weight: 600; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: rgba(255,255,255,.65); font-size: 23px; transition: color .18s; }
.footer-social a:hover { color: #C8D5DC; }

.footer-links-col { flex: 0 0 20%; display: flex; flex-direction: column; gap: 20px; }
.footer-col-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; color: #fff; line-height: 1.2; text-transform: capitalize; margin: 0; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 25px; }
.footer-links-col ul li a { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400; color: rgba(255,255,255,.65); line-height: 1.5; transition: color .18s; }
.footer-links-col ul li a:hover { color: var(--orange); }

.footer-contact-col { flex: 0 0 20%; display: flex; flex-direction: column; gap: 20px; }
.footer-contact-col ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-contact-col ul li { display: flex; align-items: center; gap: 10px; }
.footer-contact-col ul li i { color: var(--orange); font-size: 20px; flex-shrink: 0; }
.footer-contact-col ul li a { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400; color: rgba(255,255,255,.65); transition: color .18s; }
.footer-contact-col ul li a:hover { color: #fff; }

/* ─────────────────────────── FOOTER DIVIDER (plane) ─────────────────────────── */
.footer-divider { background: linear-gradient(160deg, #000002 0%, #001B51 100%); height: 80px; position: relative; overflow: hidden; border-top: none; }
.footer-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 0; border-top: 2px dashed rgba(200,220,255,.25); transform: translateY(-50%); }
.animated-plane { position: absolute; top: 50%; height: 70px; transform: translateY(-50%); animation: fly-plane 15s linear infinite; }
@keyframes fly-plane { 0% { left: -8%; } 100% { left: 108%; } }

/* ─────────────────────────── COPYRIGHT ─────────────────────────── */
.footer-copyright { background: linear-gradient(160deg, #000002 0%, #001B51 100%); padding: 20px; text-align: center; border-top: 1px solid rgba(255,255,255,.08); }
.footer-copyright p { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 300; color: #fff; line-height: 1.5; }

/* ─────────────────────────── RESPONSIVE (shared) ─────────────────────────── */
@media(max-width:1024px) {
  .footer-body { grid-template-columns: 1fr 1fr; }
}
@media(max-width:1024px) {
  .nav-links-col { flex: 0 0 50%; }
  .nav-logo-col { flex: 0 0 50%; }
  .nav-cta-col { display: none; }
  .nav-menu a { font-size: 13px; padding: 7px 10px; }
}
@media(max-width:768px) {
  .nav-links-col { display: none; }
  .nav-cta-col { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-col { flex: 1; }
  .bulk-order-float { width: 56px; bottom: 16px; left: 16px; }
  .banner { grid-template-columns: 1fr; padding: 40px 24px; text-align: center; }
  .main { padding: 0 16px; }
  .hero { padding: 48px 16px 56px; }
  /* WA banner */
  .wa-banner-inner { flex-wrap: wrap; gap: 12px; }
  .wa-logo-col { flex: 0 0 30%; padding-right: 0; }
  .wa-logo-col img { width: 70%; }
  .wa-text-col { flex: 0 0 70%; border-left: none; padding: 0; }
  .wa-text-col p { font-size: 13px; text-align: left; }
  .wa-btn-col { flex: 0 0 100%; justify-content: center; }
  .wa-join-btn { font-size: 20px; width: 100%; justify-content: center; }
  /* Footer */
  .footer-inner { flex-wrap: wrap; padding: 48px 5% 36px; gap: 32px; }
  .footer-brand-col { flex: 0 0 100%; padding-right: 0; }
  .footer-logo { width: 50%; }
  .footer-links-col { flex: 0 0 48%; }
  .footer-contact-col { flex: 0 0 100%; }
  .footer-col-title { font-size: 18px; }
  .footer-links-col ul { gap: 8px; }
  .footer-links-col ul li a { font-size: 12px; }
  .footer-contact-col ul li a { font-size: 12px; }
  .footer-offices { font-size: 12px; }
  .footer-social a { font-size: 18px; }
}
