/*
Theme Name: GoldTrade Pro
Theme URI: https://goldtradeglobal.com
Author: GoldTrade Global
Description: A dynamic dark-gold premium WordPress theme for international gold trading. Mega dropdown menu, hero image slider, fully editable homepage via Customizer and Front Page editor, Rank Math SEO ready.
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: goldtrade-pro
Tags: gold, trading, dark, luxury, slider, mega-menu, customizer, seo
*/

/* =============================================
   VARIABLES — DARK GOLD THEME (original)
============================================= */
:root {
  --gold-1: #B8860B;
  --gold-2: #D4A017;
  --gold-3: #E8C84A;
  --gold-4: #F5E088;
  --gold-5: rgba(184,134,11,0.12);
  --dark-1: #0A0700;
  --dark-2: #120E02;
  --dark-3: #1E1604;
  --dark-4: #2A1E06;
  --dark-5: #3A2A08;
  --surface: #1E1604;
  --surface-2: #2A1E06;
  --warm-white: #FFFFFF;
  --text-primary: #FEF8E4;
  --text-muted: #9A8660;
  --text-gold: #C9A84C;
  --border-light: rgba(184,134,11,0.18);
  --border-mid: rgba(184,134,11,0.35);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(184,134,11,0.25);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 76px;
}

/* =============================================
   BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark-1);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }         /* removes bullets globally */
li { list-style: none; }         /* belt & braces — no dots anywhere */
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.gold-text {
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold-2);
}

/* =============================================
   LAYOUT
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.section-alt { background: var(--dark-2); }
.section-gold { background: var(--dark-3); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold-1);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,134,11,0.35);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.4); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--gold-1);
  border: 1.5px solid var(--gold-1);
}
.btn-outline:hover { background: var(--gold-1); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--gold-1);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn-lg { padding: 16px 38px; font-size: 15px; }

/* =============================================
   MEGA MENU NAVIGATION
============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 7, 0, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: all 0.3s;
}
#site-header.scrolled {
  height: 64px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
  max-width: 1260px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--gold-1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
  transition: box-shadow 0.3s;
}
.logo-mark:hover { box-shadow: 0 0 0 6px rgba(184,134,11,0.2); }
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-3);
  letter-spacing: 0.5px;
}
.logo-text span { color: var(--gold-1); }

/* =============================================
   DESKTOP NAV — mega menu, no bullets ever
============================================= */

/* Nuclear bullet removal — covers every scenario */
#site-header *, .main-nav *, .mega-menu *,
.dropdown *, .mob-drawer *, .mob-nav * {
  list-style: none !important;
  list-style-type: none !important;
}
#site-header ul, #site-header ol,
.main-nav ul, .main-nav ol,
.mega-menu ul, .mega-menu ol,
.dropdown ul, .dropdown ol {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

/* Each nav-item is a div, never a li */
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Both <a> and <button> get the same nav-link look */
.nav-link,
a.nav-link,
button.nav-link,
.nav-link-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 15px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-gold);
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-link:hover,
.nav-link-toggle:hover,
.nav-item:hover > .nav-link,
.nav-item:hover > .nav-link-toggle {
  color: var(--gold-3);
  background: rgba(184,134,11,0.1);
}
.arrow {
  font-size: 8px;
  display: inline-block;
  transition: transform 0.25s;
  opacity: 0.55;
}
.nav-item:hover > .nav-link-toggle .arrow,
.nav-item.open > .nav-link-toggle .arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--gold-3);
}

/* ---- STANDARD DROPDOWN ---- */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--dark-3);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  padding: 8px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 300;
}
.nav-item:hover > .dropdown,
.nav-item.open > .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
/* Dropdown links — <a class="dd-link"> */
.dd-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}
.dd-link:hover { background: rgba(184,134,11,0.1); }
.dd-icon { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }
.dd-text { display: flex; flex-direction: column; }
.dd-title { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.dd-sub   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.dropdown-divider { height: 1px; background: var(--border-light); margin: 5px 0; }

/* ---- MEGA MENU PANEL ---- */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(720px, 94vw);
  background: var(--dark-3);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(184,134,11,0.08);
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 300;
}
.nav-item:hover > .mega-menu,
.nav-item.open > .mega-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
/* Mega item = <a class="mega-item"> */
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.mega-item:hover {
  background: rgba(184,134,11,0.1);
  border-color: var(--border-light);
}
.mega-item-icon {
  width: 40px; height: 40px;
  background: rgba(184,134,11,0.15);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.mega-item:hover .mega-item-icon { background: rgba(184,134,11,0.28); }
.mega-item-body h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.mega-item-body p { font-size: 11px; color: var(--text-muted); margin: 0; line-height: 1.4; }
.mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.mega-footer-note { font-size: 12px; color: var(--text-muted); }
.mega-footer-note strong { color: var(--gold-2); }

/* ---- NAV ACTIONS (right side) ---- */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--gold-2);
  background: rgba(184,134,11,0.08);
  border: 1px solid var(--border-mid);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold-3);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   MOBILE DRAWER — zero bullets, full responsive
============================================= */
.mob-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 998;
  transition: opacity 0.3s;
}
.mob-overlay.open { display: block; }

.mob-drawer {
  position: fixed;
  top: 0; right: -310px;
  width: 290px;
  height: 100dvh;
  background: var(--dark-3);
  border-left: 1px solid var(--border-light);
  box-shadow: -10px 0 40px rgba(0,0,0,0.55);
  z-index: 999;
  padding: 72px 20px 36px;
  overflow-y: auto;
  transition: right 0.32s var(--ease);
}
.mob-drawer.open { right: 0; }

.mob-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 20px;
  color: var(--gold-3);
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* Mobile nav — <nav class="mob-nav"> with div/a children, NEVER ul/li */
.mob-nav { display: flex; flex-direction: column; gap: 0; }

.mob-item { border-bottom: 1px solid var(--border-light); }

.mob-link,
a.mob-link,
button.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 6px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-gold);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mob-link:hover { color: var(--gold-3); }
.mob-toggle { /* button that opens submenu */ }
.mob-arrow {
  font-size: 9px;
  transition: transform 0.25s;
  opacity: 0.5;
}
.mob-item.open > .mob-toggle .mob-arrow { transform: rotate(180deg); opacity: 1; }

.mob-submenu {
  display: none;
  padding: 0 0 12px 12px;
}
.mob-item.open > .mob-submenu { display: block; }

.mob-sub-link {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid var(--border-mid);
  margin-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.mob-sub-link:hover { color: var(--gold-3); border-left-color: var(--gold-1); }

.mob-cta { margin-top: 24px; }

/* =============================================
   HERO SLIDER
============================================= */
#hero {
  position: relative;
  margin-top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  min-height: 560px;
  overflow: hidden;
  background: var(--dark-2);
}
.slider-track { display: flex; height: 100%; transition: transform 0.85s cubic-bezier(0.45,0,0.55,1); }
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
/* Slide background image */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-3);
  transform: scale(1.06);
  transition: transform 7s linear;
}
.slide.active .slide-bg { transform: scale(1); }
/* Warm cream overlay on images */
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,253,245,0.88) 0%,
    rgba(255,248,231,0.6) 50%,
    rgba(255,248,231,0.2) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 0 60px;
}
.slide-content .section-label { margin-bottom: 14px; }
.slide-content h1 { color: var(--text-primary); margin-bottom: 18px; }
.slide-content p { font-size: 17px; color: var(--text-muted); max-width: 480px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider UI */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gold-1);
  box-shadow: var(--shadow-md);
  transition: all 0.25s;
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover { background: var(--gold-1); color: #fff; transform: translateY(-50%) scale(1.08); }
.slider-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,134,11,0.25);
  border: 1.5px solid rgba(184,134,11,0.4);
  transition: all 0.3s;
}
.slider-dot.active { background: var(--gold-1); width: 24px; border-radius: 4px; }
/* Hero bottom ticker strip */
.hero-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: var(--gold-1);
  padding: 10px 0;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.strip-item { font-size: 12px; font-family: var(--font-mono); color: rgba(255,255,255,0.9); display: flex; gap: 8px; }
.strip-item span { color: #fff; font-weight: 600; }
/* Slide number indicator */
.slide-counter {
  position: absolute;
  bottom: 60px; right: 36px;
  z-index: 10;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.slide-counter em { font-style: normal; color: var(--gold-1); font-size: 18px; font-family: var(--font-display); font-weight: 700; }

/* =============================================
   STATS RIBBON
============================================= */
#stats-ribbon {
  background: var(--charcoal);
  padding: 0;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(184,134,11,0.08); }
.stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--gold-1);
  transition: width 0.5s var(--ease);
}
.stat-cell:hover::after { width: 100%; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-3);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-mono); }

/* =============================================
   PRODUCTS
============================================= */
#products { background: var(--dark-1); }
.section-head { margin-bottom: 56px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--gold-1); }
.product-thumb {
  height: 170px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}
.product-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(184,134,11,0.08), transparent 70%);
}
.prod-icon { position: relative; z-index: 1; transition: transform 0.4s; }
.product-card:hover .prod-icon { transform: scale(1.12) rotate(-5deg); }
.product-body { padding: 22px; }
.prod-tag {
  display: inline-block;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--gold-1);
  background: rgba(184,134,11,0.12);
  border: 1px solid var(--border-mid);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.product-body h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--text-primary); }
.product-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.prod-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.prod-spec { font-size: 11px; font-family: var(--font-mono); color: var(--text-muted); }
.prod-spec strong { color: var(--text-primary); }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-family: var(--font-mono); font-size: 13px; color: var(--gold-1); font-weight: 600; }

/* =============================================
   WHY US
============================================= */
#why-us { background: var(--dark-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-side {
  position: relative;
  height: 520px;
}
.why-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--warm-white);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.why-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 52%;
  background: var(--gold-1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--warm-white);
  box-shadow: var(--shadow-md);
}
.why-accent-stat { text-align: center; color: #fff; }
.why-accent-stat .num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; display: block; line-height: 1; }
.why-accent-stat .lbl { font-size: 12px; opacity: 0.85; letter-spacing: 1px; text-transform: uppercase; font-family: var(--font-mono); }
.cert-strip {
  position: absolute;
  bottom: 52%;
  right: -12px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.cert-strip-icon { font-size: 22px; }
.cert-strip-text { font-size: 12px; }
.cert-strip-text strong { display: block; font-size: 13px; color: var(--text-primary); font-family: var(--font-body); }
.cert-strip-text span { color: var(--text-muted); }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-feat {
  display: flex; gap: 18px;
  padding: 18px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.25s;
}
.why-feat:hover { border-color: var(--gold-1); box-shadow: var(--shadow-sm); }
.feat-icon {
  width: 48px; height: 48px;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.25s;
}
.why-feat:hover .feat-icon { background: var(--gold-4); }
.feat-body h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.feat-body p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* =============================================
   PROCESS
============================================= */
#process { background: var(--charcoal); }
#process .section-label { color: var(--gold-3); }
#process h2 { color: var(--cream-1); }
#process p { color: rgba(255,248,231,0.6); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 60px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.4), rgba(184,134,11,0.4), transparent);
}
.step { padding: 0 20px; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--gold-1);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  transition: all 0.3s;
  box-shadow: 0 0 0 6px rgba(184,134,11,0.12);
}
.step:hover .step-num { transform: scale(1.12); box-shadow: 0 0 0 10px rgba(184,134,11,0.18); }
.step h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--cream-2); margin-bottom: 8px; }
.step p { font-size: 13px; color: rgba(255,248,231,0.5); line-height: 1.6; }

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials { background: var(--dark-1); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 56px; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 30px;
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-2); transform: translateY(-3px); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--gold-4);
  line-height: 0.8;
  margin-bottom: 16px;
}
.testi-stars { color: var(--gold-1); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.author-loc { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }

/* =============================================
   CONTACT
============================================= */
#contact { background: var(--dark-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; margin-top: 60px; align-items: start; }
.contact-side h3 { font-size: 2rem; margin-bottom: 14px; }
.contact-side > p { font-size: 15px; margin-bottom: 36px; }
.c-details { display: flex; flex-direction: column; gap: 18px; }
.c-detail { display: flex; gap: 14px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--border-mid);
}
.c-info h5 { font-family: var(--font-body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 3px; }
.c-info p { font-size: 14px; color: var(--text-gold); margin: 0; font-weight: 500; }
.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { margin-bottom: 18px; }
.fgroup label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 7px; font-family: var(--font-mono); }
.fgroup input, .fgroup select, .fgroup textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-1);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--text-gold);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.25s;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  outline: none;
  border-color: var(--gold-1);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}
.fgroup textarea { height: 100px; resize: vertical; }
.fgroup select { appearance: none; }
.form-msg { display: none; padding: 12px 16px; border-radius: var(--radius); font-size: 13px; margin-bottom: 14px; }
.form-ok { background: #EAF3DE; color: #27500A; border: 1px solid #C0DD97; }
.form-err { background: #FCEBEB; color: #791F1F; border: 1px solid #F09595; }
.form-submit { width: 100%; padding: 14px; font-size: 15px; }

/* =============================================
   FOOTER
============================================= */
#site-footer { background: var(--charcoal); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold-3); margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 240px; line-height: 1.7; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.f-badge { font-size: 10px; font-family: var(--font-mono); color: rgba(184,134,11,0.8); border: 1px solid rgba(184,134,11,0.25); padding: 4px 10px; border-radius: 3px; letter-spacing: 1px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-3); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: var(--gold-3); }

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal { transform: translateY(36px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.in, .reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* =============================================
   ACCESSIBILITY
============================================= */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--gold-1); outline-offset: 2px; border-radius: 3px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-img-side { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .mega-menu { width: min(560px, 92vw); }
  .mega-menu-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* Hide desktop nav and phone number, show hamburger */
  .main-nav { display: none !important; }
  .nav-phone { display: none; }
  .nav-quote-btn { display: none; }
  .hamburger { display: flex !important; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .slide-content { padding: 0 20px; }
  .hero-strip { flex-wrap: wrap; gap: 14px; padding: 8px 16px; }
  .testi-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .nav-inner { padding: 0 16px; }
  .hero-strip { display: none; }
}

/* =============================================
   DARK THEME OVERRIDES — section backgrounds
============================================= */
.section-alt { background: var(--dark-2) !important; }
.section-gold { background: var(--dark-3) !important; }

/* Product cards — dark surface */
.product-card {
  background: var(--surface) !important;
  border-color: var(--border-light) !important;
}
.product-card:hover { border-color: var(--gold-1) !important; }
.product-thumb { background: var(--surface-2) !important; }
.product-body h3 { color: var(--text-primary) !important; }
.product-body p { color: var(--text-muted) !important; }
.prod-tag { color: var(--gold-2) !important; background: rgba(184,134,11,0.12) !important; border-color: var(--border-mid) !important; }
.prod-spec { color: var(--text-muted) !important; }
.prod-spec strong { color: var(--text-primary) !important; }
.prod-price { color: var(--gold-3) !important; }

/* Why-us cards */
.why-feat { background: var(--surface) !important; border-color: var(--border-light) !important; }
.why-feat:hover { border-color: var(--gold-1) !important; }
.feat-icon { background: var(--surface-2) !important; }
.feat-body h4 { color: var(--text-primary) !important; }
.feat-body p { color: var(--text-muted) !important; }
.why-img-main { background: var(--surface-2) !important; }
.cert-strip { background: var(--surface) !important; border-color: var(--border-mid) !important; }
.cert-strip-text strong { color: var(--text-primary) !important; }
.cert-strip-text span { color: var(--text-muted) !important; }

/* Testimonial cards */
.testi-card { background: var(--surface) !important; border-color: var(--border-light) !important; }
.testi-card:hover { border-color: var(--gold-2) !important; }
.testi-quote { color: rgba(184,134,11,0.2) !important; }
.testi-text { color: var(--text-muted) !important; }
.author-name { color: var(--text-primary) !important; }
.author-av { background: var(--gold-1) !important; }

/* Contact section */
#contact { background: var(--dark-3) !important; }
.contact-form-box { background: var(--surface) !important; border-color: var(--border-light) !important; }
.fgroup input, .fgroup select, .fgroup textarea {
  background: var(--dark-2) !important;
  border-color: var(--border-light) !important;
  color: var(--text-primary) !important;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus {
  border-color: var(--gold-1) !important;
  background: var(--dark-3) !important;
}
.fgroup input::placeholder, .fgroup textarea::placeholder { color: rgba(154,134,96,0.5) !important; }
.fgroup label { color: var(--text-muted) !important; }
.c-icon { background: var(--surface-2) !important; border-color: var(--border-mid) !important; }
.c-info h5 { color: var(--text-muted) !important; }
.c-info p { color: var(--text-primary) !important; }
.contact-side h3 { color: var(--text-primary) !important; }
.contact-side > p { color: var(--text-muted) !important; }

/* Hero overlay — warm dark not cream */
.slide::after {
  background: linear-gradient(
    to right,
    rgba(10,7,0,0.75) 0%,
    rgba(10,7,0,0.45) 55%,
    rgba(10,7,0,0.1) 100%
  ) !important;
}
.slide-content h1 { color: var(--gold-3) !important; }
.slide-content p { color: rgba(254,248,228,0.8) !important; }

/* Slider arrows */
.slider-prev, .slider-next {
  background: rgba(26,18,8,0.7) !important;
  border-color: var(--border-mid) !important;
  color: var(--gold-3) !important;
}
.slider-prev:hover, .slider-next:hover { background: var(--gold-1) !important; color: #fff !important; }

/* Wp page content area */
.wp-page-content h1, .wp-page-content h2, .wp-page-content h3,
.wp-page-content h4 { color: var(--text-primary); margin-bottom: 12px; }
.wp-page-content p { color: var(--text-muted); }
.wp-page-content a { color: var(--gold-2); }
.wp-page-content a:hover { color: var(--gold-3); }
.wp-page-content img { border-radius: var(--radius-lg); margin: 16px 0; }
.wp-page-content ul, .wp-page-content ol { padding-left: 20px; color: var(--text-muted); }
.wp-page-content ul li { list-style: disc; margin-bottom: 6px; }
.wp-page-content ol li { list-style: decimal; margin-bottom: 6px; }

/* Homepage extra block */
#homepage-block .reveal-left h2 { color: var(--text-primary); }

/* Process — already dark bg so just text */
#process h4 { color: var(--gold-3) !important; }

/* Form messages */
.form-ok { background: rgba(76,175,80,0.1) !important; color: #81C784 !important; border-color: rgba(76,175,80,0.3) !important; }
.form-err { background: rgba(244,67,54,0.1) !important; color: #EF9A9A !important; border-color: rgba(244,67,54,0.3) !important; }

/* Mobile menu dark */
.mobile-menu { background: var(--dark-3) !important; }
