/* ============================================================
   Thaska Dhoop Cones — Premium Dhoop Cone Manufacturer
   Main Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #c8a26b;
  --gold-light: #e0c07a;
  --gold-dark: #8b5e2e;
  --amber: #d4872a;
  --cream: #faf8f3;
  --warm-white: #fff9f0;
  --dark: #1a1208;
  --dark-2: #2c2010;
  --dark-3: #3d2d14;
  --text: #3d2d14;
  --text-light: #6b5a3e;
  --text-muted: #9a8572;
  --border: rgba(200,162,107,0.2);
  --border-strong: rgba(200,162,107,0.4);
  --shadow: 0 20px 60px rgba(139,94,46,0.15);
  --shadow-lg: 0 40px 80px rgba(139,94,46,0.2);
  --gradient-gold: linear-gradient(135deg, #e0c07a 0%, #c8a26b 50%, #8b5e2e 100%);
  --gradient-dark: linear-gradient(135deg, #1a1208 0%, #2c2010 100%);
  --gradient-hero: linear-gradient(135deg, #0d0905 0%, #1f140a 40%, #2d1f10 70%, #1a1208 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Global scroll offset for fixed navbar */
section[id] {
  scroll-margin-top: 80px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
html, body {
    overflow-x: hidden;
}
section {
    overflow-x: hidden;
}
.row {
    flex-wrap: wrap;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Particles Canvas ---- */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#preloader.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}
.preloader-inner { text-align: center; }
.preloader-cone {
  width: 80px;
  margin: 0 auto 16px;
  animation: preloaderPulse 2s ease-in-out infinite;
  position: relative;
}
.preloader-cone svg { filter: drop-shadow(0 0 20px rgba(200,162,107,0.6)); }
.cone-glow {
  position: absolute;
  bottom: -10px;
  left: 50%; transform: translateX(-50%);
  width: 60px; height: 12px;
  background: radial-gradient(ellipse, rgba(200,162,107,0.5), transparent 70%);
  border-radius: 50%;
  animation: preloaderPulse 2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-8px) scale(1.05); opacity: 0.8; }
}
.incense-smoke {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 4px;
  height: 50px;
}
.smoke-particle {
  width: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: smokePulse 2s ease-in-out infinite;
}
.smoke-particle.s1 { height: 40px; animation-delay: 0s; }
.smoke-particle.s2 { height: 30px; animation-delay: 0.3s; }
.smoke-particle.s3 { height: 45px; animation-delay: 0.6s; }
@keyframes smokePulse {
  0%, 100% { opacity: 0; transform: translateY(10px) scaleY(0.5); }
  50% { opacity: 1; transform: translateY(0) scaleY(1); }
}
.preloader-text {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
}
.preloader-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(26, 18, 8, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links li a:hover {
  color: var(--gold-light);
}
.nav-links li a:hover::after { transform: scaleX(1); }
.nav-cta {
  flex-shrink: 0;
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,162,107,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,162,107,0.5);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   NEW HERO SECTION — Cinematic Split Layout
   ================================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #08050200;
}

/* --- Layered background --- */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-img {
    background-image: url('dhoop-cones.jpg');
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.06);
    transition: transform 20s ease;
    z-index: 0;
}
.hero-bg-img.loaded { transform: scale(1.0); }
.hero-bg-gradient {
  background: linear-gradient(
    110deg,
    rgba(8,5,2,0.97) 0%,
    rgba(15,9,3,0.93) 40%,
    rgba(22,14,6,0.82) 65%,
    rgba(8,5,2,0.72) 100%
  );
  z-index: 1;
}
.hero-bg-vignette {
  background: radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}

/* --- Animated rings --- */
.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,162,107,0.08);
  animation: ringPulse 6s ease-in-out infinite;
}
.r1 { width: 500px; height: 500px; animation-delay: 0s; }
.r2 { width: 700px; height: 700px; animation-delay: 1.5s; border-color: rgba(200,162,107,0.05); }
.r3 { width: 900px; height: 900px; animation-delay: 3s; border-color: rgba(200,162,107,0.03); }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.5; }
}

/* --- Ember canvas --- */
.hero-embers-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* --- Side panels --- */
.hero-side-left, .hero-side-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
}
.hero-side-left { left: 0; }
.hero-side-right { right: 0; }
.hero-vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(200,162,107,0.35);
  font-size: 0.68rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 16px;
}
.hero-social-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px;
}
.hero-social-strip a {
  width: 34px; height: 34px;
  border: 1px solid rgba(200,162,107,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200,162,107,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.hero-social-strip a:hover {
  background: rgba(200,162,107,0.1);
  color: var(--gold);
  border-color: var(--gold);
}

/* --- Hero body: split two-column --- */
.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 5rem 60px;
}

/* --- Text column --- */
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  animation: heroTextReveal 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.3s both;
}
@keyframes heroTextReveal {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,162,107,0.1);
  border: 1px solid rgba(200,162,107,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgeDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes badgeDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,162,107,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(200,162,107,0); }
}
.hero-badge span {
  color: rgba(200,162,107,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.badge-sep { opacity: 0.4; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ht-line {
  display: block;
  overflow: hidden;
}
.ht-l1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;
  animation: lineSlideUp 0.8s ease 0.5s both;
}
.ht-l2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  animation: lineSlideUp 0.8s ease 0.65s both;
}
.ht-l3 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  animation: lineSlideUp 0.8s ease 0.8s both;
}
@keyframes lineSlideUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ht-typed-wrap {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.typed-cursor {
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
  animation: cursorBlink 0.9s step-end infinite;
  font-weight: 300;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtitle {
  color: rgba(255,255,255,0.62);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.85;
  max-width: 520px;
  animation: heroTextReveal 0.9s ease 1s both;
}
.hero-subtitle strong { color: rgba(200,162,107,0.9); font-weight: 600; }

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: heroTextReveal 0.9s ease 1.1s both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(200,162,107,0.35);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(200,162,107,0.5);
}
.btn-icon {
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.btn-arrow {
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.btn-hero-primary:hover .btn-arrow { transform: translateX(3px); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(200,162,107,0.45);
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.btn-hero-outline:hover {
  background: rgba(200,162,107,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,162,107,0.15);
}

/* Trust bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,162,107,0.15);
  border-radius: 14px;
  padding: 14px 20px;
  width: fit-content;
  animation: heroTextReveal 0.9s ease 1.2s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: 0.85rem; }
.trust-sep {
  width: 1px; height: 20px;
  background: rgba(200,162,107,0.2);
  flex-shrink: 0;
}

/* --- Visual column / Cone scene --- */
.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroVisualReveal 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.5s both;
}
@keyframes heroVisualReveal {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* ---- Hero Photo Scene (replaces SVG cone) ---- */
.hero-photo-scene {
  position: relative;
  width: 420px;
  height: 520px;
}
.hero-photo-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,107,0.22) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: photoGlowPulse 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes photoGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}
.hero-photo-frame {
  position: absolute;
  top: 20px; left: 20px;
  width: 320px; height: 400px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(200,162,107,0.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(200,162,107,0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  z-index: 2;
  animation: heroPhotoFloat 6s ease-in-out infinite;
}
@keyframes heroPhotoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hero-product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}
.hero-photo-frame:hover .hero-product-img { transform: scale(1.06); }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(8,5,2,0.45) 100%
  );
}
/* Floating badges on photo */
.hero-photo-badge {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  background: rgba(26,18,8,0.85);
  border: 1px solid rgba(200,162,107,0.4);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 7px 18px;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
  font-size: 0.75rem; font-weight: 600; color: #fff;
  z-index: 4;
}
.hero-photo-badge i { color: var(--gold); }
.hpb-top { top: 14px; }
.hpb-bottom { bottom: 14px; }

/* Thumbnail photo */
.hero-photo-thumb {
  position: absolute;
  bottom: 30px; right: 0;
  width: 160px; height: 130px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(200,162,107,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 3;
  animation: heroThumbFloat 5s ease-in-out 1s infinite;
}
@keyframes heroThumbFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
}
.hero-photo-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,18,8,0.82);
  color: var(--gold);
  font-size: 0.68rem; font-weight: 700;
  text-align: center; padding: 6px;
  letter-spacing: 0.5px;
}
.hero-thumb-label i { margin-right: 4px; }

/* Smoke lines floating over photo */
.hero-photo-smoke { position: absolute; top: 10px; left: 50%; z-index: 5; pointer-events: none; }
.hps {
  display: block; position: absolute;
  width: 2px; border-radius: 4px;
  background: rgba(255,255,255,0.12);
  animation: hpsRise 3s ease-in-out infinite;
}
.hps1 { height: 40px; left: -10px; animation-delay: 0s; }
.hps2 { height: 28px; left:  5px; animation-delay: 0.7s; }
.hps3 { height: 50px; left: -22px; animation-delay: 1.4s; }
@keyframes hpsRise {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  50%  { opacity: 0.5; transform: translateY(-20px) scaleX(1.4); }
  100% { opacity: 0; transform: translateY(-50px) scaleX(2); }
}

/* ---- OLD CONE SCENE (kept for safety, hidden) ---- */
.hero-cone-scene {
  position: relative;
  width: 400px; height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Platform glow rings */
.cone-platform {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 30px;
}
.platform-glow {
  width: 200px; height: 30px;
  background: radial-gradient(ellipse, rgba(200,162,107,0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: platformGlow 3s ease-in-out infinite;
}
@keyframes platformGlow {
  0%, 100% { opacity: 0.5; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.1); }
}
.platform-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(200,162,107,0.25);
  animation: platformRingExpand 3s ease-out infinite;
}
.pr1 { width: 100px; height: 20px; animation-delay: 0s; }
.pr2 { width: 160px; height: 30px; animation-delay: 0.8s; border-color: rgba(200,162,107,0.15); }
.pr3 { width: 220px; height: 40px; animation-delay: 1.6s; border-color: rgba(200,162,107,0.08); }
@keyframes platformRingExpand {
  0% { opacity: 1; transform: translate(-50%,-50%) scale(0.8); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.4); }
}

/* Main cone */
.hero-main-cone {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: coneBobble 5s ease-in-out infinite;
}
@keyframes coneBobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
.cone-hero-svg {
  width: 160px;
  filter: drop-shadow(0 20px 40px rgba(200,162,107,0.4))
          drop-shadow(0 0 60px rgba(200,162,107,0.15));
}

/* Smoke wisps */
.cone-smoke-wrap {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cone-smoke-svg {
  width: 80px; height: 160px;
}
.smoke-wisp {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: smokeDraw 4s ease-in-out infinite;
}
.sw1 { animation-delay: 0s; }
.sw2 { animation-delay: 0.6s; }
.sw3 { animation-delay: 1.2s; }
@keyframes smokeDraw {
  0%   { stroke-dashoffset: 300; opacity: 0; }
  20%  { opacity: 1; }
  80%  { stroke-dashoffset: 0; opacity: 0.6; }
  100% { stroke-dashoffset: -50; opacity: 0; }
}

/* Ember sparks */
.cone-tip-sparks {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.spark {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: sparkFly 2.5s ease-out infinite;
}
.sp1 { animation-delay: 0s; --sx: -18px; --sy: -28px; }
.sp2 { animation-delay: 0.4s; --sx: 20px; --sy: -22px; }
.sp3 { animation-delay: 0.8s; --sx: -10px; --sy: -35px; }
.sp4 { animation-delay: 1.2s; --sx: 14px; --sy: -30px; }
.sp5 { animation-delay: 1.6s; --sx: -22px; --sy: -18px; }
@keyframes sparkFly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  60%  { opacity: 0.8; }
  100% { transform: translate(var(--sx), var(--sy)) scale(0); opacity: 0; }
}

/* Fragrance orbit labels */
.fragrance-orbit {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.fragrance-orbit span {
  background: rgba(200,162,107,0.1);
  border: 1px solid rgba(200,162,107,0.3);
  color: rgba(200,162,107,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.fo1 { top: 18%; left: 0; animation: orbitFloat 5s ease-in-out infinite 0s; }
.fo2 { top: 35%; right: -10px; animation: orbitFloat 5s ease-in-out infinite 1s; }
.fo3 { bottom: 25%; left: 5px; animation: orbitFloat 5s ease-in-out infinite 2s; }
.fo4 { bottom: 40%; right: 5px; animation: orbitFloat 5s ease-in-out infinite 3s; }
@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.7; }
  50% { transform: translateY(-8px) translateX(4px); opacity: 1; }
}

/* --- Stats ribbon (bottom bar) --- */
.hero-stats-ribbon {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(200,162,107,0.15);
  backdrop-filter: blur(20px);
  padding: 20px 4rem;
  animation: heroTextReveal 1s ease 1.4s both;
}
.hsr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2.5rem;
}
.hsr-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hsr-unit {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hsr-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hsr-div {
  width: 1px; height: 40px;
  background: rgba(200,162,107,0.2);
  flex-shrink: 0;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 7.5rem;
  left: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLineGrow 2s ease-in-out infinite;
}
@keyframes scrollLineGrow {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}
.hero-scroll-cue span {
  color: rgba(200,162,107,0.5);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* keep old scroll-mouse (used elsewhere?) hidden */
.hero-scroll-indicator { display: none; }
/* keep old stat-num, stat-unit, stat-divider for other usage */
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-unit {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* ================================================================
   NEW LEGACY / ABOUT SECTION
   ================================================================ */

.legacy-section {
  padding: 110px 0 80px;
  background: var(--dark);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* decorative bg */
.legacy-bg-decor { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.lbg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,162,107,0.06);
}
.lc1 { width: 600px; height: 600px; top: -150px; right: -150px; }
.lc2 { width: 800px; height: 800px; bottom: -300px; left: -200px; }
.lbg-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(200,162,107,0.08), transparent);
  height: 1px;
  width: 80%;
  left: 10%;
}
.ll1 { top: 35%; }
.ll2 { top: 65%; }

/* Invert title/desc color for dark bg */
.legacy-section .section-title { color: #fff; }
.legacy-title { line-height: 1.15 !important; }

.legacy-header { margin-bottom: 3.5rem; }
.legacy-section .section-desc { color: rgba(255,255,255,0.55); }
.legacy-header-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Main 2-column grid --- */
.legacy-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}

/* --- Image block --- */
.legacy-img-block {
  position: relative;
  padding-bottom: 60px;
}
.limg-primary {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.limg-primary img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.limg-primary:hover img { transform: scale(1.04); }
.limg-primary-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.limg-primary:hover .limg-primary-overlay { background: rgba(200,162,107,0.12); }
.limg-play-icon {
  width: 64px; height: 64px;
  background: rgba(200,162,107,0.15);
  border: 2px solid rgba(200,162,107,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  padding-left: 4px;
}
.limg-primary:hover .limg-play-icon { opacity: 1; transform: scale(1); }

.limg-secondary {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.limg-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* Floating est. card */
.limg-est-card {
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: 5;
}
.est-card-inner {
  background: var(--gradient-gold);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 10px 40px rgba(200,162,107,0.4);
  min-width: 100px;
}
.est-flame {
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
  animation: flameBob 2s ease-in-out infinite;
}
@keyframes flameBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.1); }
}
.est-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.est-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26,18,8,0.7);
}

/* Floating rating card */
.limg-rating-card {
  position: absolute;
  bottom: 55px;
  left: -30px;
  background: rgba(26,18,8,0.95);
  border: 1px solid rgba(200,162,107,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 5;
}
.rating-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.rating-text {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.rating-sub {
  color: rgba(200,162,107,0.7);
  font-size: 0.75rem;
}

/* Gold accent bars */
.limg-gold-bar {
  position: absolute;
  border-radius: 4px;
  background: var(--gradient-gold);
  opacity: 0.7;
}
.lb1 { width: 4px; height: 80px; top: 30%; right: -12px; }
.lb2 { width: 60px; height: 3px; bottom: 45px; right: 10px; }

/* --- Story block --- */
.legacy-story-block { display: flex; flex-direction: column; gap: 1.5rem; }

.legacy-intro-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(200,162,107,0.85);
  line-height: 1.7;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,162,107,0.06);
  border-radius: 0 10px 10px 0;
}
.legacy-intro-quote i { margin-right: 8px; opacity: 0.5; }

.legacy-body-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.98rem;
  line-height: 1.9;
}
.legacy-body-text strong { color: rgba(200,162,107,0.9); font-weight: 600; }

/* Timeline */
.legacy-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(200,162,107,0.2);
  position: relative;
}
.lt-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 0 1.8rem 1.2rem;
  position: relative;
}
.lt-item:last-child { padding-bottom: 0; }
.lt-dot {
  position: absolute;
  left: -1.55rem;
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(200,162,107,0.3);
  border: 2px solid rgba(200,162,107,0.5);
  flex-shrink: 0;
  transition: all 0.3s;
}
.lt-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,162,107,0.15);
}
.lt-item:hover .lt-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,162,107,0.15);
}
.lt-content { display: flex; flex-direction: column; gap: 3px; }
.lt-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.lt-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.lt-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* --- Pillars row (bottom) --- */
.legacy-pillars-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(200,162,107,0.12);
  padding-top: 3rem;
}
.lp-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1.4rem;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(200,162,107,0.1);
  transition: var(--transition);
}
.lp-card:hover {
  background: rgba(200,162,107,0.07);
  border-color: rgba(200,162,107,0.3);
  transform: translateY(-4px);
}
.lp-icon-wrap {
  position: relative;
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-icon-wrap i {
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.lp-icon-ring {
  position: absolute;
  inset: 0;
  background: rgba(200,162,107,0.1);
  border-radius: 12px;
  transition: var(--transition);
}
.lp-card:hover .lp-icon-ring { background: rgba(200,162,107,0.2); }
.lp-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.lp-body p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ================================================================
   NEW LEGACY BLOCKS GRID (4 cards)
   ================================================================ */
.legacy-blocks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.lb-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,162,107,0.15);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  flex-direction: column;
}
.lb-block::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.lb-block:hover {
  background: rgba(200,162,107,0.06);
  border-color: rgba(200,162,107,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.lb-block:hover::before { transform: scaleX(1); }

.lb-icon-wrap {
  position: relative;
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.lb-icon-wrap i {
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.lb-icon-ring {
  position: absolute;
  inset: 0;
  background: rgba(200,162,107,0.1);
  border-radius: 16px;
  transition: var(--transition);
}
.lb-block:hover .lb-icon-ring { background: rgba(200,162,107,0.2); }

.lb-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.lb-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.8;
}
.lb-content strong { color: rgba(200,162,107,0.85); font-weight: 600; }

/* Stats row */
.legacy-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(200,162,107,0.06);
  border: 1px solid rgba(200,162,107,0.18);
  border-radius: 20px;
  padding: 2rem 3rem;
}
.lsr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  text-align: center;
}
.lsr-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}
.lsr-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.lsr-div {
  width: 1px;
  height: 50px;
  background: rgba(200,162,107,0.2);
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .legacy-blocks-grid { grid-template-columns: repeat(2, 1fr); }
  .legacy-stats-row { gap: 1rem; }
  .lsr-item { padding: 0.5rem 1.5rem; }
  .lsr-div { width: 50px; height: 1px; }
}
@media (max-width: 600px) {
  .legacy-blocks-grid { grid-template-columns: 1fr; }
  .lb-block { flex-direction: column; gap: 1rem; }
  .legacy-stats-row { flex-direction: column; gap: 1rem; }
  .lsr-div { display: none; }
}

/* ================================================================
   RESPONSIVE — Hero & Legacy
   ================================================================ */

@media (max-width: 1100px) {
  .hero-body { padding: 120px 3rem 60px; gap: 1.5rem; }
  .hero-photo-scene { width: 340px; height: 420px; }
  .hero-photo-frame { width: 260px; height: 320px; }
  .hero-photo-thumb { width: 130px; height: 105px; }
  .legacy-pillars-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding: 110px 2rem 40px;
    text-align: center;
  }
  .hero-text-col { align-items: center; }
  .hero-badge, .hero-trust-bar { justify-content: center; }
  .hero-subtitle { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual-col { display: none; }
  .hero-side-left, .hero-side-right { display: none; }
  .hero-scroll-cue { display: none; }
  .hero-stats-ribbon { padding: 16px 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
  .hsr-item { padding: 0 1rem; }
  .hsr-div { display: none; }

  .legacy-main-grid { grid-template-columns: 1fr; gap: 3rem; }
  .limg-secondary { right: 0; }
  .legacy-pillars-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-trust-bar { flex-wrap: wrap; gap: 0.5rem; width: 100%; justify-content: center; }
  .trust-sep { display: none; }
  .trust-item { padding: 0 8px; }
  .ht-l2 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-stats-ribbon { flex-direction: column; }
  .hsr-item { width: 100%; flex-direction: row; justify-content: center; gap: 0.5rem; }
  .legacy-pillars-row { grid-template-columns: 1fr; }
  .limg-est-card { top: -12px; left: -8px; }
  .limg-rating-card { display: none; }
}


/* ---- Marquee Strip ---- */
.marquee-strip {
  background: var(--dark-2);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Container ---- */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Section Common ---- */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.title-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.title-ornament.center { justify-content: center; }
.title-ornament span {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gradient-gold);
}
.title-ornament i { color: var(--gold); font-size: 1.1rem; }
.text-center { text-align: center; }
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(200,162,107,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(200,162,107,0.55);
}
.btn-primary.small { font-size: 0.9rem; padding: 10px 22px; }
.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(200,162,107,0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,162,107,0.2);
}


/* ============================================================
   WHY AROMAVEDA V2 — BENTO GRID
   ============================================================ */
/* ============================================================
   WHY THASKA — REDESIGNED SECTION
   ============================================================ */
.why-thaska-section {
  padding: 110px 0 90px;
  background: #0f0b06;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* BG decorative */
.wts-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.wts-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d0a06 0%, #1a1208 40%, #0f0b06 100%);
}
.wts-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.wts-orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #c8a26b, transparent 70%);
  top: -100px; right: -100px;
}
.wts-orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #8b5e2e, transparent 70%);
  bottom: -80px; left: -80px;
}
.wts-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,162,107,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,107,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Header */
.wts-header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.wts-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.wts-sub {
  color: rgba(255,255,255,0.55); font-size: 1.05rem;
  max-width: 640px; margin: 0 auto; line-height: 1.8;
}

/* USP Banner */
.wts-usp-banner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, rgba(200,162,107,0.14) 0%, rgba(139,94,46,0.08) 100%);
  border: 1px solid rgba(200,162,107,0.35);
  border-left: 5px solid var(--gold);
  border-radius: 20px;
  padding: 2.5rem 2.8rem;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
  box-shadow: 0 0 60px rgba(200,162,107,0.08);
}
.wts-usp-left { flex-shrink: 0; }
.wts-usp-icon {
  width: 70px; height: 70px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--dark);
  box-shadow: 0 8px 30px rgba(200,162,107,0.4);
  animation: pulseGold 2.5s infinite;
}
.wts-usp-center { flex: 1; }
.wts-usp-tag {
  display: inline-block;
  background: rgba(200,162,107,0.15);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(200,162,107,0.3);
}
.wts-usp-center h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800; color: #fff; margin-bottom: 0.8rem; line-height: 1.3;
}
.wts-usp-center h3 em { color: var(--gold); font-style: italic; }
.wts-usp-center p { color: rgba(255,255,255,0.65); font-size: 0.98rem; line-height: 1.8; }
.wts-usp-center strong { color: var(--gold-light); font-weight: 700; }
.wts-usp-right { flex-shrink: 0; }
.wts-usp-seal { text-align: center; }
.wts-seal-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1px;
  background: rgba(200,162,107,0.08);
  animation: pulseGold 3s infinite;
}
.wts-seal-top { font-size: 0.75rem; font-weight: 800; color: var(--gold); letter-spacing: 1px; }
.wts-seal-mid { font-size: 1.3rem; font-weight: 900; color: #fff; line-height: 1; }
.wts-seal-bot { font-size: 0.7rem; font-weight: 600; color: rgba(200,162,107,0.7); }

/* 6-Feature Grid */
.wts-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.wts-feat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,162,107,0.12);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}
.wts-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}
.wts-feat:hover {
  background: rgba(200,162,107,0.07);
  border-color: rgba(200,162,107,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.wts-feat:hover::before { transform: scaleX(1); }

.wts-feat-num {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  color: rgba(200,162,107,0.07);
  line-height: 1;
  pointer-events: none;
}
.wts-feat-icon {
  width: 52px; height: 52px;
  background: rgba(200,162,107,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.wts-feat:hover .wts-feat-icon {
  background: var(--gradient-gold);
  color: var(--dark);
}
.wts-feat h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 800;
  color: #fff; margin-bottom: 0.6rem; line-height: 1.3;
}
.wts-feat p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.75; }

/* Bottom Strip */
.wts-bottom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(200,162,107,0.07);
  border: 1px solid rgba(200,162,107,0.2);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  position: relative; z-index: 1;
}
.wts-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.wts-stat {
  display: flex; flex-direction: column;
  align-items: center; padding: 0 2rem;
}
.wts-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.1;
}
.wts-stat-label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; }
.wts-stat-sep { width: 1px; height: 40px; background: rgba(200,162,107,0.2); flex-shrink: 0; }
.wts-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.wts-outline-btn {
  background: transparent;
  border: 1px solid rgba(200,162,107,0.4);
  color: var(--gold);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.wts-outline-btn:hover {
  background: rgba(200,162,107,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .wts-features-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wts-usp-banner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .wts-usp-left, .wts-usp-right { margin: 0 auto; }
  .wts-features-row { grid-template-columns: 1fr; }
  .wts-bottom-strip { flex-direction: column; text-align: center; }
  .wts-stats { justify-content: center; }
  .wts-stat-sep { width: 40px; height: 1px; }
  .wts-cta-group { justify-content: center; }
}
@media (max-width: 480px) {
  .wts-stat { padding: 0 1rem; }
}

.why-section-v2 {
  padding: 110px 0;
  background: var(--dark);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.why2-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.why2-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544947950-fa07a98d237f?w=1800&q=30');
  background-size: cover; background-position: center;
  opacity: 0.04; filter: blur(2px);
}
.why2-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,0.97) 0%, rgba(44,32,16,0.92) 100%);
}
.why2-gold-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,107,0.12) 0%, transparent 70%);
}
.why2-gold-orb.orb1 { width: 500px; height: 500px; top: -100px; right: -80px; }
.why2-gold-orb.orb2 { width: 350px; height: 350px; bottom: -80px; left: -60px; }

.why2-head {
  text-align: center; margin-bottom: 3rem; position: relative; z-index: 1;
}
.why2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: #fff; line-height: 1.15;
  margin-bottom: 1rem;
}
.why2-sub {
  color: rgba(255,255,255,0.6); font-size: 1.05rem;
  max-width: 650px; margin: 0 auto; line-height: 1.8;
}
.light-eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block;
}

/* Stats bar */
.why2-stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; background: rgba(200,162,107,0.06);
  border: 1px solid rgba(200,162,107,0.2);
  border-radius: 20px; padding: 2rem 1rem; margin-bottom: 3.5rem;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.w2s-item {
  flex: 1; min-width: 130px; text-align: center; padding: 0.5rem 1.5rem;
}
.w2s-sep {
  width: 1px; height: 50px; background: rgba(200,162,107,0.25); flex-shrink: 0;
}
.w2s-icon { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.3rem; }
.w2s-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900;
  background: var(--gradient-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: inline;
}
.w2s-suffix { color: var(--gold); font-size: 1.1rem; font-weight: 700; }
.w2s-label { color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 1px; margin-top: 0.2rem; }

/* Bento grid */
.why2-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
  position: relative; z-index: 1;
}
.w2b-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,162,107,0.18);
  border-radius: 20px; padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.w2b-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,162,107,0.45);
  background: rgba(200,162,107,0.07);
}
.w2b-hero-card {
  grid-column: 1 / 2; grid-row: 1 / 3;
  padding: 0; overflow: hidden; border-radius: 20px;
  min-height: 380px;
}
.w2b-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s;
}
.w2b-hero-card:hover .w2b-card-bg { transform: scale(1.04); }
.w2b-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.95) 0%, rgba(26,18,8,0.55) 60%, transparent 100%);
}
.w2b-card-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%; padding: 2rem;
}
.w2b-icon-ring {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-gold); display: flex; align-items: center;
  justify-content: center; color: var(--dark); font-size: 1.3rem;
  margin-bottom: 1rem; box-shadow: 0 4px 20px rgba(200,162,107,0.3);
}
.w2b-icon-sm { width: 48px; height: 48px; font-size: 1.1rem; }
.w2b-card-body h3, .w2b-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 700; color: #fff; margin-bottom: 0.7rem;
}
.w2b-card-body p, .w2b-card p {
  color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7;
}
.w2b-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.w2b-tags span {
  background: rgba(200,162,107,0.18); border: 1px solid rgba(200,162,107,0.3);
  color: var(--gold-light); font-size: 0.7rem; padding: 3px 10px; border-radius: 20px; font-weight: 600;
}
.w2b-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent, #c8a26b); opacity: 0.6; border-radius: 0 0 20px 20px;
  background: var(--accent);
}
.w2b-wide-card { grid-column: 2 / 4; }
.w2b-feature-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem;
}
.w2b-feature-pills span {
  background: rgba(200,162,107,0.1); border: 1px solid rgba(200,162,107,0.25);
  color: rgba(255,255,255,0.75); font-size: 0.82rem; padding: 5px 14px;
  border-radius: 30px;
}
/* ---- Why Specialty Banner ---- */
.why2-specialty-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(200,162,107,0.12) 0%, rgba(200,162,107,0.04) 100%);
  border: 1px solid rgba(200,162,107,0.35);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin-bottom: 2.5rem;
}
.wsb-icon {
  position: relative;
  font-size: 2rem;
  color: #e74c3c;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wsb-no-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.6;
}
.wsb-text { flex: 1; }
.wsb-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.wsb-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.wsb-seal {
  flex-shrink: 0;
  text-align: center;
}
.wsb-seal-ring {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 0.4rem;
  animation: pulseGold 2.5s infinite;
}
.wsb-seal span {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold);
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,162,107,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(200,162,107,0); }
}

/* ---- No Frag wide card variant ---- */
.w2b-nofrag-card {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  padding: 2rem 2.5rem !important;
}
.w2b-nofrag-icon {
  font-size: 3rem;
  color: #e74c3c;
  flex-shrink: 0;
  opacity: 0.85;
}
.w2b-nofrag-body { flex: 1; }
.w2b-nofrag-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.w2b-nofrag-body p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }

@media (max-width: 768px) {
  .why2-specialty-banner { flex-direction: column; gap: 1rem; text-align: center; }
  .wsb-text h3 { font-size: 1.1rem; }
  .w2b-nofrag-card { flex-direction: column !important; }
}


.w2b-cta-card { background: var(--gradient-gold) !important; border: none !important; }
.w2b-cta-inner { text-align: center; }
.w2b-cta-icon {
  width: 64px; height: 64px; background: rgba(26,18,8,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.5rem; color: #fff;
}
.w2b-cta-card h3 { color: var(--dark) !important; }
.w2b-cta-card p { color: rgba(26,18,8,0.75) !important; margin-bottom: 1.2rem; }
.w2b-cta-card .btn-primary {
  background: var(--dark) !important; color: var(--gold) !important;
}
.w2b-cta-badges {
  display: flex; justify-content: center; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap;
}
.w2b-cta-badges span {
  background: rgba(26,18,8,0.25); color: rgba(26,18,8,0.8);
  font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; font-weight: 600;
}

@media (max-width: 1024px) {
  .why2-bento { grid-template-columns: repeat(2, 1fr); }
  .w2b-hero-card { grid-column: 1 / 3; grid-row: auto; min-height: 280px; }
  .w2b-wide-card { grid-column: 1 / 3; }
}
@media (max-width: 640px) {
  .why2-bento { grid-template-columns: 1fr; }
  .w2b-hero-card, .w2b-wide-card { grid-column: 1 / 2; }
  .why2-stats-bar { gap: 1rem; }
  .w2s-sep { display: none; }
  .w2s-item { min-width: 80px; padding: 0.5rem; }
}


/* ============================================================
   ARMY LEADERSHIP V2 — FULL-BLEED PREMIUM PATRIOTIC
   ============================================================ */
.army-v2-section {
  padding: 0 0 80px;
  background: #0a0e14;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.av2-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.av2-bg-dark {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #050810 0%, #0d1520 35%, #0a0e14 100%);
}
.av2-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,162,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,107,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.av2-bg-lines { position: absolute; inset: 0; }
.av2-line {
  position: absolute; background: rgba(200,162,107,0.08); border-radius: 2px;
}
.av2-line.l1 { width: 1px; height: 200px; top: 80px; left: 15%; }
.av2-line.l2 { width: 1px; height: 300px; top: 40%; left: 30%; }
.av2-line.l3 { width: 1px; height: 150px; top: 20%; right: 25%; }
.av2-line.l4 { width: 1px; height: 250px; top: 55%; right: 12%; }

/* Tricolor accent bar */
.av2-tricolor {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; height: 5px;
}
.tc-saffron { flex: 1; background: #FF9933; }
.tc-white { flex: 1; background: #FFFFFF; }
.tc-green { flex: 1; background: #138808; }

/* Honor banner */
.av2-honor-banner {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  padding: 70px 0 50px;
  text-align: center; position: relative; z-index: 1;
}
.av2-shield { font-size: 2.5rem; color: var(--gold); opacity: 0.35; }
.av2-honor-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.av2-honor-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1.2;
  margin-bottom: 1.5rem;
}
.av2-honor-tagline {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.av2-ht-pill {
  background: rgba(200,162,107,0.12); border: 1px solid rgba(200,162,107,0.3);
  color: var(--gold-light); font-size: 0.82rem; padding: 6px 16px;
  border-radius: 30px; font-weight: 600;
}
.av2-ht-pill i { margin-right: 5px; }
.av2-ht-sep { color: rgba(200,162,107,0.4); font-size: 1.1rem; }

/* Main grid */
.av2-content-grid {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 5rem; align-items: start; position: relative; z-index: 1;
  padding-bottom: 4rem;
}

/* Emblem column */
.av2-emblem-col { text-align: center; }
.av2-central-emblem {
  position: relative; width: 220px; height: 220px;
  margin: 0 auto 2.5rem;
}
.av2-emblem-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(200,162,107,0.25);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: pulseRing 3s ease-in-out infinite;
}
.av2-emblem-ring.r1 { width: 100%; height: 100%; animation-delay: 0s; }
.av2-emblem-ring.r2 { width: 130%; height: 130%; animation-delay: 0.5s; opacity: 0.5; }
.av2-emblem-ring.r3 { width: 165%; height: 165%; animation-delay: 1s; opacity: 0.25; }
@keyframes pulseRing {
  0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%,-50%) scale(1.03); }
}
.av2-emblem-core {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.av2-star-svg { width: 80px; height: 80px; }
.av2-emblem-icon { font-size: 1.6rem; color: var(--gold); margin-top: -70px; }
.av2-emblem-text {
  font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 4px; margin-top: 44px;
}
.av2-emblem-sub {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 3px;
  color: rgba(200,162,107,0.6); text-transform: uppercase;
}

/* Rank cards */
.av2-rank-cards {
  display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem;
}
.av2-rank-card {
  background: rgba(200,162,107,0.07); border: 1px solid rgba(200,162,107,0.2);
  border-radius: 14px; padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: transform 0.3s, border-color 0.3s;
}
.av2-rank-card:hover {
  transform: translateX(6px); border-color: rgba(200,162,107,0.5);
}
.av2-rank-icon { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; min-width: 52px; }
.av2-rank-title {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  font-weight: 700; color: #fff;
}
.av2-rank-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

.av2-stripe-bar {
  display: flex; gap: 4px; justify-content: center; padding: 0 2rem;
}
.av2-stripe {
  flex: 1; height: 6px; border-radius: 3px;
}
.av2-stripe.s1 { background: var(--gradient-gold); }
.av2-stripe.s2 { background: rgba(200,162,107,0.35); }
.av2-stripe.s3 { background: rgba(200,162,107,0.15); }

/* Text column */
.av2-text-col { padding-top: 0.5rem; }
.av2-body-text {
  color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.9;
  margin-bottom: 1.4rem;
}
.av2-body-text strong { color: var(--gold-light); font-weight: 600; }

.av2-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0; }
.av2-pillar {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,162,107,0.15);
  border-radius: 14px; padding: 1.2rem;
  transition: transform 0.3s, border-color 0.3s;
}
.av2-pillar:hover { transform: translateY(-4px); border-color: rgba(200,162,107,0.4); }
.av2-pillar-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.av2-pillar-icon.precision { background: linear-gradient(135deg, #1a3a6b, #2d5fa0); color: #80b0ff; }
.av2-pillar-icon.integrity { background: linear-gradient(135deg, #2d3a0a, #4a6010); color: #a0c040; }
.av2-pillar-icon.family { background: linear-gradient(135deg, #6b1a3a, #a02d5f); color: #ff80a0; }
.av2-pillar-icon.excellence { background: linear-gradient(135deg, #5a3a00, #9a6800); color: var(--gold); }
.av2-pillar-body h4 {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  font-weight: 700; color: #fff; margin-bottom: 0.3rem;
}
.av2-pillar-body p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; }

/* Quote */
.av2-quote-block {
  background: rgba(200,162,107,0.08); border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0; padding: 1.8rem 2rem; margin-top: 2rem;
}
.av2-quote-icon { color: var(--gold); font-size: 1.8rem; margin-bottom: 1rem; opacity: 0.6; }
.av2-quote-block blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.8;
  margin-bottom: 0.8rem;
}
.av2-quote-block cite { color: var(--gold); font-size: 0.85rem; font-weight: 600; }

/* Honor metrics bar */
.av2-honor-metrics {
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(200,162,107,0.07); border: 1px solid rgba(200,162,107,0.2);
  border-radius: 20px; padding: 2.5rem 2rem; flex-wrap: wrap; gap: 1rem;
  position: relative; z-index: 1; margin-top: 1rem;
}
.av2-hm-item { text-align: center; flex: 1; min-width: 120px; }
.av2-hm-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; opacity: 0.8; }
.av2-hm-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
  background: var(--gradient-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.av2-hm-label { color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 1px; margin-top: 0.3rem; }
.av2-hm-sep { width: 1px; height: 50px; background: rgba(200,162,107,0.2); flex-shrink: 0; }

@media (max-width: 1100px) {
  .av2-content-grid { grid-template-columns: 1fr; gap: 3rem; }
  .av2-central-emblem { width: 180px; height: 180px; }
  .av2-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .av2-honor-banner { flex-direction: column; gap: 1rem; }
  .av2-shield { display: none; }
  .av2-pillars { grid-template-columns: 1fr; }
  .av2-honor-tagline { flex-direction: column; align-items: center; }
  .av2-ht-sep { display: none; }
  .av2-honor-metrics { flex-direction: column; gap: 1.5rem; }
  .av2-hm-sep { width: 60%; height: 1px; }
}


/* ============================================================
   CONE SIZES V2 — PHOTO CARD GRID
   ============================================================ */
.cone-sizes-section {
  padding: 110px 0;
  background: var(--warm-white);
  position: relative; z-index: 2; overflow: hidden;
}
.cs-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cs-bg-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544947950-fa07a98d237f?w=1800&q=20');
  background-size: cover; background-position: center; opacity: 0.04;
}
.cs-bg-overlay { position: absolute; inset: 0; background: rgba(250,248,243,0.97); }

.cs-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.cs-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: var(--dark); line-height: 1.15; margin-bottom: 1rem;
}
.cs-sub {
  color: var(--text-light); font-size: 1.05rem;
  max-width: 660px; margin: 0 auto; line-height: 1.8;
}

/* Compare bar */
.cs-compare-bar {
  background: var(--dark); border-radius: 24px; padding: 2.5rem 2rem;
  margin-bottom: 4rem; position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(26,18,8,0.15);
}
.cs-compare-stage {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 2rem; position: relative;
}
.cs-ground-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,162,107,0.4), transparent);
}
.cs-cone-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; position: relative; padding-bottom: 0.5rem;
  cursor: default;
}
.cs-cone-popular-badge, .cs-cone-new-badge {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-gold); color: var(--dark);
  font-size: 0.65rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; white-space: nowrap; letter-spacing: 1px;
}
.cs-cone-new-badge { background: linear-gradient(135deg, #e67e22, #c0392b); color: #fff; }
.cs-svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); transition: transform 0.3s; }
.cs-cone-item:hover .cs-svg { transform: translateY(-6px); }
.cs-cone-label { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; }
.cs-cone-ht {
  font-size: 0.7rem; color: var(--gold); background: rgba(200,162,107,0.15);
  border-radius: 20px; padding: 2px 10px; font-weight: 600;
}
.cs-cone-item.active .cs-cone-label { color: #fff; }
.cs-cone-item.active .cs-cone-ht { background: rgba(200,162,107,0.3); }

/* Smoke CSS */
.cs-smoke-wrap { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); }
.cs-smoke {
  display: block; position: absolute;
  width: 3px; border-radius: 4px;
  background: rgba(255,255,255,0.15);
  animation: csSmokeRise 2.5s ease-in-out infinite;
}
.cs-smoke.sm1 { height: 20px; left: -5px; animation-delay: 0s; }
.cs-smoke.sm2 { height: 14px; left: 2px; animation-delay: 0.4s; }
.cs-smoke.sm3 { height: 18px; left: -12px; animation-delay: 0.8s; }
.cs-smoke.sm4 { height: 22px; left: 6px; animation-delay: 1.2s; }
@keyframes csSmokeRise {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  50% { opacity: 0.6; transform: translateY(-15px) scaleX(1.5); }
  100% { opacity: 0; transform: translateY(-30px) scaleX(2); }
}

/* Photo cards grid */
.cs-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem; position: relative; z-index: 1;
}
.cs-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,18,8,0.08);
  transition: transform 0.35s, box-shadow 0.35s;
  border: 1px solid rgba(200,162,107,0.12);
}
.cs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(26,18,8,0.16);
  border-color: rgba(200,162,107,0.35);
}
.cs-card-photo { position: relative; height: 200px; overflow: hidden; }
.cs-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.cs-card:hover .cs-card-photo img { transform: scale(1.07); }
.cs-card-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,18,8,0.55) 100%);
}
.cs-photo-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.5px;
}
.bestseller-badge { background: var(--gradient-gold); color: var(--dark); }
.popular-badge2 { background: linear-gradient(135deg, #e04080, #a0005a); color: #fff; }
.temple-badge { background: linear-gradient(135deg, #27ae60, #145a30); color: #fff; }
.grand-badge { background: linear-gradient(135deg, #8e44ad, #4a1070); color: #fff; }
.new-badge2 { background: linear-gradient(135deg, #e67e22, #8a3000); color: #fff; }

.cs-card-body { padding: 1.5rem; }
.cs-card-top { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.cs-card-cone { width: 28px; flex-shrink: 0; }
.cs-card-top h3 {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  font-weight: 700; color: var(--dark); margin-bottom: 2px;
}
.cs-card-use { font-size: 0.73rem; color: var(--text-muted); letter-spacing: 0.5px; }
.cs-specs-row {
  display: flex; gap: 0.6rem; margin-bottom: 0.8rem; flex-wrap: wrap;
}
.cs-spec {
  display: flex; align-items: center; gap: 5px;
  background: rgba(200,162,107,0.1); border-radius: 20px;
  padding: 4px 10px; font-size: 0.78rem; color: var(--dark);
}
.cs-spec i { color: var(--gold); font-size: 0.7rem; }
.cs-card-desc { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }

/* Featured card */
.cs-card-featured { border-color: rgba(224,64,128,0.3); }
.cs-card-featured .cs-card-body { border-top: 3px solid #e04080; }

/* Backflow card */
.cs-backflow-card { border-color: rgba(230,126,34,0.3); }
.cs-backflow-card .cs-card-body { border-top: 3px solid #e67e22; }

/* Custom card */
.cs-custom-card {
  background: var(--dark); border: 1px solid rgba(200,162,107,0.3);
  display: flex; align-items: center; justify-content: center;
}
.cs-custom-body { padding: 2.5rem; text-align: center; }
.cs-custom-icon-ring {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gradient-gold); color: var(--dark);
  font-size: 1.6rem; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.2rem;
}
.cs-custom-body h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  font-weight: 700; color: #fff; margin-bottom: 0.8rem;
}
.cs-custom-body p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.cs-custom-points { text-align: left; margin-bottom: 1.8rem; }
.cs-custom-points li {
  color: rgba(255,255,255,0.65); font-size: 0.88rem; list-style: none;
  padding: 0.3rem 0; display: flex; gap: 0.6rem; align-items: center;
}
.cs-custom-points li i { color: var(--gold); }

@media (max-width: 1024px) {
  .cs-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-compare-stage { gap: 1rem; }
}
@media (max-width: 640px) {
  .cs-cards-grid { grid-template-columns: 1fr; }
  .cs-compare-stage { gap: 0.6rem; overflow-x: auto; padding: 0 1rem; }
}


/* ============================================================
   COLORS V2 — IMMERSIVE CARD GRID
   ============================================================ */
.colors-v2-section {
  padding: 110px 0;
  background: #111;
  position: relative; z-index: 2; overflow: hidden;
}
.cv2-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cv2-bg-dark {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d0d0d 0%, #181008 60%, #0d0d0d 100%);
}
.cv2-bg-spectrum {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(192,57,43,0.05) 0%,
    rgba(211,84,0,0.05) 14%,
    rgba(241,196,15,0.05) 28%,
    rgba(39,174,96,0.05) 42%,
    rgba(41,128,185,0.05) 57%,
    rgba(142,68,173,0.05) 71%,
    rgba(217,24,112,0.05) 85%,
    rgba(14,138,109,0.05) 100%
  );
}

.colors-v2-section .container { position: relative; z-index: 1; }
.cv2-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.cv2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.cv2-sub {
  color: rgba(255,255,255,0.55); font-size: 1.05rem;
  max-width: 660px; margin: 0 auto; line-height: 1.8;
}

/* Color card grid */
.cv2-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem; position: relative; z-index: 1; margin-bottom: 3rem;
}
.cv2-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(var(--cc, 200,162,107),0.25);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, background 0.35s;
  cursor: pointer;
}
.cv2-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
}
.cv2-card-inner { padding: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }

/* Cone inside card */
.cv2-cone-wrap { position: relative; padding: 0 0 0.5rem; }
.cv2-cone-wrap svg { filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5)); transition: transform 0.3s; }
.cv2-card:hover .cv2-cone-wrap svg { transform: translateY(-5px); }
.cv2-smoke-thin { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.cv2-smoke-thin span {
  display: block; position: absolute;
  width: 2px; border-radius: 3px; background: rgba(255,255,255,0.12);
  animation: cv2SmokeRise 2.5s ease-in-out infinite;
}
.cv2-smoke-thin span:nth-child(1) { height: 16px; left: -4px; animation-delay: 0s; }
.cv2-smoke-thin span:nth-child(2) { height: 10px; left: 2px; animation-delay: 0.6s; }
@keyframes cv2SmokeRise {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 0.5; transform: translateY(-10px); }
  100% { opacity: 0; transform: translateY(-22px); }
}

/* Card info */
.cv2-info { text-align: center; width: 100%; }
.cv2-dot {
  width: 14px; height: 14px; border-radius: 50%; margin: 0 auto 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.cv2-info h4 {
  font-family: 'Playfair Display', serif; font-size: 0.95rem;
  font-weight: 700; color: #fff; margin-bottom: 0.3rem;
}
.cv2-info p { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.3px; }

/* Light card variant (for white cone) */
.cv2-card-light { border-color: rgba(255,255,255,0.1); }
.cv2-card-light .cv2-info h4 { color: rgba(255,255,255,0.85); }

/* Rainbow / custom card */
.cv2-rainbow-card { grid-column: span 1; position: relative; }
.cv2-rainbow-inner { position: relative; }
.cv2-rainbow-dot {
  background: linear-gradient(135deg, #c0392b, #f1c40f, #27ae60, #2980b9, #8e44ad) !important;
}
.cv2-custom-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gradient-gold); color: var(--dark);
  font-size: 0.62rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; letter-spacing: 1px;
}

/* Bottom strip */
.cv2-bottom-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1;
  background: rgba(200,162,107,0.07); border: 1px solid rgba(200,162,107,0.2);
  border-radius: 16px; padding: 1.5rem 2rem;
}
.cv2-note { display: flex; align-items: flex-start; gap: 1rem; flex: 1; }
.cv2-note i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; padding-top: 2px; }
.cv2-note p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }
.cv2-note strong { color: var(--gold-light); }

@media (max-width: 1024px) {
  .cv2-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .cv2-grid { grid-template-columns: repeat(2, 1fr); }
  .cv2-bottom-strip { flex-direction: column; text-align: center; }
  .cv2-note { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .cv2-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .cv2-card-inner { padding: 1rem; }
}


/* ============================================================
   BIG 4-PALETTE COLOR ROW
   ============================================================ */

/* SECTION */
.colors-section1 {
    padding: 0px 0px 40px 0px;
}

/* GRID */
.colors-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* CARD STYLE (like your existing design) */
.color-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

    /* HOVER */
    .color-card:hover {
        transform: translateY(-8px);
        border-color: rgba(200,162,107,0.4);
        background: rgba(255,255,255,0.07);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

/* FULL COLOR AREA */
.color-fill {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.color-card:hover .color-fill {
    transform: scale(1.05);
}

/* TITLE */
.color-card h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .colors-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .colors-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
/* ---- Process Section ---- */
.process-section {
  padding: 110px 0 80px;
  background: var(--warm-white);
  position: relative;
  z-index: 2;
  scroll-margin-top: 80px;
}
.process-timeline { margin-top: 4rem; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 39px; top: 80px;
  width: 2px;
  height: calc(100% + 5rem - 80px);
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.process-step:last-child::before { display: none; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(139,94,46,0.06);
  transition: var(--transition);
}
.process-step.reverse .step-content {
  grid-template-columns: 1.4fr 1fr;
}
.process-step.reverse .step-img { order: 2; }
.process-step.reverse .step-info { order: 1; }
.step-content:hover {
  box-shadow: 0 20px 60px rgba(139,94,46,0.12);
  border-color: var(--border-strong);
}
.step-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.step-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.step-content:hover .step-img img { transform: scale(1.06); }
.step-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,162,107,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}
.step-img-overlay i {
  font-size: 3rem;
  color: white;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}
.step-content:hover .step-img-overlay { background: rgba(200,162,107,0.25); }
.step-content:hover .step-img-overlay i { opacity: 1; transform: scale(1); }
.step-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.step-info p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.step-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
}
.step-features li i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

/* ---- Factory Section ---- */
.factory-section {
  padding: 100px 0;
  background: #0d0905;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.factory-section .section-title { color: #fff; }
.factory-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,162,107,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.factory-video-container {
  margin: 3rem 0;
}
.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  position: relative;
}
.video-placeholder { position: relative; }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.video-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}
.play-btn {
  width: 90px; height: 90px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(200,162,107,0.5);
  animation: playPulse 2s ease-in-out infinite;
}
.play-btn i { color: var(--dark); font-size: 1.5rem; margin-left: 5px; }
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(200,162,107,0.5);
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,162,107,0.5); }
  50% { box-shadow: 0 0 0 20px rgba(200,162,107,0); }
}
.video-overlay-content h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.video-overlay-content p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 500px; }
.video-upload-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  padding: 0 0.5rem;
}
.video-upload-hint i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.factory-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}






.video-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-thumb {
    position: relative;
    width: 100%;
}

    .video-thumb img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Play Button Center Fix */
.play-btn {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(200,162,107,0.5);
    animation: playPulse 2s ease-in-out infinite;
}

   

/* Mobile Optimization */
@media (max-width: 768px) {
    .play-btn {
        width: 55px;
        height: 55px;
    }

        .play-btn::before {
            border-left: 14px solid #fff;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }
    .video-overlay-content p {
        
        font-size: 0.9rem;
        
    }
    .video-overlay-content h3 {
        
        
        font-size: 1.1rem;
        
    }
}


.fh-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.fh-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.fh-icon {
  width: 56px; height: 56px;
  background: rgba(200,162,107,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.fh-item:hover .fh-icon { background: var(--gradient-gold); color: var(--dark); }
.fh-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.fh-item p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ============================================================
   PRODUCTS NEW SECTION
   ============================================================ */
.products-new-section {
    padding: 110px 0 90px;
    background: var(--dark);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.pns-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.pns-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d0a05 0%, #1a1208 50%, #0d0a05 100%);
}

.pns-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.pns-orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #c8a26b, transparent);
    top: -150px;
    left: -100px;
}

.pns-orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5e2e, transparent);
    bottom: -100px;
    right: -80px;
}

/* Header */
.pns-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.pns-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.pns-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- Products Card Image Area ---- */
.pns-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

    .pns-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.6s ease;
    }

.pns-card:hover .pns-card-img img {
    transform: scale(1.08);
}

.pns-img-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pns-img-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
}

.pns-img-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(10,7,3,0.75);
    border: 1px solid rgba(200,162,107,0.3);
    backdrop-filter: blur(8px);
    color: rgba(200,162,107,0.9);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.pns-card-desc {
    color: rgba(255,255,255,0.58);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.pns-specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0.8rem;
}

    .pns-specs-row span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(200,162,107,0.08);
        border: 1px solid rgba(200,162,107,0.18);
        color: rgba(200,162,107,0.85);
        font-size: 0.76rem;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
    }

        .pns-specs-row span i {
            font-size: 0.7rem;
            color: var(--gold);
        }

/* Grid */
.pns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Product Card */
.pns-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,162,107,0.15);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
}

    .pns-card:hover {
        transform: translateY(-8px);
        border-color: rgba(200,162,107,0.4);
        box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    }

/* Featured card highlight */
.pns-card-featured {
    border-color: rgba(200,162,107,0.35);
    box-shadow: 0 0 0 1px rgba(200,162,107,0.2), 0 10px 40px rgba(0,0,0,0.3);
}

/* Card top — cone display area */
.pns-card-top {
    background: linear-gradient(160deg, rgba(var(--card-color-r,200),var(--card-color-g,162),var(--card-color-b,107),0.08) 0%, rgba(0,0,0,0.1) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem 1.5rem;
    position: relative;
    min-height: 170px;
    justify-content: flex-end;
}

.pns-popular-ribbon,
.pns-new-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pns-popular-ribbon {
    background: var(--gradient-gold);
    color: var(--dark);
}

.pns-new-ribbon {
    background: rgba(230,126,34,0.9);
    color: #fff;
}

.pns-cone-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 0.5rem;
}

    .pns-cone-visual svg {
        filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
        transition: transform 0.35s;
    }

.pns-card:hover .pns-cone-visual svg {
    transform: translateY(-8px);
}

.pns-size-badge {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: 0.8rem;
}

/* Smoke animations */
.pns-smoke, .pns-backflow-smoke {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

    .pns-smoke span, .pns-backflow-smoke span {
        display: block;
        position: absolute;
        border-radius: 3px;
        background: rgba(255,255,255,0.15);
        animation: pnsSmokeRise 2.8s ease-in-out infinite;
    }

        .pns-smoke span:nth-child(1) {
            width: 3px;
            height: 18px;
            left: -6px;
            animation-delay: 0s;
        }

        .pns-smoke span:nth-child(2) {
            width: 2px;
            height: 12px;
            left: 2px;
            animation-delay: 0.7s;
        }

        .pns-smoke span:nth-child(3) {
            width: 2px;
            height: 16px;
            left: 8px;
            animation-delay: 1.3s;
        }

        .pns-smoke span:nth-child(4) {
            width: 2px;
            height: 10px;
            left: -12px;
            animation-delay: 2s;
        }

@keyframes pnsSmokeRise {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }

    40% {
        opacity: 0.6;
        transform: translateY(-14px) scaleX(1.3);
    }

    100% {
        opacity: 0;
        transform: translateY(-32px) scaleX(0.8);
    }
}

.pns-backflow-smoke {
    top: auto;
    bottom: -22px;
}

    .pns-backflow-smoke span {
        animation-name: pnsSmokeDown;
    }

@keyframes pnsSmokeDown {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    40% {
        opacity: 0.5;
        transform: translateY(16px);
    }

    100% {
        opacity: 0;
        transform: translateY(34px);
    }
}

/* Card body */
.pns-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .pns-card-body h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.6rem;
    }

.pns-use-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1.2rem;
}

    .pns-use-tags span {
        font-size: 0.68rem;
        font-weight: 600;
        color: rgba(200,162,107,0.8);
        background: rgba(200,162,107,0.1);
        border: 1px solid rgba(200,162,107,0.2);
        padding: 3px 10px;
        border-radius: 20px;
    }

.pns-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.pns-spec-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pns-spec-icon {
    color: var(--gold);
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.pns-spec-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    flex: 1;
}

.pns-spec-val {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.pns-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    flex: 1;
}

.pns-badge-row {
    margin-top: 1rem;
}

.pns-bestseller {
    background: rgba(200,162,107,0.15);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(200,162,107,0.3);
}

.pns-temple {
    background: rgba(39,174,96,0.15);
    color: #6fcf97;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(39,174,96,0.3);
}

/* Custom card */
.pns-custom-card {
    border: 1px dashed rgba(200,162,107,0.35);
    background: linear-gradient(135deg, rgba(200,162,107,0.07) 0%, rgba(0,0,0,0.2) 100%);
}

.pns-custom-inner {
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.pns-custom-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 30px rgba(200,162,107,0.35);
}

.pns-custom-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

.pns-custom-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.pns-custom-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.8rem;
    width: 100%;
}

    .pns-custom-list li {
        color: rgba(255,255,255,0.65);
        font-size: 0.88rem;
        padding: 5px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .pns-custom-list li i {
            color: var(--gold);
            font-size: 0.75rem;
        }

/* CTA Bar */
.pns-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: rgba(200,162,107,0.07);
    border: 1px solid rgba(200,162,107,0.2);
    border-radius: 18px;
    padding: 1.8rem 2.5rem;
    position: relative;
    z-index: 1;
}

.pns-cta-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

    .pns-cta-text i {
        color: var(--gold);
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .pns-cta-text p {
        color: rgba(255,255,255,0.65);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .pns-cta-text strong {
        color: var(--gold-light);
    }

@media (max-width: 1100px) {
    .pns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pns-grid {
        grid-template-columns: 1fr;
    }

    .pns-cta-bar {
        flex-direction: column;
        text-align: center;
    }

    .pns-cta-text {
        flex-direction: column;
        text-align: center;
    }
}

/* ---- Products Section ---- */
.products-section {
    padding: 100px 0;
    background: var(--warm-white);
    position: relative;
    z-index: 2;
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.size-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(139,94,46,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

    .size-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(139,94,46,0.15);
        border-color: var(--border-strong);
    }

.size-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

    .size-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.size-card:hover .size-img-wrap img {
    transform: scale(1.07);
}

.size-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

    .size-badge.popular {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: white;
    }

    .size-badge.new {
        background: linear-gradient(135deg, #27ae60, #1a8045);
        color: white;
    }

.size-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem 0.5rem;
    background: var(--cream);
}

.cone-svg {
    width: 40px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
}

    .cone-svg.medium {
        width: 45px;
        height: 70px;
    }

    .cone-svg.large {
        width: 50px;
        height: 80px;
    }

    .cone-svg.jumbo {
        width: 55px;
        height: 90px;
    }

.size-card:hover .cone-svg {
    transform: scale(1.15) translateY(-4px);
}

.size-info {
    padding: 1.5rem;
    flex: 1;
}

    .size-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.8rem;
    }

.size-specs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0.8rem;
}

    .size-specs span {
        font-size: 0.82rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .size-specs span i {
            color: var(--gold);
            font-size: 0.7rem;
        }

.size-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.size-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

    .size-tags span {
        background: rgba(200,162,107,0.1);
        color: var(--gold-dark);
        font-size: 0.75rem;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 50px;
        border: 1px solid rgba(200,162,107,0.2);
    }

.custom-card {
    background: var(--gradient-dark);
    border: 1px solid var(--border);
}

.custom-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
    gap: 1rem;
}

.custom-icon {
    width: 70px;
    height: 70px;
    background: rgba(200,162,107,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.8rem;
}

.custom-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
}

.custom-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---- Colors Section ---- */
.colors-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.colors-palette {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.color-swatch {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(139,94,46,0.06);
}

    .color-swatch:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        border-color: var(--gold);
    }

.swatch-body {
    padding: 1.5rem 1rem 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    background: rgba(0,0,0,0.02);
}

    .swatch-body.gradient-swatch {
        background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(39,174,96,0.1), rgba(142,68,173,0.1));
    }

.swatch-cone svg {
    width: 32px;
    height: 45px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.color-swatch:hover .swatch-cone svg {
    transform: scale(1.2) translateY(-4px);
}

.swatch-info {
    padding: 0.8rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

    .swatch-info h4 {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 3px;
    }

    .swatch-info p {
        font-size: 0.72rem;
        color: var(--text-muted);
        line-height: 1.3;
    }

.colors-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1.2rem 1.5rem;
    background: rgba(200,162,107,0.06);
    border-radius: 12px;
    border: 1px solid var(--border);
}

    .colors-note i {
        color: var(--gold);
        font-size: 1rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .colors-note p {
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.6;
    }

/* ---- Fragrances Section ---- */
.fragrances-section {
    padding: 100px 0;
    background: var(--dark-2);
    position: relative;
    z-index: 2;
}

    .fragrances-section .section-title {
        color: #fff;
    }

.fragrance-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.frag-tab {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    cursor: pointer;
}

    .frag-tab.active, .frag-tab:hover {
        background: var(--gradient-gold);
        color: var(--dark);
        border-color: transparent;
        box-shadow: 0 4px 20px rgba(200,162,107,0.3);
    }

.fragrance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.fragrance-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    cursor: pointer;
}

    .fragrance-item:hover {
        background: rgba(255,255,255,0.08);
        border-color: var(--border-strong);
        transform: translateX(4px);
    }

.frag-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fragrance-item span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ---- Certifications Section ---- */
.certs-section {
    padding: 100px 0;
    background: var(--warm-white);
    position: relative;
    z-index: 2;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cert-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(139,94,46,0.05);
}

    .cert-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
        box-shadow: 0 20px 50px rgba(139,94,46,0.1);
    }

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
}

.cert-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.7rem;
}

.cert-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ============================================================
   BIG 4-PALETTE COLOR ROW
   ============================================================ */
.cv2-big-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.cvb-palette {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    transition: transform 0.35s, border-color 0.35s, background 0.35s;
    cursor: pointer;
}

    .cvb-palette:hover {
        transform: translateY(-8px);
        border-color: rgba(200,162,107,0.4);
        background: rgba(255,255,255,0.07);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

/* Swatches row at top */
.cvb-palette-swatches {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.cvb-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
    transition: transform 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.cvb-swatch-sm {
    width: 22px;
    height: 22px;
}

.cvb-palette:hover .cvb-swatch {
    transform: scale(1.15);
}

/* Big cone */
.cvb-big-cone {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 0.5rem;
}

    .cvb-big-cone svg {
        width: 80px;
        height: 110px;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
        transition: transform 0.35s;
    }

.cvb-palette:hover .cvb-big-cone svg {
    transform: translateY(-8px);
}

.cvb-smoke {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

    .cvb-smoke span {
        display: block;
        position: absolute;
        border-radius: 3px;
        background: rgba(255,255,255,0.15);
        animation: cvbSmokeRise 3s ease-in-out infinite;
    }

        .cvb-smoke span:nth-child(1) {
            width: 3px;
            height: 20px;
            left: -6px;
            animation-delay: 0s;
        }

        .cvb-smoke span:nth-child(2) {
            width: 2px;
            height: 14px;
            left: 2px;
            animation-delay: 0.8s;
        }

        .cvb-smoke span:nth-child(3) {
            width: 2px;
            height: 18px;
            left: 8px;
            animation-delay: 1.4s;
        }

@keyframes cvbSmokeRise {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }

    40% {
        opacity: 0.6;
        transform: translateY(-12px) scaleX(1.3);
    }

    100% {
        opacity: 0;
        transform: translateY(-30px) scaleX(0.8);
    }
}

/* Palette info */
.cvb-palette-info {
    width: 100%;
    text-align: center;
}

    .cvb-palette-info h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.7rem;
    }

.cvb-color-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0.8rem;
}

    .cvb-color-names span {
        font-size: 0.72rem;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 20px;
        background: rgba(255,255,255,0.07);
    }

.cvb-frag-list {
    text-align: left;
}

    .cvb-frag-list p {
        font-size: 0.72rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.8;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .cvb-frag-list p i {
            font-size: 0.45rem;
            flex-shrink: 0;
        }

/* Badge */
.cvb-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Custom palette */
.cvb-palette-custom {
    border-color: rgba(200,162,107,0.3);
}

.cvb-cta-btn {
    margin-top: 1rem;
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

    .cvb-cta-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(200,162,107,0.4);
    }

@media (max-width: 1100px) {
    .cv2-big-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cv2-big-row {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   VIBRANT VARIETY — SIMPLIFIED PALETTE GRID (NEW)
   ============================================================ */
.cv2-palette-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.cvp-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

    .cvp-card:hover {
        transform: translateY(-8px);
        border-color: rgba(200,162,107,0.4);
        box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    }

.cvp-card-custom {
    border-color: rgba(200,162,107,0.25);
}

/* Swatches — tall strips */
.cvp-swatches {
    display: flex;
    height: 160px;
}

.cvp-swatch {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
}

.cvp-card:hover .cvp-swatch:hover {
    flex: 2;
}

.cvp-swatch-name {
    display: none;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    letter-spacing: 0.5px;
    padding: 4px 0;
}

.cvp-swatch:hover .cvp-swatch-name {
    display: block;
}

/* Info area */
.cvp-info {
    padding: 1.4rem 1.4rem 1.6rem;
}

.cvp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.9rem;
    text-align: center;
}

.cvp-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.cvp-color-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c, rgba(200,162,107,0.9));
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    padding: 4px 11px;
    white-space: nowrap;
    transition: background 0.3s;
}

.cvp-gradient-tag {
    background: linear-gradient(135deg,#c0392b,#f1c40f,#27ae60,#2980b9,#8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: rgba(200,162,107,0.3);
    font-size: 0.82rem;
}

@media (max-width: 1100px) {
    .cv2-palette-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cvp-swatches {
        height: 140px;
    }
}

@media (max-width: 600px) {
    .cv2-palette-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cvp-swatches {
        height: 120px;
    }

    .cvp-info {
        padding: 1rem;
    }

    .cvp-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .cv2-palette-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   LEADERSHIP & VALUES SECTION — CLEAN PREMIUM REDESIGN
   ============================================================ */
.leadership-section {
  padding: 0 0 90px;
  background: #0c1018;
  position: relative; overflow: hidden; z-index: 2;
}
.ls-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ls-bg-base {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #080c12 0%, #0e1520 45%, #0a0d10 100%);
}
.ls-bg-texture {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,162,107,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,107,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.ls-bg-glow {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,107,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.ls-bg-glow.lg1 { width: 500px; height: 500px; top: -120px; right: -80px; }
.ls-bg-glow.lg2 { width: 400px; height: 400px; bottom: -80px; left: -60px; }

/* India tricolor top bar */
.ls-tricolor {
  display: flex; height: 5px; position: relative; z-index: 2;
}
.ltc-saffron { flex: 1; background: #FF9933; }
.ltc-white   { flex: 1; background: #FFFFFF; }
.ltc-green   { flex: 1; background: #138808; }

/* Eyebrow row */
.ls-eyebrow-row {
  display: flex; align-items: center; gap: 1rem;
  margin: 0 auto 2rem; max-width: 500px;
  padding-top: 70px; position: relative; z-index: 1;
}
.ls-eyebrow-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,162,107,0.4), transparent); }
.ls-eyebrow-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  white-space: nowrap;
}
.ls-eyebrow-tag i { font-size: 1rem; }

/* Headline */
.ls-headline { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.ls-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 1.5rem;
}
.ls-since-tag {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.6rem;
}
.ls-tag-pill {
  background: rgba(200,162,107,0.12); border: 1px solid rgba(200,162,107,0.3);
  color: var(--gold-light); font-size: 0.82rem; padding: 6px 16px;
  border-radius: 30px; font-weight: 600;
}
.ls-tag-pill i { margin-right: 5px; }
.ls-tag-sep { color: rgba(200,162,107,0.35); font-size: 1.2rem; }

/* Main grid */
.ls-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 4rem; align-items: start; position: relative; z-index: 1;
  margin-bottom: 4rem;
}

/* ---- Emblem Column ---- */
.ls-emblem-col { text-align: center; }
.ls-emblem-wrap { position: relative; width: 200px; height: 200px; margin: 0 auto 2.5rem; }
.ls-emblem-rings { position: absolute; inset: 0; }
.ler {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(200,162,107,0.2);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: lsRingPulse 3s ease-in-out infinite;
}
.ler.ler1 { width: 100%; height: 100%; animation-delay: 0s; }
.ler.ler2 { width: 136%; height: 136%; animation-delay: 0.6s; opacity: 0.5; }
.ler.ler3 { width: 172%; height: 172%; animation-delay: 1.2s; opacity: 0.25; }
@keyframes lsRingPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.ls-emblem-core {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ls-star-svg { width: 90px; height: 90px; }
.ls-emblem-medal {
  font-size: 1.5rem; color: var(--gold); margin-top: -76px;
}
.ls-emblem-word {
  font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 700;
  color: var(--gold); letter-spacing: 5px; margin-top: 42px;
}

/* Rank stack */
.ls-rank-stack { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.ls-rank-item {
  background: rgba(200,162,107,0.06); border: 1px solid rgba(200,162,107,0.18);
  border-radius: 14px; padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.ls-rank-item:hover {
  transform: translateX(6px);
  border-color: rgba(200,162,107,0.45);
  background: rgba(200,162,107,0.1);
}
.ls-rank-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; min-width: 56px; }
.ls-rank-body { flex: 1; text-align: left; }
.ls-rank-body h4 {
  font-family: 'Playfair Display', serif; font-size: 0.95rem;
  font-weight: 700; color: #fff; margin-bottom: 2px;
}
.ls-rank-body p { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.ls-rank-stripe {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  border-radius: 3px 0 0 3px;
}
.ls-rs-brigadier { background: linear-gradient(to bottom, #FF9933, #e07000); }
.ls-rs-colonel   { background: linear-gradient(to bottom, #c8a26b, #8b5e2e); }
.ls-rs-family    { background: linear-gradient(to bottom, #138808, #0a5005); }

/* Deco stripes */
.ls-deco-stripes { display: flex; gap: 4px; justify-content: center; }
.ldc { flex: 1; height: 5px; border-radius: 3px; }
.ldc.ldc1 { background: var(--gradient-gold); }
.ldc.ldc2 { background: rgba(200,162,107,0.35); }
.ldc.ldc3 { background: rgba(200,162,107,0.12); }

/* ---- Content Column ---- */
.ls-content-col { padding-top: 1rem; }
.ls-story {
  margin-bottom: 2rem;
}
.ls-story p {
  color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.9;
  margin-bottom: 1.2rem;
}
.ls-story strong { color: var(--gold-light); font-weight: 600; }

/* Values 2×2 grid */
.ls-values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 2rem;
}
.ls-value-card {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,162,107,0.14);
  border-radius: 14px; padding: 1.2rem;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.ls-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,107,0.4);
  background: rgba(200,162,107,0.07);
}
.ls-vc-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.lsv-precision  { background: linear-gradient(135deg, #4a2800, #9a5a00); color: var(--gold);  }
.lsv-integrity  { background: linear-gradient(135deg, #4a2800, #9a5a00); color: var(--gold);  }
.lsv-family     { background: linear-gradient(135deg, #4a2800, #9a5a00); color: var(--gold);  }
.lsv-excellence { background: linear-gradient(135deg, #4a2800, #9a5a00); color: var(--gold); }
.ls-vc-body h4 {
  font-family: 'Playfair Display', serif; font-size: 0.95rem;
  font-weight: 700; color: #fff; margin-bottom: 0.3rem;
}
.ls-vc-body p { color: rgba(255,255,255,0.55); font-size: 0.83rem; line-height: 1.6; }

/* Quote block */
.ls-quote {
  display: flex; gap: 1rem;
  background: rgba(200,162,107,0.07);
  border-radius: 16px; padding: 1.6rem 1.8rem;
}
.ls-quote-bar { width: 4px; background: var(--gradient-gold); border-radius: 4px; flex-shrink: 0; min-height: 100%; }
.ls-quote-body { flex: 1; }
.ls-quote-icon { color: var(--gold); font-size: 1.6rem; margin-bottom: 0.8rem; opacity: 0.5; }
.ls-quote blockquote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.8;
  margin-bottom: 0.7rem;
}
.ls-quote cite { color: var(--gold); font-size: 0.82rem; font-weight: 600; }

/* Metrics ribbon */
.ls-metrics-row {
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(200,162,107,0.07); border: 1px solid rgba(200,162,107,0.2);
  border-radius: 20px; padding: 2.2rem 2rem;
  flex-wrap: wrap; gap: 1rem; position: relative; z-index: 1;
}
.ls-metric { text-align: center; flex: 1; min-width: 120px; }
.ls-metric-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.4rem; opacity: 0.75; }
.ls-metric-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
  background: var(--gradient-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.ls-metric-num span { font-size: 1.2rem; }
.ls-metric-label { color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.5px; margin-top: 0.3rem; }
.ls-metric-sep { width: 1px; height: 50px; background: rgba(200,162,107,0.2); flex-shrink: 0; }

@media (max-width: 1000px) {
  .ls-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ls-emblem-wrap { width: 160px; height: 160px; }
  .ls-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ls-values-grid { grid-template-columns: 1fr; }
  .ls-since-tag { flex-direction: column; }
  .ls-tag-sep { display: none; }
  .ls-metrics-row { flex-direction: column; gap: 1.5rem; }
  .ls-metric-sep { width: 60%; height: 1px; }
}


/* ============================================================
   GET IN TOUCH — SIDE-BY-SIDE LAYOUT
   ============================================================ */
.git-section {
  padding: 110px 0;
  background: var(--dark);
  position: relative; z-index: 2; overflow: hidden;
}
.git-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.git-bg-base {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #100a04 0%, #1a1208 50%, #0e0904 100%);
}
.git-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,162,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,162,107,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
}
.git-bg-glow {
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,107,0.08) 0%, transparent 65%);
}

/* Header */
.git-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
.git-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.git-sub {
  color: rgba(255,255,255,0.55); font-size: 1rem;
  max-width: 580px; margin: 0 auto; line-height: 1.8;
}

/* Main grid */
.git-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem; align-items: start; position: relative; z-index: 1;
}

/* Column titles */
.git-col-title {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  font-weight: 700; color: #fff; margin-bottom: 1.8rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(200,162,107,0.2);
  display: flex; align-items: center; gap: 0.6rem;
}
.git-col-title i { color: var(--gold); }

/* Contact Items */
.git-contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.git-ci-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,162,107,0.14);
  border-radius: 14px; padding: 1.2rem 1.4rem;
  transition: border-color 0.3s, background 0.3s;
}
.git-ci-item:hover { border-color: rgba(200,162,107,0.4); background: rgba(200,162,107,0.07); }
.git-ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200,162,107,0.25);
}
.git-ci-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.git-ci-value { display: block; color: #fff; font-size: 0.95rem; font-weight: 500; text-decoration: none; }
.git-ci-value:hover { color: var(--gold-light); }
.git-ci-sub { color: rgba(255,255,255,0.5) !important; font-size: 0.85rem !important; }
.git-ci-sub em { color: rgba(200,162,107,0.7); font-style: normal; font-size: 0.8rem; }

/* Why points */
.git-why-points { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.git-wp {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
}
.git-wp i { color: var(--gold); font-size: 0.85rem; width: 16px; flex-shrink: 0; }

/* Social row */
.git-social-row { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.git-social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 10px 18px; border-radius: 30px; font-size: 0.85rem;
  font-weight: 600; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}
.git-social-btn:hover { transform: translateY(-3px); }
.git-wa { background: #25D366; color: #fff; }
.git-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.git-ig { background: linear-gradient(135deg,#e1306c,#833ab4); color: #fff; padding: 10px 14px; }
.git-fb { background: #1877f2; color: #fff; padding: 10px 14px; }
.git-li { background: #0a66c2; color: #fff; padding: 10px 14px; }

/* Map placeholder */
.git-map-placeholder {
  background: rgba(255,255,255,0.04); border: 1px dashed rgba(200,162,107,0.3);
  border-radius: 14px; padding: 1.5rem; text-align: center; cursor: pointer;
  transition: border-color 0.3s;
}
.git-map-placeholder:hover { border-color: rgba(200,162,107,0.6); }
.git-map-placeholder i { font-size: 2rem; color: var(--gold); opacity: 0.6; display: block; margin-bottom: 0.5rem; }
.git-map-placeholder p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-bottom: 0.2rem; }
.git-map-placeholder span { font-size: 0.75rem; color: rgba(200,162,107,0.6); }

/* Form */
.git-form-col {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(200,162,107,0.15);
  border-radius: 24px; padding: 2.5rem;
}
.git-form { display: flex; flex-direction: column; gap: 1rem; }
.git-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.git-form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.git-form-group label {
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px;
}
.git-form-group label i { font-size: 0.75rem; }
.git-form input,
.git-form select,
.git-form textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,162,107,0.2);
  border-radius: 10px; padding: 11px 14px; color: #fff; font-size: 0.92rem;
  font-family: inherit; outline: none; transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.git-form input::placeholder, .git-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.git-form input:focus, .git-form select:focus, .git-form textarea:focus {
  border-color: rgba(200,162,107,0.6); background: rgba(200,162,107,0.07);
}
.git-form select option { background: #1a1208; color: #fff; }
.git-form textarea { resize: vertical; min-height: 100px; }
.git-checkbox-group {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.git-checkbox-group label {
  display: flex; align-items: center; gap: 7px; cursor: pointer;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  padding: 6px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,162,107,0.12);
  transition: border-color 0.3s, background 0.3s;
}
.git-checkbox-group label:hover { border-color: rgba(200,162,107,0.35); background: rgba(200,162,107,0.08); }
.git-checkbox-group input[type=checkbox] { accent-color: var(--gold); width: 14px; height: 14px; }

.git-submit-btn {
  width: 100%; padding: 16px; border: none; border-radius: 14px;
  background: var(--gradient-gold); color: var(--dark);
  font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit;
  letter-spacing: 0.5px; transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 0.5rem;
}
.git-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,162,107,0.4);
}
.git-success, .git-error {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; border-radius: 12px; font-size: 0.9rem;
}
.git-success { background: rgba(39,174,96,0.12); border: 1px solid rgba(39,174,96,0.3); color: #7de8a8; }
.git-success i { font-size: 1.4rem; color: #27ae60; flex-shrink: 0; }
.git-success h4 { color: #27ae60; font-weight: 700; margin-bottom: 0.3rem; }
.git-error { background: rgba(231,76,60,0.12); border: 1px solid rgba(231,76,60,0.3); color: #ffaaaa; }
.git-error i { font-size: 1.4rem; color: #e74c3c; flex-shrink: 0; }

@media (max-width: 1000px) {
  .git-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .git-form-col { padding: 1.5rem; }
  .git-form-row { grid-template-columns: 1fr; }
  .git-checkbox-group { grid-template-columns: repeat(2, 1fr); }
  .git-social-row { flex-wrap: wrap; }
}


/* ---- Testimonials Section ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  z-index: 2;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(139,94,46,0.06);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(139,94,46,0.12);
  border-color: var(--gold);
}
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testi-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}
.testi-text::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(200,162,107,0.15);
  position: absolute;
  top: -10px;
  left: -8px;
  line-height: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 48px; height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-author h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 0.82rem; color: var(--text-muted); }

/* ---- Enquiry Section ---- */
.enquiry-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: var(--dark);
}
.enquiry-section .section-title { color: #fff; }
.enquiry-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(200,162,107,0.08), transparent 60%);
  pointer-events: none;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.enquiry-desc { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.enquiry-features { display: flex; flex-direction: column; gap: 1.2rem; }
.eq-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.eq-feature:hover { background: rgba(255,255,255,0.06); }
.eq-feature > i {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(200,162,107,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.eq-feature h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.eq-feature p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.enquiry-form-wrap {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.enquiry-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group label i { color: var(--gold); font-size: 0.8rem; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,162,107,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-group select option { background: #2c2010; color: white; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(200,162,107,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 500;
}
.checkbox-group label:hover { background: rgba(200,162,107,0.1); border-color: var(--gold); }
.checkbox-group input[type="checkbox"] { accent-color: var(--gold); width: 14px; height: 14px; }
.btn-submit {
  width: 100%;
  background: var(--gradient-gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(200,162,107,0.3);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,162,107,0.5);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success,
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1.2rem;
  border-radius: 12px;
  margin-top: 0.5rem;
}
.form-success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
}
.form-success i { color: #27ae60; font-size: 1.5rem; flex-shrink: 0; }
.form-success h4 { color: #27ae60; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.form-success p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.form-error {
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.3);
}
.form-error i { color: #e74c3c; font-size: 1.2rem; }
.form-error p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ---- Contact Section ---- */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  z-index: 2;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(139,94,46,0.07);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 46px; height: 46px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-text p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}
.contact-text a { color: var(--text-light); transition: color 0.3s; }
.contact-text a:hover { color: var(--gold); }
.contact-social { margin-top: 1.5rem; }
.contact-social h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.8rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--border);
  color: var(--text);
}
.social-btn.whatsapp { background: rgba(37,211,102,0.06); }
.social-btn.whatsapp:hover { background: #25d366; color: white; border-color: #25d366; }
.social-btn.instagram { background: rgba(225,48,108,0.06); }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; border-color: transparent; }
.social-btn.facebook { background: rgba(59,89,152,0.06); }
.social-btn.facebook:hover { background: #1877f2; color: white; border-color: #1877f2; }
.social-btn.linkedin { background: rgba(10,102,194,0.06); }
.social-btn.linkedin:hover { background: #0a66c2; color: white; border-color: #0a66c2; }
.contact-map { height: 100%; min-height: 400px; }
.map-placeholder {
  height: 100%;
  min-height: 400px;
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,162,107,0.1), transparent 70%);
}
.map-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.map-overlay-content i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.map-overlay-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.map-overlay-content p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; }
.map-pin-animated {
  position: absolute;
  top: 40%; left: 55%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 2rem;
  animation: pinBounce 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

/* ---- Footer ---- */
.footer { background: var(--dark); position: relative; z-index: 2; }
.footer-top {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo .logo-text { font-size: 1.3rem; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1rem 0;
}
.footer-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-stats span {
  background: rgba(200,162,107,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-links ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-contact p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-contact p i { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.footer-social a:hover {
  background: var(--gradient-gold);
  color: var(--dark);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.footer-bottom i { color: var(--amber); }

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  z-index: 100;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  box-shadow: 0 8px 25px rgba(200,162,107,0.3);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(200,162,107,0.5); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 35px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}
.wa-tooltip {
  position: absolute;
  right: 64px;
  background: var(--dark);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */

@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }
  .colors-palette { grid-template-columns: repeat(4, 1fr); }
  .fragrance-grid { grid-template-columns: repeat(3, 1fr); }
  .factory-highlights { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .process-step { grid-template-columns: 60px 1fr; }
  .step-content { grid-template-columns: 1fr !important; }
  .process-step.reverse .step-img { order: 0; }
  .process-step.reverse .step-info { order: 0; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(13,9,5,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open li a {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
  }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-cta { display: none; }

  .hero-stats { gap: 1rem; padding: 1.5rem; }
  .stat-divider { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: repeat(2, 1fr); }
  .sizes-grid { grid-template-columns: 1fr; }
  .colors-palette { grid-template-columns: repeat(3, 1fr); }
  .fragrance-grid { grid-template-columns: repeat(2, 1fr); }
  .factory-highlights { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .enquiry-form-wrap { padding: 1.5rem; }

  .process-step { grid-template-columns: 1fr; }
  .process-step::before { display: none; }
  .step-number { font-size: 2.5rem; }
}

@media (max-width: 520px) {
  .hero-title { font-size: 2.5rem; }
  .colors-palette { grid-template-columns: repeat(2, 1fr); }
  .fragrance-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0.8rem; }
  .stat-divider { display: none; }
}

/* ---- AOS custom ---- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
