/* ═══════════════════════════════════════════════════════════════
   Taswiqs — Main Stylesheet
   Design System: Black / White / Gold #F7C600
════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --black:  #0A0A0A;
  --black2: #111111;
  --black3: #050505;
  --white:  #FFFFFF;
  --gold:   #F7C600;
  --gold2:  #E6B800;
  --gold3:  #ffe033;
  --gray:   #F5F5F5;
  --muted:  #888888;
  --glass:  rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --font:   'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 16px;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --gold-glow: 0 0 40px rgba(247,198,0,.15);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.text-muted { color: var(--muted); }
section { padding: 96px 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(247,198,0,.1);
  border: 1px solid rgba(247,198,0,.22);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -.04em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .section-sub { margin: 14px auto 0; }
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold3); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(247,198,0,.3); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.18); }
.btn-outline:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.05); color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-lg { font-size: 16px; padding: 16px 34px; border-radius: 12px; }
.btn-sm { font-size: 13px; padding: 9px 18px; border-radius: 8px; }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--gold);
  padding: 0;
  transition: box-shadow .3s ease;
}
#navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,.22);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 66px; }

/* ── Logo wordmark (CSS-rendered to match brand) ── */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-wordmark {
  font-size: 26px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.06em;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0;
}
.logo-s-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  margin-left: 2px;
  flex-shrink: 0;
  line-height: 1;
}
.logo-tagline {
  font-size: 9px;
  font-family: 'Courier New', monospace;
  font-weight: 400;
  color: rgba(0,0,0,.55);
  letter-spacing: .04em;
  margin-left: 10px;
  line-height: 1.3;
  display: none; /* hidden on navbar, shown in footer */
}
.logo:hover .logo-wordmark { opacity: .85; }

/* ── Nav links on gold bg ── */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 600;
  color: rgba(0,0,0,.65);
  padding: 7px 13px;
  border-radius: 7px;
  transition: all .2s;
}
.nav-links a:hover { color: var(--black); background: rgba(0,0,0,.08); }
.nav-links a.active { color: var(--black); background: rgba(0,0,0,.1); font-weight: 700; }

/* ── Nav action buttons on gold bg ── */
.nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-nav-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0,0,0,.25);
  font-size: 13px; font-weight: 700;
  padding: 8px 18px; border-radius: 8px;
  cursor: pointer; transition: all .22s;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.btn-nav-ghost:hover { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.45); }
.btn-nav-primary {
  background: var(--black);
  color: var(--gold);
  font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 8px;
  cursor: pointer; transition: all .22s;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap; border: none;
}
.btn-nav-primary:hover { background: #222; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 23px; height: 2px; background: var(--black); border-radius: 2px; transition: all .3s; }

/* ── Mobile Menu ────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 22px; font-weight: 700; color: rgba(255,255,255,.7); transition: color .2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-close { position: absolute; top: 22px; right: 22px; font-size: 26px; cursor: pointer; }

/* ── Page Hero (shared) ──────────────────────────────────────── */
.page-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(247,198,0,.05) 0%, transparent 60%),
    var(--black3);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.1; margin-bottom: 18px; }
.page-hero p { font-size: 1.1rem; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .32s cubic-bezier(.4,0,.2,1);
}
.card:hover { border-color: rgba(247,198,0,.22); transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,.35); }
.card-gold-hover::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(247,198,0,.06) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .32s;
}
.card-gold-hover:hover::before { opacity: 1; }

/* ── Service Icon ────────────────────────────────────────────── */
.svc-icon {
  width: 50px; height: 50px;
  background: rgba(247,198,0,.1);
  border: 1px solid rgba(247,198,0,.18);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: all .3s;
}

/* ── Form Elements ───────────────────────────────────────────── */
.form-label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 7px; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px; font-weight: 500;
  color: var(--white);
  outline: none;
  transition: border-color .22s;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: rgba(255,255,255,.25); }
select.form-control option { background: #1a1a1a; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Stats bar ───────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.stat-item {
  background: var(--black2);
  padding: 28px 24px;
  text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); letter-spacing: -.04em; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* ── Pulse dot ───────────────────────────────────────────────── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.6)} }
.pulse-dot { width:7px;height:7px;border-radius:50%;background:var(--gold);animation:pulse 2s infinite; }

/* ── WhatsApp Floating Btn ───────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 28px rgba(37,211,102,.4);
  cursor: pointer;
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float .wa-tip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: #111; border: 1px solid var(--border);
  padding: 7px 12px; border-radius: 8px; font-size: 12px; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ── Chat Widget ─────────────────────────────────────────────── */
.chat-fab {
  position: fixed; bottom: 92px; right: 28px; z-index: 990;
  width: 50px; height: 50px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  cursor: pointer; box-shadow: 0 6px 28px rgba(247,198,0,.3); transition: all .3s;
}
.chat-fab:hover { transform: scale(1.1); background: var(--gold3); }
.chat-window {
  position: fixed; bottom: 152px; right: 28px; z-index: 989;
  width: 310px; background: #111; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transform: translateY(16px) scale(.96);
  transition: all .28s cubic-bezier(.4,0,.2,1);
}
.chat-window.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.chat-hdr { background: var(--gold); padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; }
.chat-hdr-info { display: flex; align-items: center; gap: 9px; }
.chat-hdr-av { width: 34px; height: 34px; background: rgba(0,0,0,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.chat-hdr h5 { font-size: 13px; font-weight: 700; color: var(--black); }
.chat-hdr p  { font-size: 10px; color: rgba(0,0,0,.55); }
.chat-hdr-close { font-size: 18px; cursor: pointer; color: var(--black); opacity: .6; }
.chat-hdr-close:hover { opacity: 1; }
.chat-body { padding: 16px; min-height: 120px; }
.chat-bubble { background: rgba(255,255,255,.06); border-radius: 10px 10px 10px 0; padding: 10px 13px; font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.55; margin-bottom: 7px; max-width: 90%; }
.chat-input-row { display: flex; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--border); }
.chat-input { flex: 1; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 7px; padding: 7px 11px; font-size: 13px; color: var(--white); outline: none; }
.chat-send { width: 34px; height: 34px; background: var(--gold); border: none; border-radius: 7px; cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.chat-send:hover { background: var(--gold3); }

/* ── Testimonial Card ────────────────────────────────────────── */
.testi-card { padding: 28px; }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--black); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-biz { font-size: 12px; color: var(--muted); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0e0c00 0%, #1a1500 50%, #0a0a0a 100%);
  border: 1px solid rgba(247,198,0,.15);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 14px; }
.cta-banner p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background: var(--black3); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 14px 0 22px; max-width: 260px; }
.footer-socials { display: flex; gap: 8px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; transition: all .2s; }
.social-icon:hover { background: rgba(247,198,0,.1); border-color: rgba(247,198,0,.3); }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-links a:hover { color: var(--white); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .page-hero { padding: 130px 0 70px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 24px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
