/* =========================================
   DT Global Trade Ltd — Master Stylesheet
   Palette: Deep Navy, Black, White, Gold
   ========================================= */

:root {
  --navy-900: #0a1628;
  --navy-800: #0f1e3a;
  --navy-700: #152a52;
  --navy-600: #1e3a6f;
  --navy-500: #2c4f8f;
  --gold-500: #c9a55a;
  --gold-400: #d4b876;
  --gold-300: #e4cfa0;
  --ink: #0a0e17;
  --ink-2: #1a1f2e;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --muted: #6b7385;
  --muted-light: #aab0bd;
  --border: #e3e6ee;
  --border-dark: #1f2a44;
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.06), 0 1px 2px rgba(10,22,40,0.04);
  --shadow-md: 0 8px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 24px 60px rgba(10,22,40,0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1200px;
  --font-display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { color: var(--muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy-900);
  color: var(--muted-light);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.topbar-info { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-info .gold { color: var(--gold-400); }
.topbar-social { display: flex; gap: 0.85rem; }
.topbar-social a { color: var(--muted-light); transition: color .2s; }
.topbar-social a:hover { color: var(--gold-400); }

/* ============ HEADER / NAV ============ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand img.brand-logo {
  height: 54px;
  width: auto;
  display: block;
}
.footer-brand .brand img.brand-logo { height: 64px; }
@media (max-width: 480px) {
  .brand img.brand-logo { height: 44px; }
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }

.nav-cta { display: flex; gap: 0.6rem; align-items: center; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--navy-900);
  transition: transform .25s, opacity .25s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201,165,90,0.25);
}
.btn-secondary {
  background: var(--navy-900);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}
.btn-outline:hover { background: var(--navy-900); color: var(--white); }
.btn-ghost-light {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.btn-arrow svg { transition: transform .2s; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding: 6rem 0 7rem;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,165,90,0.18), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(44,79,143,0.4), transparent 55%),
    linear-gradient(135deg, var(--navy-900), var(--ink));
  z-index: 0;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7), transparent 75%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(201,165,90,0.4);
  border-radius: 99px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-400);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero h1 .gold { color: var(--gold-400); }
.hero .lead {
  font-size: 1.15rem;
  color: var(--muted-light);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: -0.02em;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: var(--muted-light);
  margin-top: 0.2rem;
}

/* Hero visual — world map */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-map {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero-map svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}
.hero-card {
  position: absolute;
  background: rgba(15,30,58,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.hero-card .small {
  font-size: 0.72rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.15rem;
}
.hero-card.tl { top: 8%; left: -2%; }
.hero-card.br { bottom: 6%; right: -2%; }

/* ============ SECTIONS ============ */
section { padding: 5rem 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy-900); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--muted-light); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.85rem;
}
.section-head h2 { margin-bottom: 0.85rem; }
.section-head p { font-size: 1.05rem; }

/* ============ FEATURE GRID ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.feature-card p { font-size: 0.95rem; }

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-list { display: grid; gap: 1.2rem; }
.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
}
.why-item-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-500);
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.why-item p { font-size: 0.92rem; margin: 0; }

.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.why-visual::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(10,22,40,0.85), transparent 50%),
    url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?w=900&q=80') center/cover;
  mix-blend-mode: normal;
}
.why-visual-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  color: var(--white);
}
.why-visual-content blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--white);
}
.why-visual-content cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold-400);
}

/* ============ INDUSTRIES ============ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.industry-tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  text-align: left;
  transition: all .25s;
  overflow: hidden;
}
.industry-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: 0;
}
.industry-tile:hover::before { transform: translateY(0); }
.industry-tile:hover * { color: var(--white) !important; position: relative; z-index: 1; }
.industry-tile:hover .industry-icon { color: var(--gold-400) !important; }
.industry-tile > * { position: relative; z-index: 1; }
.industry-icon {
  color: var(--gold-500);
  margin-bottom: 0.9rem;
}
.industry-icon svg { width: 28px; height: 28px; }
.industry-tile h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.industry-tile p { font-size: 0.85rem; margin: 0; }

/* ============ PROCESS / TIMELINE ============ */
.process-wrap {
  position: relative;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.process-num {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  background: var(--navy-900);
  color: var(--gold-400);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  border: 3px solid var(--gold-500);
  box-shadow: 0 8px 20px rgba(10,22,40,0.15);
}
.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.section-light .process-step h4 { color: var(--ink); }
.process-step p { font-size: 0.85rem; line-height: 1.5; }

/* Vertical timeline (How It Works page) */
.timeline-v {
  position: relative;
  max-width: 760px;
  margin: 3rem auto 0;
}
.timeline-v::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-300));
  opacity: 0.4;
}
.tl-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.tl-row:last-child { padding-bottom: 0; }
.tl-marker {
  width: 60px; height: 60px;
  background: var(--white);
  border: 3px solid var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.tl-content {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.tl-content h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.tl-content p { font-size: 0.95rem; }
.tl-tags { margin-top: 0.85rem; display: flex; gap: 0.45rem; flex-wrap: wrap; }
.tl-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  background: var(--off-white);
  color: var(--navy-700);
  border-radius: 99px;
  font-weight: 500;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold-300);
  line-height: 1;
  font-weight: 700;
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0.5rem 0 1.2rem;
}
.tm-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-500));
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.tm-author .name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.tm-author .role { font-size: 0.82rem; color: var(--muted); }
.tm-rating { color: var(--gold-500); font-size: 0.9rem; letter-spacing: 2px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,165,90,0.15), transparent 60%);
}
.cta-banner .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 {
  color: var(--white);
  max-width: 600px;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.cta-banner h2 .gold { color: var(--gold-400); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 75%);
}
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero h1 .gold { color: var(--gold-400); }
.page-hero p { color: var(--muted-light); max-width: 680px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: inline-flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-light);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { color: var(--gold-400); }

/* ============ CONTENT BLOCKS ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col .col h2 { margin-bottom: 1rem; }
.two-col .col p { margin-bottom: 1rem; font-size: 1.02rem; }
.image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  display: grid; place-items: center;
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.93rem; margin: 0; }

/* ============ SERVICES PAGE ============ */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .feature-icon { margin-bottom: 1.3rem; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1rem; }
.service-card ul { display: grid; gap: 0.5rem; }
.service-card li {
  font-size: 0.9rem;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.5rem;
  align-items: start;
}
.service-card li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  margin-top: 0.55rem;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open { border-color: var(--gold-400); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-q .icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--off-white);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--navy-900);
  transition: transform .25s, background .2s;
  flex-shrink: 0;
}
.faq-item.open .icon { transform: rotate(45deg); background: var(--gold-400); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 1.5rem 1.3rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.4), transparent 60%);
}
.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.blog-card p { font-size: 0.93rem; margin-bottom: 1rem; flex: 1; }
.blog-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-link:hover { color: var(--gold-500); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info { display: grid; gap: 1.5rem; }
.contact-info h3 { margin-bottom: 0.5rem; }
.contact-block {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.contact-block:hover { border-color: var(--gold-400); }
.contact-block .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  border-radius: 10px;
  display: grid; place-items: center;
}
.contact-block .icon svg { width: 22px; height: 22px; }
.contact-block .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-block .val {
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 0.4rem; }
.contact-form > p { margin-bottom: 1.5rem; font-size: 0.95rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-group label .req { color: var(--gold-500); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,165,90,0.15);
}
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.consent a { color: var(--navy-900); text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }
.form-success {
  display: none;
  padding: 1rem 1.2rem;
  background: #e8f5e8;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  color: #1b5e20;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-success.show { display: block; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, var(--navy-900), var(--ink));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  bottom: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,165,90,0.15), transparent 60%);
}
.newsletter .container { position: relative; z-index: 1; max-width: 640px; }
.newsletter h2 { color: var(--white); margin-bottom: 0.6rem; }
.newsletter p { color: var(--muted-light); margin-bottom: 1.5rem; }
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-400);
  background: rgba(255,255,255,0.08);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: var(--muted-light);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a {
  color: var(--muted-light);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-brand .brand { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; margin-bottom: 1.2rem; color: var(--muted-light); }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--gold-500); color: var(--navy-900); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted-light);
  align-items: start;
}
.footer-contact-item svg { color: var(--gold-400); flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ============ LIVE ENQUIRY BUBBLE ============ */
.live-enquiry {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.85rem 1.2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 12px 30px rgba(10,22,40,0.25);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.live-enquiry:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(10,22,40,0.3);
  background: var(--gold-400);
}
.live-enquiry .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2e7d32;
  position: relative;
}
.live-enquiry .pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(46,125,50,0.4);
  animation: ping 1.8s infinite;
}
@keyframes ping {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ LEGAL PAGES ============ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.5rem;
  color: var(--navy-900);
}
.legal-content h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--ink);
}
.legal-content p, .legal-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul, .legal-content ol {
  margin: 0 0 1.25rem 1.5rem;
  padding-left: 0.5rem;
}
.legal-content ul li, .legal-content ol li {
  margin-bottom: 0.4rem;
  list-style: disc outside;
}
.legal-content ol li { list-style: decimal outside; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--navy-700); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-500); }
.legal-meta {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold-500);
  border-radius: 4px;
  margin-bottom: 2rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 360px; }
  .why-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { max-height: 500px; padding: 1rem 1.5rem 1.5rem; }
  .nav-links a { padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta .btn-primary { display: none; }

  .hero { padding: 4rem 0 5rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 3.5rem 0; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .newsletter-form { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .live-enquiry span:not(.pulse) { display: none; }
  .live-enquiry { padding: 0.85rem; width: 50px; height: 50px; justify-content: center; }
  .hero-card { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 600px) {
  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}
