/* ==========================================================================
   SAM'S DELIGHT - GLOBAL ALMOND & DRY FRUIT EXPORTS
   Design System: Theme 2 (Modern Premium Corporate - Boardroom Ready)
   Colors: Deep Espresso (#241D1A), Soft Ivory (#FAF8F3), Champagne Gold (#C5A46D), Muted Olive (#78806A)
   Background: Clean Crisp White (#FFFFFF)
   Typography: Headings 'Plus Jakarta Sans', Body 'Inter'
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAF8F3;
  --bg-tertiary: #F4F2EC;
  --bg-card: #FFFFFF;
  --bg-dark-accent: #241D1A;
  
  --text-main: #241D1A;         /* Deep Espresso */
  --text-muted: #5C554E;        /* Soft Espresso */
  --text-light: #8C847C;        /* Warm Grey */
  --text-on-dark: #FAF8F3;      /* Soft Ivory */
  
  --accent-gold: #C5A46D;       /* Champagne Gold */
  --accent-gold-hover: #B29158;
  --accent-gold-light: #F9F5EE;
  --accent-olive: #78806A;      /* Muted Olive */
  --accent-olive-light: #F0F2ED;
  --accent-brown: #3A2922;      /* Walnut Brown */
  
  --border-light: #E8E4DC;
  --border-gold: rgba(197, 164, 109, 0.4);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(36, 29, 26, 0.04);
  --shadow-md: 0 8px 24px rgba(36, 29, 26, 0.08);
  --shadow-lg: 0 16px 40px rgba(36, 29, 26, 0.12);
  --shadow-gold: 0 8px 25px rgba(197, 164, 109, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

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

/* Utility Containers & Spacing */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 992px) {
  .section-padding {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}

.bg-white { background-color: var(--bg-primary); }
.bg-soft-ivory { background-color: var(--bg-secondary); }
.bg-dark { background-color: var(--bg-dark-accent); color: var(--text-on-dark); }

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-pill.dark {
  background-color: rgba(197, 164, 109, 0.15);
  border-color: rgba(197, 164, 109, 0.3);
  color: var(--accent-gold);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Global Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 164, 109, 0.35);
}

.btn-secondary {
  background-color: var(--text-main);
  color: var(--bg-secondary);
}

.btn-secondary:hover {
  background-color: #3A2922;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: var(--accent-gold-light);
}

.btn-outline-gold {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

/* Dedicated Catalogue Button Hover & Styles */
.btn-download-cat {
  background: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: #FFFFFF !important;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(197, 164, 109, 0.3);
}

.btn-download-cat:hover {
  background: var(--accent-gold-hover) !important;
  border-color: var(--accent-gold-hover) !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 164, 109, 0.45);
}

.btn-download-cat:active {
  transform: translateY(-1px);
}

/* Navbar & Hero Glass Variant for Catalogue Button */
.navbar .btn-download-cat,
.hero-actions .btn-download-cat {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(8px);
}

.navbar .btn-download-cat:hover,
.hero-actions .btn-download-cat:hover {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 22px rgba(197, 164, 109, 0.45);
}

.hero-actions .btn-download-cat {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background-color: #241D1A !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  border-bottom: 2px solid var(--accent-gold);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #FFFFFF;
  transition: color var(--transition-fast);
}

.navbar.scrolled .logo {
  color: var(--text-main);
}

.brand-logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.footer-brand .brand-logo-img {
  height: 60px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .navbar-container {
    height: 72px;
  }
  
  .brand-logo-img {
    height: 40px;
    max-width: 170px;
  }
}

.logo:hover .brand-logo-img {
  transform: scale(1.04);
}

/* Header Navbar Logo Toggle (White Logo on Dark Background) */
.logo-light {
  display: block !important;
}

.logo-dark {
  display: none !important;
}

.navbar.scrolled .logo-light {
  display: block !important;
}

.navbar.scrolled .logo-dark {
  display: none !important;
}

.logo-sub {
  font-size: 0.6875rem;
  display: block;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-link {
  color: #FFFFFF !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold) !important;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.navbar.scrolled .nav-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--accent-gold);
}

.navbar.scrolled .mobile-toggle {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar.scrolled .mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: var(--accent-gold) !important;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.navbar.scrolled .mobile-toggle span {
  background-color: #FFFFFF !important;
}

/* Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 90%;
  max-width: 400px;
  height: calc(100vh - 80px);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right var(--transition-normal);
  border-left: 1px solid var(--border-light);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer .btn-download-cat {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(197, 164, 109, 0.3);
  width: 100%;
  justify-content: center;
}

.mobile-drawer .btn-download-cat:hover {
  background: var(--accent-gold-hover) !important;
  border-color: var(--accent-gold-hover) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 22px rgba(197, 164, 109, 0.45);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   HERO SECTION WITH VIDEO BACKGROUND
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 3rem;
  background-color: #171210;
  color: #FFFFFF;
  overflow: hidden;
}

/* Video Background Wrap */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: brightness(0.92) contrast(1.05);
  transition: opacity 0.5s ease;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(15, 12, 10, 0.65) 0%, 
    rgba(23, 18, 16, 0.35) 45%, 
    rgba(15, 12, 10, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content.auto-hidden {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 164, 109, 0.2);
  border: 1px solid var(--accent-gold);
  color: #F8E6C8;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
  letter-spacing: -0.01em;
}

.gradual-word {
  display: inline-block;
  white-space: nowrap;
}

.gradual-char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gradual-char.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.85rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.1rem;
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #E2DED8;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   NUMBERS / IMPACT SECTION (Sam Agri Style Grid)
   ========================================================================== */
.numbers-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 4.5rem 0;
}

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

@media (min-width: 576px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .numbers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.number-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.number-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--accent-gold);
  transition: width 0.4s ease;
}

.number-card:hover::after {
  width: 100px;
}

.number-val {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
  transition: transform var(--transition-fast);
}

.number-card:hover .number-val {
  transform: scale(1.04);
}

.number-label {
  font-family: var(--font-body);
  font-size: 0.78125rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ==========================================================================
   DOMESTIC & GLOBAL BRAND PRESENCE SECTION (Sam Agri Style Image-First Cards)
   ========================================================================== */
.domestic-section {
  background-color: #171210;
  color: #FFFFFF;
  padding: 6rem 0;
}

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

@media (min-width: 768px) {
  .domestic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .domestic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.domestic-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
}

.domestic-card:hover {
  transform: scale(1.03);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

.domestic-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.domestic-card:hover .domestic-card-img {
  transform: scale(1.12);
  filter: brightness(0.7);
}

.domestic-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.5s ease;
  z-index: 1;
}

.domestic-card:hover .domestic-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.95) 100%);
}

.domestic-card-body {
  position: relative;
  z-index: 2;
  width: 100%;
  transition: all 0.45s ease;
}

.domestic-brand-badge {
  display: none;
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.domestic-card:hover .domestic-brand-badge {
  display: inline-block;
  opacity: 1;
}

.domestic-brand-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
  margin: 0;
  transition: all 0.4s ease;
}

.domestic-card:hover .domestic-brand-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.domestic-brand-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 500;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}

.domestic-card:hover .domestic-brand-desc {
  max-height: 120px;
  opacity: 1;
  margin-bottom: 1rem;
}

.domestic-know-more {
  display: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.domestic-card:hover .domestic-know-more {
  display: inline-block;
  opacity: 1;
}

.video-control-btn:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
}

/* EXPORT TRUST BAR */
.trust-bar {
  position: relative;
  z-index: 10;
  margin-top: auto;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border-light);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.trust-logo-box {
  width: auto !important;
  min-width: 48px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.trust-badge-logo {
  max-height: 30px;
  max-width: 45px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.trust-text h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

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

/* ==========================================================================
   OUR STORY SECTION (Orchard to Exporter)
   ========================================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.story-image-wrap:hover .story-img {
  transform: scale(1.03);
}

.story-experience-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: #FFFFFF;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--accent-gold);
  max-width: 260px;
}

.exp-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.exp-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-content h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.story-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Timeline Process List */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.step-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.step-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WHAT WE DELIVER SECTION (Bento Grid 3+2 & Expand On Hover)
   ========================================================================== */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
}

/* Bento Wrapper & Rows */
.bento-product-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.bento-row-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .bento-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .bento-row-3 {
    display: flex;
    gap: 1.5rem;
    width: 100%;
  }

  .bento-row-3 .product-card {
    flex: 1;
    transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bento-row-3 .product-card:hover {
    flex: 1.65;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
  }
}

.bento-row-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .bento-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .bento-row-2 {
    display: flex;
    gap: 1.5rem;
    max-width: 76%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .bento-row-2 .product-card {
    flex: 1;
    transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bento-row-2 .product-card:hover {
    flex: 1.5;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
  }
}

.product-card {
  position: relative;
  min-height: 380px;
  border-radius: 2rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

.product-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.12);
  filter: brightness(0.65);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.5s ease;
  z-index: 2;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.95) 100%);
}

.product-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 4;
  background: rgba(36, 29, 26, 0.85);
  color: var(--accent-gold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.product-details {
  position: relative;
  z-index: 3;
  width: 100%;
  transition: all 0.45s ease;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
  margin: 0;
  transition: all 0.4s ease;
}

.product-card:hover .product-title {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.product-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 500;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}

.product-card:hover .product-desc {
  max-height: 100px;
  opacity: 1;
  margin-bottom: 0.75rem;
}

.product-specs {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  margin-bottom: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  padding-top: 0.5rem;
}

.product-card:hover .product-specs {
  max-height: 150px;
  opacity: 1;
  margin-bottom: 1rem;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 0.25rem 0;
  color: rgba(255, 255, 255, 0.85);
}

.product-specs li strong {
  color: var(--accent-gold);
}

.product-card-footer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s ease;
}

.product-card:hover .product-card-footer {
  max-height: 60px;
  opacity: 1;
}

/* ==========================================================================
   EXPORT CAPABILITIES & SOLUTIONS
   ========================================================================== */
/* ==========================================================================
   TRADE FEATURE CAROUSEL SECTION
   ========================================================================== */
.trade-carousel-container {
  width: 100%;
  max-width: 1280px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  border-radius: 2.5rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  min-height: 580px;
  background-color: #1E1815;
}

@media (min-width: 992px) {
  .trade-carousel-container {
    flex-direction: row;
    min-height: 600px;
    border-radius: 3.5rem;
  }
}

/* Left Panel: Vertical Rolling Chips */
.trade-chips-panel {
  width: 100%;
  padding: 3rem 1.5rem;
  background-color: #241D1A;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 360px;
}

@media (min-width: 992px) {
  .trade-chips-panel {
    width: 40%;
    padding: 3rem 2.5rem;
    min-height: auto;
  }
}

.chips-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, #241D1A 0%, rgba(36, 29, 26, 0.8) 50%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.chips-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(0deg, #241D1A 0%, rgba(36, 29, 26, 0.8) 50%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.chips-viewport {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.chip-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s ease;
  width: fit-content;
  max-width: 90%;
  text-align: left;
}

.chip-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.chip-item.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(197, 164, 109, 0.4);
  z-index: 5;
}

/* Right Panel: Cards Stage */
.trade-cards-panel {
  flex: 1;
  background-color: #FAF8F3;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232, 228, 220, 0.8);
}

@media (min-width: 992px) {
  .trade-cards-panel {
    border-top: none;
    border-left: 1px solid rgba(232, 228, 220, 0.8);
    padding: 3rem;
  }
}

.cards-stage {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-card {
  position: absolute;
  inset: 0;
  border-radius: 2.25rem;
  overflow: hidden;
  border: 6px solid #FFFFFF;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transition: all 0.7s cubic-bezier(0.26, 0.85, 0.35, 1);
  transform-origin: center center;
}

.trade-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.6s ease;
}

.trade-card.active {
  transform: translateX(0) scale(1) rotate(0deg);
  opacity: 1;
  z-index: 20;
  pointer-events: auto;
}

.trade-card.active .trade-card-img {
  filter: grayscale(0) blur(0) brightness(1);
}

.trade-card.prev {
  transform: translateX(-90px) scale(0.85) rotate(-3deg);
  opacity: 0.45;
  z-index: 10;
  pointer-events: none;
}

.trade-card.prev .trade-card-img {
  filter: grayscale(1) blur(2px) brightness(0.8);
}

.trade-card.next {
  transform: translateX(90px) scale(0.85) rotate(3deg);
  opacity: 0.45;
  z-index: 10;
  pointer-events: none;
}

.trade-card.next .trade-card-img {
  filter: grayscale(1) blur(2px) brightness(0.8);
}

.trade-card.hidden {
  transform: translateX(0) scale(0.7) rotate(0deg);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.trade-live-badge {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 164, 109, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(197, 164, 109, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 164, 109, 0); }
}

.trade-card-overlay {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  padding: 6rem 2rem 2.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

.trade-card-tag {
  background-color: var(--text-main);
  color: var(--accent-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  width: fit-content;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(197, 164, 109, 0.3);
  box-shadow: var(--shadow-sm);
}

.trade-card-desc {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.capability-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   QUALITY & CERTIFICATIONS BANNER
   ========================================================================== */
.cert-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
  }
}

.cert-card {
  background: #FFFFFF;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 165px;
}

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

.cert-badge-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.cert-logo-img {
  height: 52px;
  max-width: 110px;
  object-fit: contain;
  margin-bottom: 0.85rem;
  transition: transform var(--transition-fast);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.06));
}

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

.cert-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

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

/* ==========================================================================
   TESTIMONIALS & GLOBAL TRUST
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
}

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

.rating-stars {
  color: #F59E0B;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* Counter Metrics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-val {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-lbl {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   CONTACT US & REQUEST A QUOTE (RFQ)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

.contact-info-card {
  background: var(--bg-dark-accent);
  color: var(--text-on-dark);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(197, 164, 109, 0.1);
  pointer-events: none;
}

.contact-title {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.contact-desc {
  font-size: 0.9375rem;
  color: #D6D0C7;
  line-height: 1.6;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.detail-icon {
  display: none !important;
}

.detail-content h4 {
  font-size: 0.9375rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.detail-content p {
  font-size: 0.875rem;
  color: #BAB4AB;
}

.rfq-form-wrap {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-main);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 164, 109, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-dark-accent);
  color: var(--text-on-dark);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-brand p {
  color: #BAB4AB;
  font-size: 0.9375rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #BAB4AB;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: #8C847C;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 18, 16, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 1.5rem;
}

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

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-icon-wrap {
  display: none !important;
}
