/* ==========================================================================
   ORGANIC PLANET — LUXURY ORGANIC SPICES DESIGN SYSTEM
   Benchmarked against Adani Spices & Pushp Online
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary-dark: #0a2914;
  --primary-forest: #124322;
  --primary-emerald: #166534;
  --primary-leaf: #34922e;
  --accent-lime: #65b828;
  --accent-gold: #bfa054;
  --accent-gold-bright: #d4af37;
  --accent-chilli: #c83226;
  --accent-warm: #d97706;

  /* Surfaces & Backgrounds */
  --bg-body: #fbf9f5;
  --bg-card: #ffffff;
  --bg-cream: #f4efe4;
  --bg-subtle: #eeeadf;
  --bg-dark: #0d2315;
  --bg-overlay: rgba(10, 41, 20, 0.72);

  /* Typography Colors */
  --text-main: #162419;
  --text-body: #3c4a3f;
  --text-muted: #647468;
  --text-light: #94a397;
  --text-white: #ffffff;
  --text-gold: #e2c069;

  /* Borders & Dividers */
  --border-subtle: #e7e2d4;
  --border-light: #ded7c5;
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(10, 41, 20, 0.05);
  --shadow-sm: 0 4px 12px rgba(10, 41, 20, 0.06);
  --shadow-md: 0 10px 28px rgba(10, 41, 20, 0.09);
  --shadow-lg: 0 18px 45px rgba(10, 41, 20, 0.14);
  --shadow-xl: 0 28px 70px rgba(10, 41, 20, 0.22);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 24px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.container {
  width: min(var(--container-max), calc(100% - var(--container-pad) * 2));
  margin-inline: auto;
}

/* Accessibility Focus States */
:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  color: var(--primary-dark);
  line-height: 1.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-leaf);
  margin-bottom: 12px;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--accent-gold);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-title h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(18, 67, 34, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-emerald) 0%, var(--primary-forest) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 67, 34, 0.38);
  color: var(--text-white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(191, 160, 84, 0.35);
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(191, 160, 84, 0.45);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: var(--text-white);
  color: var(--primary-dark);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-forest);
}

.btn-outline-dark:hover {
  background: var(--primary-forest);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-organic {
  background-color: rgba(52, 146, 46, 0.12);
  color: var(--primary-leaf);
  border: 1px solid rgba(52, 146, 46, 0.25);
}

.badge-gold {
  background-color: rgba(212, 175, 55, 0.14);
  color: #8c6a0c;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-spicy {
  background-color: rgba(200, 50, 38, 0.1);
  color: var(--accent-chilli);
}

/* --------------------------------------------------------------------------
   HEADER & TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-announcement {
  background: linear-gradient(90deg, #092110 0%, #144926 50%, #092110 100%);
  color: #e5ecd9;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 40;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  gap: 16px;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.ticker-tag {
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-text {
  animation: tickerSlide 26s linear infinite;
  display: inline-block;
  opacity: 0.95;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  font-weight: 500;
}

.top-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.top-contacts a:hover {
  opacity: 1;
  color: var(--accent-gold-bright);
}

/* Main Masthead */
.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.masthead.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(10, 41, 20, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 28px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-link:hover .brand-logo {
  transform: scale(1.02);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
}

.nav-link {
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-leaf);
  transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-leaf);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-badge {
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-size: 0.64rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-left: 4px;
  vertical-align: middle;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  background: var(--bg-cream);
  color: var(--primary-dark);
  font-size: 1.15rem;
  position: relative;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-subtle);
}

.nav-icon-btn:hover {
  background: var(--primary-dark);
  color: var(--text-white);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-chilli);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  border: 2px solid var(--bg-card);
  transition: transform var(--transition-fast);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--primary-dark);
  font-size: 1.4rem;
  place-items: center;
}

/* --------------------------------------------------------------------------
   HERO SECTION (CINEMATIC DUAL-ENGINE)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 640px;
  background-color: var(--primary-dark);
  background-image:
    linear-gradient(90deg, rgba(8, 29, 14, 0.94) 0%, rgba(10, 36, 18, 0.88) 42%, rgba(10, 36, 18, 0.35) 80%, rgba(8, 29, 14, 0.7) 100%),
    url('../images/hero-spices.jpg');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding: 70px 0;
  overflow: hidden;
  color: var(--text-white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg-body));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-gold-bright);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.08;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(90deg, #f7df94 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #d6e2d8;
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item h3 {
  font-size: 1.8rem;
  color: var(--accent-gold-bright);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-item p {
  font-size: 0.78rem;
  color: #cad8cc;
  line-height: 1.35;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   SPICE TICKER MARQUEE (ADANI BENCHMARK)
   -------------------------------------------------------------------------- */
.spice-marquee {
  background: #11361c;
  color: #e2ecd9;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marqueeScroll 34s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.marquee-item .dot {
  color: var(--accent-gold-bright);
  font-size: 1.1rem;
}

.marquee-item strong {
  color: var(--text-white);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   PROVENANCE & MANUFACTURING PROCESS (ADANI + PUSHP BENCHMARK)
   -------------------------------------------------------------------------- */
.provenance-section {
  padding: 96px 0;
  background-color: var(--bg-body);
}

.provenance-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.provenance-media {
  position: relative;
}

.media-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-badge-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--bg-card);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
  max-width: 250px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.media-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(52, 146, 46, 0.12);
  color: var(--primary-leaf);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.media-badge-card strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary-dark);
}

.media-badge-card small {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.pillar-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 32px 0 38px;
}

.pillar-item {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pillar-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-leaf);
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.pillar-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.pillar-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   INTERACTIVE E-COMMERCE PRODUCTS CATALOG (PUSHP BENCHMARK)
   -------------------------------------------------------------------------- */
.catalog-section {
  padding: 96px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--bg-card);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
}

.tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary-leaf);
}

.tab-btn.active {
  background: var(--primary-dark);
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(10, 41, 20, 0.2);
}

.catalog-filters {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  position: relative;
}

.search-box input {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 9px 18px 9px 40px;
  font-size: 0.86rem;
  width: 220px;
  transition: all var(--transition-fast);
}

.search-box input:focus {
  width: 260px;
  border-color: var(--primary-leaf);
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 146, 46, 0.15);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(52, 146, 46, 0.35);
}

.card-top-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product-thumb-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f7f4ec;
  aspect-ratio: 1;
  margin-bottom: 16px;
}

.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-thumb {
  transform: scale(1.08);
}

.quick-view-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.product-card:hover .quick-view-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.quick-view-btn:hover {
  background: var(--primary-dark);
  color: var(--text-white);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.product-rating .stars {
  letter-spacing: 2px;
}

.product-title {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-origin {
  font-size: 0.78rem;
  color: var(--primary-leaf);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

/* Heat Indicator */
.heat-meter {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.heat-meter .flames {
  font-size: 0.85rem;
}

/* Weight Selectors */
.weight-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  background: var(--bg-body);
  padding: 4px;
  border-radius: var(--radius-sm);
}

.weight-pill {
  flex: 1;
  text-align: center;
  padding: 5px 4px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  color: var(--text-body);
  transition: all var(--transition-fast);
}

.weight-pill:hover {
  background: rgba(0, 0, 0, 0.05);
}

.weight-pill.active {
  background: var(--bg-card);
  color: var(--primary-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}

/* Card Price & Action */
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.price-original {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-top: 2px;
}

.add-cart-btn {
  background: var(--primary-forest);
  color: var(--text-white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.add-cart-btn:hover {
  background: var(--primary-leaf);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 146, 46, 0.35);
}

/* --------------------------------------------------------------------------
   B2B & EXPORT DIVISION (ADANI SPICES BENCHMARK)
   -------------------------------------------------------------------------- */
.b2b-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #092110 0%, #10381d 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.b2b-bg-shape {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 160, 84, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.b2b-content h2 {
  color: var(--text-white);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 20px;
}

.b2b-content p {
  color: #cfdad1;
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.b2b-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(8px);
}

.highlight-box strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold-bright);
  font-size: 0.96rem;
  margin-bottom: 6px;
}

.highlight-box p {
  font-size: 0.82rem;
  color: #b7c7ba;
  margin: 0;
  line-height: 1.45;
}

.b2b-card-form {
  background: var(--bg-card);
  color: var(--text-main);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.b2b-card-form h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.b2b-card-form p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-leaf);
  box-shadow: 0 0 0 3px rgba(52, 146, 46, 0.15);
  background: #ffffff;
}

/* --------------------------------------------------------------------------
   OFFICIAL CERTIFICATIONS & ACCREDITATIONS (ADANI BENCHMARK)
   -------------------------------------------------------------------------- */
.cert-section {
  padding: 80px 0;
  background-color: var(--bg-body);
  border-bottom: 1px solid var(--border-subtle);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 14px;
  text-align: center;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.cert-seal {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7f3e8 0%, #ede6d3 100%);
  border: 2px solid var(--accent-gold);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 12px;
  box-shadow: inset 0 0 0 3px #ffffff;
}

.cert-card strong {
  font-size: 0.84rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.cert-card small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   "COOK WITH ORGANIC PLANET" — CULINARY RECIPES (PUSHP BENCHMARK)
   -------------------------------------------------------------------------- */
.recipes-section {
  padding: 96px 0;
  background-color: var(--bg-cream);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.recipe-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.recipe-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recipe-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.recipe-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.recipe-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.recipe-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.spice-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(191, 160, 84, 0.12);
  color: #8c6a0c;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS & REVIEWS
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 96px 0;
  background-color: var(--bg-body);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.review-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  position: relative;
}

.review-quote-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.5;
  margin-bottom: 8px;
}

.review-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 18px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.reviewer-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: #081c0f;
  color: #ccd7cf;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #b3c2b6;
  margin-bottom: 22px;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: #b3c2b6;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-gold-bright);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.footer-contact-item .icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter p {
  font-size: 0.84rem;
  color: #b3c2b6;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 6px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.84rem;
  color: var(--text-white);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 0 18px;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--accent-gold-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 0.8rem;
  color: #8fa394;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   SLIDE-OVER SHOPPING CART DRAWER (PUSHP BENCHMARK)
   -------------------------------------------------------------------------- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  background: var(--bg-card);
  z-index: 101;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-body);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.cart-close-btn:hover {
  background: var(--primary-dark);
  color: var(--text-white);
}

/* Free Shipping Meter */
.shipping-meter-wrap {
  background: var(--bg-cream);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.78rem;
}

.shipping-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary-dark);
}

.progress-bar-bg {
  height: 6px;
  background: var(--border-subtle);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-leaf) 100%);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width var(--transition-base);
}

/* Cart Items List */
.cart-items-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}

.empty-cart-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: 0.6;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-body);
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-dark);
  margin-bottom: 2px;
}

.cart-item-weight {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 2px 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--text-main);
}

.qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.cart-item-price {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.cart-item-remove {
  color: var(--text-light);
  font-size: 0.78rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--accent-chilli);
}

/* Cart Footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-body);
}

.coupon-box {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.coupon-box input {
  flex: 1;
  padding: 8px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.coupon-box button {
  background: var(--primary-forest);
  color: var(--text-white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.total-row.grand-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-whatsapp-order {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-order:hover {
  background: #20bd5a;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   MODALS (QUICK VIEW & B2B QUOTATION)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92);
  transition: transform var(--transition-base);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-body);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--text-main);
  z-index: 5;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--primary-dark);
  color: var(--text-white);
}

.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 36px;
}

.quickview-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #f7f4ec;
}

/* --------------------------------------------------------------------------
   FLOATING TOOLS (WHATSAPP & TOAST)
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 60px);
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-notice.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .provenance-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .b2b-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .top-contacts {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--border-subtle);
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .mobile-toggle {
    display: grid;
  }
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .search-box input {
    width: 100%;
  }
  .search-box input:focus {
    width: 100%;
  }
  .quickview-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .hero {
    min-height: auto;
    padding: 50px 0;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .pillar-list {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   MULTI-PAGE INNER HERO & COMMON COMPONENTS
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background-color: var(--primary-dark);
  background-image: linear-gradient(135deg, rgba(10, 41, 20, 0.95) 0%, rgba(18, 67, 34, 0.88) 100%), url('../images/hero-spices.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  padding: 64px 0 60px;
  border-bottom: 1px solid var(--border-dark);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.breadcrumb a {
  color: #cad8cc;
}

.breadcrumb a:hover {
  color: var(--text-white);
}

.breadcrumb-sep {
  opacity: 0.6;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--text-white);
  margin-bottom: 14px;
}

.page-hero-lead {
  font-size: 1.1rem;
  color: #d2ded5;
  max-width: 680px;
  line-height: 1.6;
}

/* Specs & Logistics Table */
.spec-table-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
  margin: 32px 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  text-align: left;
}

.spec-table th {
  background: var(--bg-cream);
  padding: 14px 20px;
  color: var(--primary-dark);
  font-weight: 700;
  border-bottom: 1px solid var(--border-subtle);
}

.spec-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-body);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:hover td {
  background-color: #faf8f2;
}

/* Feature 3-Grid */
.feature-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin: 40px 0;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-leaf);
}

.feature-icon-lg {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-box h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Info Cards */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  padding: 80px 0;
}

.contact-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-detail-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(52, 146, 46, 0.12);
  color: var(--primary-leaf);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-detail-row strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-detail-row p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Timeline */
.timeline-list {
  position: relative;
  padding-left: 30px;
  margin: 36px 0;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--accent-gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-forest);
  border: 4px solid var(--bg-body);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-gold-bright);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

