/*
Theme Name:   Shivalay Child
Template:     twentytwentyfour
Description:  Child theme for Shivalay Wholesale website
Version:      2.0
*/

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #2D3748;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── CSS VARIABLES ────────────────────────────── */
:root {
  --navy:        #0F2137;
  --navy-light:  #1A3350;
  --gold:        #E8952A;
  --gold-light:  #F5A623;
  --teal:        #00957F;
  --light:       #F4F7FB;
  --border:      #E2E8F0;
  --text:        #2D3748;
  --muted:       #718096;
  --white:       #ffffff;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(15,33,55,0.08);
  --shadow:      0 8px 32px rgba(15,33,55,0.12);
  --shadow-lg:   0 16px 56px rgba(15,33,55,0.18);
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── UTILITY ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }
.btn-primary  { background: var(--gold); color: var(--navy); border-color: var(--gold); box-shadow: 0 4px 16px rgba(232,149,42,0.3); }
.btn-primary:hover  { background: #d4841e; border-color: #d4841e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,149,42,0.4); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover  { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover     { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost    { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover    { border-color: var(--navy); transform: translateY(-2px); }

/* ─── TAG / BADGE ──────────────────────────────── */
.tag {
  display: inline-block;
  background: rgba(232,149,42,0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(232,149,42,0.2);
}

/* ─── GRIDS ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ─── NAVBAR ───────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,33,55,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 60%, #0d2640 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,149,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,149,127,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,149,42,0.4), transparent);
}
.hero-content { max-width: 620px; position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 500px; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; }

/* ─── TRUST BAR ────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.trust-item:first-child { border-left: 1px solid var(--border); }
.trust-item:hover { background: var(--light); }
.trust-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ─── SECTION HEADINGS ─────────────────────────── */
.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 14px; letter-spacing: -0.02em; }
.section-head p { color: var(--muted); max-width: 520px; font-size: 1rem; line-height: 1.75; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* ─── WHY CHOOSE US ────────────────────────────── */
.why { background: var(--light); }
.why-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 18px; letter-spacing: -0.02em; }
.why-text p { color: var(--text); margin-bottom: 32px; font-size: 0.98rem; line-height: 1.8; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--transition);
}
.benefit-list li:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); border-color: rgba(232,149,42,0.3); }
.benefit-list .bl-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(232,149,42,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-list .bl-icon i { color: var(--gold); font-size: 0.95rem; }
.benefit-list strong { display: block; color: var(--navy); margin-bottom: 2px; font-size: 0.95rem; }
.benefit-list span { color: var(--muted); font-size: 0.85rem; }

/* ─── HOW IT WORKS ─────────────────────────────── */
.how-it-works { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
  box-shadow: 0 0 0 6px rgba(232,149,42,0.1);
}
.step:hover .step-num { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(232,149,42,0.15); }
.step h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── CTA BAND ─────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(232,149,42,0.1) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-band p  { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── ABOUT PAGE ───────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 100px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(232,149,42,0.07) 0%, transparent 60%);
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 22px; letter-spacing: -0.02em; }
.about-hero h1 span { color: var(--gold); }
.about-hero p  { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.8; max-width: 520px; }
.about-hero p + p { margin-top: 16px; }

.mission-block {
  background: var(--gold);
  padding: 64px 0;
  text-align: center;
}
.mission-block blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--navy);
  font-style: italic;
  font-weight: 700;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.mission-label { margin-bottom: 20px; }
.mission-label .tag { background: rgba(15,33,55,0.12); color: var(--navy); border-color: rgba(15,33,55,0.15); }

.story-section { background: var(--white); }
.story-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.story-row:last-child { margin-bottom: 0; }
.story-row.reverse .story-text { order: 2; }
.story-row.reverse .story-vis  { order: 1; }

/* Decorative visual block instead of photo placeholder */
.story-vis {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  justify-content: center;
}
.story-vis-stat {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
}
.story-vis-stat i { color: var(--gold); font-size: 1.2rem; width: 24px; text-align: center; flex-shrink: 0; }
.story-vis-stat span { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }

.story-text h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.01em; }
.story-text p  { color: var(--text); font-size: 0.97rem; line-height: 1.8; }
.story-text p + p { margin-top: 14px; }

.values-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.values-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--light);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.values-list li:hover { transform: translateX(4px); }
.values-list i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.values-list div strong { display: block; color: var(--navy); font-size: 0.92rem; margin-bottom: 2px; }
.values-list div span  { color: var(--muted); font-size: 0.83rem; }

.wholesale-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
}
.wholesale-box h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em; }
.wholesale-box p  { color: var(--muted); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }
.wholesale-box .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FAQ PAGE ─────────────────────────────────── */
.faq-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); padding: 80px 0; text-align: center; color: var(--white); }
.faq-hero h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 14px; letter-spacing: -0.02em; }
.faq-hero p  { color: rgba(255,255,255,0.72); font-size: 1rem; }

.faq-section { background: var(--white); padding: 80px 0; }
.faq-group   { margin-bottom: 48px; }
.faq-group-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.faq-group-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover { border-color: rgba(232,149,42,0.3); }
.faq-item.open  { border-color: var(--gold); box-shadow: 0 4px 16px rgba(232,149,42,0.1); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-weight: 600; font-size: 0.96rem; color: var(--navy);
  background: var(--white); transition: background 0.2s; gap: 16px;
  user-select: none;
}
.faq-q:hover { background: var(--light); }
.faq-item.open .faq-q { background: rgba(232,149,42,0.04); }
.faq-q .faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
  color: var(--navy);
}
.faq-item.open .faq-q .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 24px;
  font-size: 0.93rem; color: var(--text); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 400px; padding: 16px 24px 22px; }

/* ─── CONTACT PAGE ─────────────────────────────── */
.contact-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); padding: 80px 0; text-align: center; color: var(--white); }
.contact-hero h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 14px; letter-spacing: -0.02em; }
.contact-hero p  { color: rgba(255,255,255,0.72); }

.contact-section { background: var(--white); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start; }

.contact-form-wrap h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.01em; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem; color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,149,42,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bac9; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }

.form-success {
  display: none;
  background: rgba(0,149,127,0.08);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--teal);
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

.contact-info-wrap h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.01em; }
.info-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: rgba(232,149,42,0.25); }
.info-card .ic-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-card .ic-icon i { color: var(--gold); font-size: 1rem; }
.info-card h4 { font-size: 0.88rem; color: var(--navy); margin-bottom: 5px; font-weight: 700; }
.info-card p  { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ─── FOOTER ───────────────────────────────────── */
footer {
  background: #080f1a;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.25rem; margin-bottom: 14px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 240px; }
.footer-col h4 {
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: var(--transition);
}
.social-row a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 0.8rem; color: rgba(255,255,255,0.32);
}
.footer-badges { display: flex; gap: 10px; }
.badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 5px 12px;
  font-size: 0.74rem; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 6px;
}
.badge i { color: var(--gold); }

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 960px) {
  .grid-2, .story-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-row.reverse .story-text { order: unset; }
  .story-row.reverse .story-vis  { order: unset; }
  .trust-inner { flex-wrap: wrap; }
  .trust-item { border: none; border-bottom: 1px solid var(--border); flex: 1 1 45%; justify-content: center; }
  .trust-item:first-child { border-left: none; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px 28px; gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .trust-item { flex: 1 1 100%; }
  .wholesale-box { padding: 36px 24px; }
  .hero { padding: 72px 0 60px; min-height: auto; }
}

/* ─── LEGAL PAGES (T&C / Privacy) ──────────────── */
.legal-body { padding: 8px 0 48px; }
.legal-updated {
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 36px;
  padding: 10px 16px;
  background: var(--light);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.legal-body h2 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-body p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-body ul {
  margin: 10px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-body ul li {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-body a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body a:hover { color: var(--navy); }

/* ─── CONTACT FORM CENTRED ──────────────────────── */
.contact-form-wrap { max-width: 100%; }
