@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================================================================
   Meridian Maritime - Luxury Homepage Redesign CSS
   Inspired by Apple, Stripe, Bentley, Maersk, and Aesop
   ========================================================================== */

/* Design System Variables */
:root {
  --bg-ivory: #F8F7F4;
  --primary-green: #143D26;
  --dark-emerald: #0E2418;
  --gold-accent: #D4AF37;
  --text-dark: #102A1F;
  --text-secondary: #5F6E68;
  --white: #FFFFFF;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Poppins', sans-serif;
  
  --transition-premium: 0.45s cubic-bezier(.22,.61,.36,1);
}

/* Global Background Setup */
body.luxury-home {
  background-color: var(--bg-ivory) !important;
  color: var(--text-dark);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* Header & Navbar - Transparent on load, scrolls to emerald */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition-premium), border-color var(--transition-premium), box-shadow var(--transition-premium);
}

.site-header.scrolled {
  background: rgba(14, 36, 24, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  box-sizing: border-box;
}

.site-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.site-navbar .nav-links a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.site-navbar .nav-links a:hover,
.site-navbar .nav-links a.active {
  color: var(--gold-accent) !important;
}

/* Gold active underline */
.site-navbar .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-accent);
  transition: width 0.3s ease;
}

.site-navbar .nav-links a:hover::after,
.site-navbar .nav-links a.active::after {
  width: 100%;
}

/* Gold CTA Button in Nav */
.site-navbar .btn-nav-cta {
  border: 1px solid var(--gold-accent) !important;
  color: var(--gold-accent) !important;
  background: rgba(212, 175, 55, 0.05);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.35s ease;
}

.site-navbar .btn-nav-cta:hover {
  background: var(--gold-accent) !important;
  color: var(--dark-emerald) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

/* ==========================================================================
   SECTION 2 - HERO (Replaced by Full-Width Slider & Centered Intro)
   ========================================================================== */

/* ==========================================================================
   SECTION 3 - PRODUCT CATEGORIES
   ========================================================================== */
.products-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--bg-ivory) !important;
  background-image: none !important;
  position: relative;
}

.products-section .section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem) auto;
}

.products-section .section-heading .section-subtitle {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.products-section .section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-dark) !important;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 32px !important;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION 4 - GLOBAL PRESENCE (3D Globe Visualization)
   ========================================================================== */
.global-presence {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
  overflow: hidden;
  background: radial-gradient(circle at center, #0F2E1F 0%, #081C12 50%, #030A06 100%) !important;
  color: #fff !important;
}

.stars-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  background-image: 
    radial-gradient(circle, #fff 0.75px, transparent 1px),
    radial-gradient(circle, #fff 0.75px, transparent 1px);
  background-size: 160px 160px, 280px 280px;
  background-position: 0 0, 45px 85px;
  animation: starsTwinkle 15s ease-in-out infinite;
}

@keyframes starsTwinkle {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

.global-container-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.global-info-side {
  display: flex;
  flex-direction: column;
}

.global-info-side h2 {
  color: #fff !important;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 15px;
}

.global-info-side .section-subtitle {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary) !important;
  font-weight: 600;
  display: block;
}

.global-info-side .section-desc {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.floating-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.stat-bubble {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.stat-bubble:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 12px 30px rgba(20, 61, 38, 0.25);
}

.stat-bubble .stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary) !important;
  font-family: var(--font-serif);
  margin-bottom: 4px;
}

.stat-bubble .stat-lbl {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65) !important;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.glass-info-card {
  background: rgba(15, 46, 31, 0.35) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4), 
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #fff !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.glass-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.04), transparent);
  transform: skewX(-30deg);
  pointer-events: none;
  transition: 1s ease-in-out;
}

.glass-info-card:hover::before {
  left: 100%;
}

.glass-info-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.glass-info-card .card-icon {
  color: var(--secondary) !important;
  font-size: 1.3rem;
}

.glass-info-card .card-country {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff !important;
  margin: 0;
  letter-spacing: 0.5px;
}

.glass-info-card .card-data-row {
  margin-bottom: 14px;
}

.glass-info-card .card-data-row:last-child {
  margin-bottom: 0;
}

.glass-info-card .data-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--secondary) !important;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
}

.glass-info-card .data-value {
  display: block;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.45;
  padding-left: 2px;
  transition: opacity 0.3s ease;
}

.glass-info-card .card-footer {
  margin-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

.glass-info-card .card-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4) !important;
  font-style: italic;
  display: block;
}

.global-globe-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.globe-3d-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  max-width: 600px;
  aspect-ratio: 1/1;
  margin: auto;
  border-radius: 50%;
  box-shadow: 
    0 0 100px rgba(20, 61, 38, 0.25), 
    0 0 40px rgba(212, 175, 55, 0.06);
  transition: transform 0.4s ease;
}

#3d-globe-canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
  display: block;
}

#3d-globe-canvas:active {
  cursor: grabbing;
}

@media (max-width: 992px) {
  .global-container-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .global-info-side {
    align-items: center;
  }
  .global-info-side h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .floating-stats-grid {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .glass-info-card {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .globe-3d-wrapper {
    height: 520px;
    max-width: 520px;
  }
  .global-info-side {
    order: 2;
  }
  .global-globe-side {
    order: 1;
  }
}

@media (max-width: 768px) {
  .global-presence {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }
  .globe-3d-wrapper {
    height: 420px;
    max-width: 420px;
  }
}

@media (max-width: 576px) {
  .globe-3d-wrapper {
    height: 330px;
    max-width: 330px;
  }
  .floating-stats-grid {
    gap: 12px;
  }
  .stat-bubble {
    padding: 12px 14px;
  }
  .stat-bubble .stat-num {
    font-size: 1.5rem;
  }
  .stat-bubble .stat-lbl {
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   SECTION 4 - WHY CHOOSE US (6 Columns, White BG)
   ========================================================================== */
.why-us.luxury-why {
  background-color: var(--white) !important;
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
  border-top: 1px solid rgba(20, 61, 38, 0.05);
  border-bottom: 1px solid rgba(20, 61, 38, 0.05);
}

.why-us .section-heading {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us .section-heading .section-subtitle {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.why-us .section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark) !important;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important; /* 3 Columns on desktop */
  gap: 32px !important;
  max-width: 1400px;
  margin: 0 auto;
}

.why-card {
  padding: 35px 28px !important;
  border: 1px solid rgba(20, 61, 38, 0.06) !important;
  border-radius: 20px !important;
  background: var(--bg-ivory) !important;
  transition: all var(--transition-premium) !important;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-8px) !important;
  background: var(--white) !important;
  border-color: rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 18px 45px rgba(20, 61, 38, 0.08) !important;
}

.why-card i {
  font-size: 2.2rem !important;
  color: var(--primary-green) !important;
  margin-bottom: 22px !important;
  display: inline-block;
  transition: transform 0.4s ease;
}

.why-card:hover i {
  transform: scale(1.1) rotate(5deg);
  color: var(--gold-accent) !important;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  margin: 0 0 10px 0 !important;
}

.why-card p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  color: var(--text-secondary) !important;
  margin: 0 !important;
}

/* ==========================================================================
   SECTION 5 - CALL TO ACTION (Curved Dark Emerald Overlay)
   ========================================================================== */
.cta.luxury-cta {
  background-color: var(--bg-ivory) !important;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.cta-card-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--dark-emerald) !important;
  border-radius: 40px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(14, 36, 24, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Luxury curved leaf overlay backdrop glow */
.cta-card-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 61, 38, 0.35) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Floating organic graphic assets */
.cta-card-wrapper::after {
  content: "🌿";
  position: absolute;
  right: 10%;
  bottom: 10%;
  font-size: 6rem;
  opacity: 0.08;
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content .section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-accent) !important;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white) !important;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.15;
}

.cta-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78) !important;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-buttons .btn-primary {
  background: var(--gold-accent);
  color: var(--dark-emerald) !important;
  border: 1px solid var(--gold-accent);
  padding: 16px 45px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-premium);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
  text-transform: uppercase;
}

.cta-buttons .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   FOOTER REDESIGN (Dark Emerald)
   ========================================================================== */
.footer.site-footer {
  background-color: var(--dark-emerald) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
  box-sizing: border-box;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 0 25px 0;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white) !important;
  margin: 0 0 22px 0;
  letter-spacing: 0.5px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

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

/* Social icons layout */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7) !important;
  margin: 0 !important;
  transition: all 0.35s ease;
}

.social-icons a:hover {
  background-color: var(--gold-accent);
  color: var(--dark-emerald) !important;
  border-color: var(--gold-accent);
  transform: translateY(-3px);
  padding: 0 !important;
}

/* Newsletter Input Form style */
.footer-newsletter-form {
  display: flex;
  width: 100%;
  gap: 8px;
  margin-top: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--white);
  font-size: 0.85rem;
  transition: border-color 0.3s ease;
}

.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-accent);
}

.footer-newsletter-form button {
  background-color: var(--gold-accent);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-emerald);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
  background-color: var(--white);
  transform: scale(1.05);
}

/* Footer Bottom Area */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4) !important;
  margin: 0;
}

/* ==========================================================================
   SCROLL REVEAL & SYSTEM TRANSITIONS
   ========================================================================== */
.luxury-home [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-home [data-reveal].reveal,
.luxury-home [data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered load delays */
.luxury-home [data-reveal-delay="100"] { transition-delay: 100ms; }
.luxury-home [data-reveal-delay="200"] { transition-delay: 200ms; }
.luxury-home [data-reveal-delay="300"] { transition-delay: 300ms; }
.luxury-home [data-reveal-delay="400"] { transition-delay: 400ms; }

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES (Bentley/Apple responsive stacking)
   ========================================================================== */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 991px) {
  /* Stack Hero layout */
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-left {
    padding-top: 8rem;
  }
  
  .hero-right {
    height: 480px;
  }
  

  
  /* Stack Why Choose Us grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 767px) {
  .site-navbar {
    padding: 16px 20px;
  }
  
  .site-navbar .nav-links {
    display: none; /* Mobile navigation uses burger / mobile drawer */
  }
  
  .hero-right {
    height: 380px;
  }
  
  .hero-left {
    padding: 7rem 20px 4rem 20px;
  }
  
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  .cta-card-wrapper {
    padding: 50px 20px;
    border-radius: 24px;
  }
}

/* ==========================================================================
   PREMIUM FAQ ACCORDION LAYOUT
   ========================================================================== */
.faq-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #F8F7F4;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}

.faq-section {
  max-width: 960px !important;
  margin: 90px auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

.faq-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  margin-top: 40px !important;
  width: 100% !important;
}

.faq-item {
  width: 100% !important;
  padding: 24px 28px !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(7, 94, 54, 0.16) !important;
  border-radius: 20px !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all 0.35s ease !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  outline: none !important;
  display: block !important;
  box-sizing: border-box !important;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 16px 45px rgba(7, 94, 54, 0.1) !important;
  transform: translateY(-3px) !important;
}

.faq-item.active,
.faq-item.open {
  border-color: #075e36 !important;
  box-shadow: 0 18px 50px rgba(7, 94, 54, 0.14) !important;
  background: #ffffff !important;
}

.faq-item > span {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  font-family: "Poppins", "Inter", sans-serif !important;
  font-size: 1.12rem !important;
  font-weight: 700 !important;
  color: #0c2b1e !important;
  -webkit-text-fill-color: #0c2b1e !important;
  transition: color 0.3s ease !important;
  line-height: 1.4 !important;
}

.faq-item:hover > span {
  color: #075e36 !important;
  -webkit-text-fill-color: #075e36 !important;
}

.faq-item > span::after {
  content: '+' !important;
  font-family: "Poppins", "Inter", sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(7, 94, 54, 0.08) !important;
  color: #075e36 !important;
  -webkit-text-fill-color: #075e36 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-left: 16px !important;
  transition: all 0.3s ease !important;
}

.faq-item:hover > span::after {
  background: #075e36 !important;
  color: #D4AF37 !important;
  -webkit-text-fill-color: #D4AF37 !important;
}

.faq-item.active > span::after,
.faq-item.open > span::after {
  content: '−' !important;
  background: #075e36 !important;
  color: #D4AF37 !important;
  -webkit-text-fill-color: #D4AF37 !important;
  transform: rotate(180deg) !important;
}

.faq-item p {
  color: #527364 !important;
  -webkit-text-fill-color: #527364 !important;
  line-height: 1.7 !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.98rem !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease !important;
}

.faq-item.active p,
.faq-item.open p {
  max-height: 300px !important;
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(7, 94, 54, 0.1) !important;
  opacity: 1 !important;
}

/* ==========================================================================
   SECTION 2 - LUXURY STACKED CINEMATIC HERO & SLIDER
   ========================================================================== */
.luxury-hero {
  min-height: 100vh;
  position: relative;
  background-color: #0E2418 !important; /* Deep Emerald */
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 80px 0; /* Room for transparent fixed header */
  z-index: 2;
}

.luxury-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 61, 38, 0.4) 0%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-container-stacked {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Upper Portion - Headlines & Stats */
.hero-content-stacked {
  text-align: left;
  width: 100%;
  margin-bottom: 60px;
  color: #fff;
}

.hero-badge {
  font-size: 0.8rem;
  color: var(--gold-accent) !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(214, 175, 55, 0.08);
  border: 1px solid rgba(214, 175, 55, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
}

.hero-content-stacked h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  color: #fff !important;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 0 44px 0;
  max-width: 680px;
}

/* Bottom Actions Row: Buttons on Left, Stats on Right */
.hero-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-buttons .btn-primary {
  background: var(--primary-green) !important;
  color: #fff !important;
  border: 1px solid var(--gold-accent) !important;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(20, 61, 38, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-buttons .btn-primary:hover {
  background: var(--gold-accent) !important;
  color: var(--dark-emerald) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.hero-buttons .btn-primary i {
  transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover i {
  transform: translateX(4px);
}

.hero-buttons .btn-outline {
  background: rgba(255, 255, 255, 0.03) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-buttons .btn-outline:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-3px);
}

/* Stats Row */
.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--gold-accent) !important;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Lower Portion: Full-Width Slider Centerpiece */
.hero-slider-stacked {
  width: 100%;
  position: relative;
}

.hero-slider-stacked .hero-swiper {
  width: 100%;
  height: clamp(480px, 62vh, 600px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glass Slider Card */
.glass-slider-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 480px;
  background: rgba(14, 36, 24, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  z-index: 5;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.glass-slider-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(212, 175, 55, 0.1);
}

.card-category {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--gold-accent) !important;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.glass-slider-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.glass-slider-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 0 22px 0;
}

.card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-accent) !important;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap 0.3s ease;
}

.card-cta-link i {
  transition: transform 0.3s ease;
}

.card-cta-link:hover i {
  transform: translateX(4px);
}

/* Zoom Transition for slider image (Ken Burns) */
.slider-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6000ms linear;
  transform: scale(1);
}

.swiper-slide-active .slider-image {
  transform: scale(1.08);
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 36, 24, 0.95) 0%, rgba(14, 36, 24, 0.4) 60%, transparent 100%);
  z-index: 2;
}

/* Minimalist navigation controls (Glass arrows with thin gold outline) */
.hero-swiper-prev,
.hero-swiper-next {
  color: var(--gold-accent) !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(14, 36, 24, 0.4) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.35s ease !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
}

.hero-swiper-prev::after,
.hero-swiper-next::after {
  font-size: 1rem !important;
  font-weight: 900 !important;
}

.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: var(--gold-accent) !important;
  color: var(--dark-emerald) !important;
  border-color: var(--gold-accent) !important;
}

.hero-swiper-prev { left: 24px !important; }
.hero-swiper-next { right: 24px !important; }

/* Custom Progress Line Indicator: 01 ━━━━━ 04 */
.hero-progress-wrapper {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 15;
  background: rgba(14, 36, 24, 0.6);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.progress-num-start,
.progress-num-end {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.progress-line-track {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.progress-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--gold-accent);
}

.progress-line-fill.animating {
  width: 100%;
  transition: width 5000ms linear;
}

/* Dotted Map Coordinate Grid Overlay */
.hero-map-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at center, rgba(212, 175, 55, 0.025) 0%, transparent 75%),
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 80px 80px, 80px 80px;
  background-position: center, center, center;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

/* Pulsing trade route coordinates */
.map-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--gold-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-accent);
}

.map-node::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold-accent);
  border-radius: 50%;
  animation: nodePulse 2.5s infinite ease-out;
  opacity: 0;
}

@keyframes nodePulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Particles layer */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background-color: var(--gold-accent);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(1.5px);
  pointer-events: none;
}

.p1 { width: 5px; height: 5px; top: 15%; left: 10%; animation: floatSlow 20s infinite ease-in-out; }
.p2 { width: 3px; height: 3px; top: 55%; left: 40%; animation: floatSlow 28s infinite ease-in-out; }
.p3 { width: 6px; height: 6px; top: 35%; left: 75%; animation: floatSlow 24s infinite ease-in-out; }
.p4 { width: 4px; height: 4px; top: 75%; left: 20%; animation: floatSlow 32s infinite ease-in-out; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.04; }
  50% { transform: translateY(-50px) translateX(25px); opacity: 0.15; }
}

/* Staggered slide content reveal */
.glass-slider-card .card-category,
.glass-slider-card h3,
.glass-slider-card p,
.glass-slider-card .card-cta-link {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 900ms cubic-bezier(.22,.61,.36,1), transform 900ms cubic-bezier(.22,.61,.36,1);
}

.swiper-slide-active .glass-slider-card .card-category {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 150ms;
}

.swiper-slide-active .glass-slider-card h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 230ms;
}

.swiper-slide-active .glass-slider-card p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 310ms;
}

.swiper-slide-active .glass-slider-card .card-cta-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 390ms;
}

/* Transparent Navbar solid on scroll */
.site-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease !important;
}

.site-header.scrolled,
.site-header.nav-scrolled {
  background: var(--dark-green) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}


/* ==========================================================================
   LANGUAGE TRANSLATOR WIDGET (Luxury Redesign)
   ========================================================================== */
.language-translator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50px !important;
  background: rgba(14, 36, 24, 0.6) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: #fff !important;
  overflow: visible !important;
  margin-right: 8px;
}

.language-translator:hover {
  border-color: var(--gold-accent) !important;
  background: rgba(14, 36, 24, 0.85) !important;
}

.language-translator i {
  color: var(--gold-accent) !important;
  font-size: 0.95rem;
}

/* Hide default Google Translate branding elements */
.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

.goog-te-gadget span,
.goog-te-gadget .goog-logo-link {
  display: none !important;
}

.goog-te-gadget .goog-te-combo {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  outline: none !important;
  cursor: pointer !important;
  padding: 2px 20px 2px 2px !important;
  margin: 0 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: 18px !important;
}

.goog-te-gadget .goog-te-combo option {
  background-color: var(--dark-emerald) !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
}

/* Hide standard top iframe bar from Google Translate */
body {
  top: 0 !important;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame {
  display: none !important;
  visibility: hidden !important;
}

@media (max-width: 1040px) {
  .site-navbar .language-translator {
    display: inline-flex !important;
    margin: 15px auto !important;
    border-color: rgba(20, 61, 38, 0.15) !important;
    background: rgba(20, 61, 38, 0.05) !important;
    color: var(--text-dark) !important;
  }
  .site-navbar .language-translator i {
    color: var(--primary-green) !important;
  }
  .site-navbar .goog-te-gadget .goog-te-combo {
    color: var(--text-dark) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23143D26'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  }
  .site-navbar .goog-te-gadget .goog-te-combo option {
    background-color: #fff !important;
    color: var(--text-dark) !important;
  }
}


/* ==========================================================================
   ABOUT US PAGE LUXURY REDESIGN OVERRIDES
   ========================================================================== */
.pdf-about-page {
  background-color: var(--bg-ivory) !important;
  color: var(--text-dark) !important;
}

/* About Hero Redesign */
.pdf-about-hero {
  min-height: 75vh;
  position: relative;
  background-color: #0E2418 !important;
  display: flex;
  align-items: center;
  padding: 160px 20px 80px 20px;
  overflow: hidden;
  z-index: 2;
  background-image: 
    linear-gradient(to right, rgba(14, 36, 24, 0.9) 30%, rgba(14, 36, 24, 0.4) 100%),
    url('images/Port.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.pdf-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at center, rgba(212, 175, 55, 0.025) 0%, transparent 75%),
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 80px 80px, 80px 80px;
  background-position: center;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.pdf-about-hero-copy {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
}

.pdf-kicker {
  font-size: 0.85rem;
  color: var(--gold-accent) !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(214, 175, 55, 0.08);
  border: 1px solid rgba(214, 175, 55, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
}

.pdf-about-hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff !important;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.pdf-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold-accent) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pdf-subtitle {
  font-size: clamp(1.05rem, 1.2vw, 1.30rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 40px;
  max-width: 580px;
}

.pdf-about-hero-copy .product-btn {
  background: var(--primary-green) !important;
  color: #fff !important;
  border: 1px solid var(--gold-accent) !important;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(20, 61, 38, 0.3);
}

.pdf-about-hero-copy .product-btn:hover {
  background: var(--gold-accent) !important;
  color: var(--dark-emerald) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* About Stats Strip */
.pdf-about-stats {
  display: flex;
  justify-content: space-around;
  background-color: var(--bg-ivory) !important;
  border-bottom: 1px solid rgba(20, 61, 38, 0.08);
  padding: 50px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.pdf-about-stats article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
}

.pdf-about-stats strong {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--primary-green) !important;
  font-weight: 700;
  margin-bottom: 8px;
}

.pdf-about-stats span {
  font-size: 0.85rem;
  color: var(--text-secondary) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Base Editorial Section Styles */
.pdf-about-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.pdf-section-heading {
  margin-bottom: 50px;
  text-align: left;
  position: relative;
}

.pdf-section-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--gold-accent);
}

.pdf-section-heading span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.pdf-section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark) !important;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

/* Who We Are Grid */
.pdf-who-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
}

.pdf-who-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary) !important;
  margin-bottom: 24px;
}

.pdf-promise-card {
  background: #ffffff !important;
  border: 1px solid rgba(20, 61, 38, 0.08) !important;
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(20, 61, 38, 0.03);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pdf-promise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-accent);
}

.pdf-promise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(20, 61, 38, 0.08);
}

.pdf-promise-card i {
  font-size: 2.5rem;
  color: var(--primary-green) !important;
  margin-bottom: 24px;
}

.pdf-promise-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark) !important;
  margin-bottom: 16px;
  font-weight: 700;
}

.pdf-promise-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary) !important;
  margin: 0;
}

/* Vision & Mission Grid */
.pdf-purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pdf-purpose-grid article {
  background: #ffffff !important;
  border: 1px solid rgba(20, 61, 38, 0.08) !important;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 15px 40px rgba(20, 61, 38, 0.03);
  transition: all 0.4s ease;
}

.pdf-purpose-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(20, 61, 38, 0.08);
}

.pdf-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(214, 175, 55, 0.08);
  border: 1px solid rgba(214, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.pdf-card-icon i {
  font-size: 1.5rem;
  color: var(--gold-accent) !important;
}

.pdf-purpose-grid span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.pdf-purpose-grid h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-dark) !important;
  margin-bottom: 20px;
  font-weight: 700;
}

.pdf-purpose-grid blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-green) !important;
  border-left: 2px solid var(--gold-accent);
  padding-left: 20px;
  margin: 0 0 24px 0;
}

.pdf-purpose-grid p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-secondary) !important;
  margin: 0;
}

/* Portfolio Cards Grid */
.pdf-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.pdf-portfolio-card {
  background: #ffffff !important;
  border: 1px solid rgba(20, 61, 38, 0.08) !important;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(20, 61, 38, 0.03);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pdf-portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(20, 61, 38, 0.08);
}

.pdf-portfolio-card i {
  font-size: 2.2rem;
  color: var(--primary-green) !important;
  margin-bottom: 24px;
}

.pdf-portfolio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-dark) !important;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.pdf-portfolio-card span {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--gold-accent) !important;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pdf-portfolio-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  width: 100%;
}

.pdf-portfolio-card ul li {
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  padding: 8px 0;
  border-bottom: 1px solid rgba(20, 61, 38, 0.05);
}

.pdf-portfolio-card a {
  margin-top: auto;
  color: var(--primary-green) !important;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.pdf-portfolio-card a::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.pdf-portfolio-card a:hover {
  color: var(--gold-accent) !important;
}

.pdf-portfolio-card a:hover::after {
  transform: translateX(4px);
}

/* Core Strengths Grid */
.pdf-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pdf-strength-grid article {
  background: #ffffff !important;
  border: 1px solid rgba(20, 61, 38, 0.08) !important;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(20, 61, 38, 0.03);
  transition: all 0.4s ease;
}

.pdf-strength-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(20, 61, 38, 0.06);
}

.pdf-strength-grid article i {
  font-size: 1.8rem;
  color: var(--gold-accent) !important;
  margin-bottom: 20px;
}

.pdf-strength-grid article h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark) !important;
  margin-bottom: 12px;
  font-weight: 700;
}

.pdf-strength-grid article p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary) !important;
  margin: 0;
}

/* Founders Profiles */
.pdf-founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pdf-founder-card {
  background: #ffffff !important;
  border: 1px solid rgba(20, 61, 38, 0.08) !important;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(20, 61, 38, 0.03);
  display: flex;
  gap: 30px;
  align-items: center;
  transition: all 0.4s ease;
}

.pdf-founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(20, 61, 38, 0.08);
}

.pdf-founder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(20, 61, 38, 0.05);
  border: 1px solid rgba(20, 61, 38, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdf-founder-icon i {
  font-size: 2.2rem;
  color: var(--primary-green) !important;
}

.pdf-founder-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-dark) !important;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.pdf-founder-copy span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-accent) !important;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 16px;
}

.pdf-founder-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pdf-founder-copy ul li {
  font-size: 0.9rem;
  color: var(--text-secondary) !important;
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
}

.pdf-founder-copy ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 0.7rem;
  color: var(--gold-accent) !important;
}

/* Target Markets Split Layout */
.pdf-market-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  width: 100%;
}

.pdf-market-copy span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.pdf-market-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-dark) !important;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.pdf-market-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary) !important;
  margin-bottom: 24px;
}

.pdf-market-copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.pdf-market-copy ul li {
  font-size: 0.98rem;
  color: var(--text-dark) !important;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdf-market-copy ul li i {
  color: var(--gold-accent) !important;
  font-size: 0.9rem;
}

.pdf-market-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  margin: 0;
}

.pdf-market-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.pdf-market-visual:hover img {
  transform: scale(1.05);
}

.pdf-market-visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(14, 36, 24, 0.95), transparent);
  padding: 30px;
  color: #fff;
  text-align: left;
}

.pdf-market-visual figcaption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.pdf-market-visual figcaption span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Commitment Grid */
.pdf-commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pdf-commitment-grid article {
  background: #ffffff !important;
  border: 1px solid rgba(20, 61, 38, 0.08) !important;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 15px 40px rgba(20, 61, 38, 0.03);
}

.pdf-commitment-grid article i {
  font-size: 2.2rem;
  color: var(--primary-green) !important;
  margin-bottom: 24px;
}

.pdf-commitment-grid article h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-dark) !important;
  margin-bottom: 24px;
  font-weight: 700;
}

.pdf-commitment-grid article ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pdf-commitment-grid article ul li {
  font-size: 0.95rem;
  color: var(--text-secondary) !important;
  padding: 10px 0;
  position: relative;
  padding-left: 24px;
  border-bottom: 1px solid rgba(20, 61, 38, 0.05);
}

.pdf-commitment-grid article ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold-accent) !important;
  font-size: 0.85rem;
}

/* Centered Brand Story Quote */
.pdf-brand-story {
  max-width: 850px;
  margin: 80px auto;
  text-align: center;
  padding: 60px 40px;
  background: rgba(20, 61, 38, 0.03);
  border: 1px solid rgba(20, 61, 38, 0.06);
  border-radius: 30px;
}

.pdf-brand-story span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-accent) !important;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.pdf-brand-story h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark) !important;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.pdf-brand-story p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary) !important;
  margin-bottom: 24px;
}

.pdf-brand-story strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary-green) !important;
  margin-bottom: 6px;
}

.pdf-brand-story em {
  font-size: 0.95rem;
  color: var(--gold-accent) !important;
  font-style: italic;
}

/* Responsive Styles for About page grids */
@media (max-width: 1024px) {
  .pdf-who-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pdf-strength-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pdf-market-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .pdf-about-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
  }
  .pdf-about-hero-copy {
    text-align: center;
  }
  .pdf-about-hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
  }
  .pdf-about-stats {
    padding: 30px 20px;
  }
  .pdf-purpose-grid {
    grid-template-columns: 1fr;
  }
  .pdf-founders-grid {
    grid-template-columns: 1fr;
  }
  .pdf-commitment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .pdf-strength-grid {
    grid-template-columns: 1fr;
  }
  .pdf-founder-card {
    flex-direction: column;
    text-align: center;
  }
  .pdf-founder-copy ul li {
    padding-left: 0;
    list-style: none;
  }
  .pdf-founder-copy ul li::before {
    display: none;
  }
}


/* ==========================================================================
   RESPONSIVE STACKED HERO LAYOUT OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
  .luxury-hero {
    padding: 140px 0 60px 0;
  }
  .hero-container-stacked {
    padding: 0 40px;
  }
  .hero-content-stacked h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  }
  .hero-actions-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .hero-slider-stacked .hero-swiper {
    height: 480px;
  }
  .glass-slider-card {
    padding: 28px;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .luxury-hero {
    padding: 120px 0 40px 0;
  }
  .hero-container-stacked {
    padding: 0 20px;
  }
  .hero-slider-stacked .hero-swiper {
    height: 450px;
  }
  .glass-slider-card {
    padding: 24px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 100%;
  }
  .hero-swiper-prev,
  .hero-swiper-next {
    display: none !important; /* Touch swipe controls only on smaller screens */
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .hero-buttons a {
    width: 100% !important;
    text-align: center;
    justify-content: center;
  }
  .hero-stats {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  .hero-slider-stacked .hero-swiper {
    height: 400px;
  }
  .glass-slider-card {
    padding: 20px;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
}


/* ==========================================================================
   AGRICULTURE CATEGORY PRODUCT CARDS REDESIGN
   ========================================================================== */
body[data-product-category="Agriculture"] .products-grid,
body[data-product-category="agriculture"] .products-grid,
body[data-product-category="Bio-Coal"] .products-grid,
body[data-product-category="bio-coal"] .products-grid,
body[data-product-category="Biofuel"] .products-grid,
body[data-product-category="biofuel"] .products-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 40px !important;
  max-width: 1200px !important;
  margin: 40px auto !important;
}

.agriculture-redesign-card {
  display: flex !important;
  flex-direction: row !important;
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(14, 36, 24, 0.03) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.5s ease !important;
  width: 100% !important;
  max-width: 1100px !important;
  min-width: 900px;
  min-height: 460px !important;
  margin: 0 auto !important;
  position: relative;
}

.agriculture-redesign-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--gold-accent) !important;
  box-shadow: 
    0 25px 50px rgba(14, 36, 24, 0.08),
    0 0 25px rgba(212, 175, 55, 0.2) !important;
}

/* Image Section (35%) */
.agriculture-redesign-card .product-image {
  position: relative !important;
  width: 35% !important;
  align-self: stretch !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  padding-bottom: 0 !important;
}

.agriculture-redesign-card .product-image img.agri-card-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
}

.agriculture-redesign-card:hover .product-image img.agri-card-img {
  transform: scale(1.08) !important;
}

.agriculture-redesign-card .product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 36, 24, 0.8) 0%, rgba(14, 36, 24, 0.2) 60%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.agriculture-redesign-card .badge-left {
  position: absolute !important;
  bottom: 24px !important;
  left: 24px !important;
  top: auto !important;
  background: var(--gold-accent) !important;
  color: var(--dark-emerald) !important;
  border: 1px solid var(--gold-accent) !important;
  padding: 8px 16px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border-radius: 4px !important;
  z-index: 2 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Content Section (65%) */
.agriculture-redesign-card .product-content {
  width: 65% !important;
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-grow: 0 !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
}

.agriculture-redesign-card .product-category {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  color: var(--gold-accent) !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.agriculture-redesign-card h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 40px !important;
  color: var(--text-dark) !important;
  font-weight: 700 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.2 !important;
  flex-shrink: 0 !important;
}

.agriculture-redesign-card p.subtitle {
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  color: var(--text-secondary) !important;
  margin-bottom: 24px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

/* Specification Section */
.agri-specs-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border-top: 1px solid rgba(20, 61, 38, 0.08) !important;
  border-bottom: none !important;
  padding: 10px 0 20px 0 !important;
  margin-bottom: 20px !important;
  flex-shrink: 0 !important;
}

.agri-spec-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(20, 61, 38, 0.08) !important;
}

.agri-spec-label {
  color: var(--text-secondary) !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
}

.agri-spec-label i.spec-icon {
  color: var(--primary-green) !important;
  font-size: 1rem !important;
  width: 24px !important;
  text-align: left !important;
  margin-right: 8px !important;
}

.agri-spec-value {
  color: var(--text-dark) !important;
  font-weight: 600;
}

/* Premium B2B Details Button */
.agriculture-redesign-card .agri-explore-btn {
  margin-top: auto !important;
  background: #0E2418 !important;
  color: #ffffff !important;
  border: 1px solid var(--gold-accent) !important;
  padding: 16px 32px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-align: center !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  width: fit-content !important;
  align-self: flex-start !important;
  flex-shrink: 0 !important;
  font-family: inherit !important;
}

.agriculture-redesign-card .agri-explore-btn:hover {
  background: var(--gold-accent) !important;
  color: var(--dark-emerald) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

.agriculture-redesign-card .agri-explore-btn i.arrow-icon {
  transition: transform 0.3s ease !important;
}

.agriculture-redesign-card .agri-explore-btn:hover i.arrow-icon {
  transform: translateX(6px) !important;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {
  .agriculture-redesign-card {
    min-width: 100% !important;
    height: 440px !important;
  }
  .agriculture-redesign-card .product-content {
    padding: 30px !important;
  }
  .agriculture-redesign-card h3 {
    font-size: 32px !important;
  }
}

@media (max-width: 768px) {
  body[data-product-category="Agriculture"] .products-grid,
  body[data-product-category="agriculture"] .products-grid,
  body[data-product-category="Bio-Coal"] .products-grid,
  body[data-product-category="bio-coal"] .products-grid,
  body[data-product-category="Biofuel"] .products-grid,
  body[data-product-category="biofuel"] .products-grid {
    gap: 30px !important;
    padding: 0 15px !important;
  }

  .agriculture-redesign-card {
    flex-direction: column !important;
    height: auto !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .agriculture-redesign-card .product-image {
    width: 100% !important;
    height: 250px !important;
  }

  .agriculture-redesign-card .product-content {
    width: 100% !important;
    padding: 24px !important;
  }

  .agriculture-redesign-card h3 {
    font-size: 28px !important;
  }
  
  .agriculture-redesign-card .agri-explore-btn {
    width: 100% !important;
    align-self: stretch !important;
  }
}


/* ==========================================================================
   CERAMICS COMPACT CATALOG CARDS
   Premium tile-catalog cards optimized for browsing 355+ ceramic products.
   Scoped to Ceramics category pages only.
   ========================================================================== */

body[data-product-category="Ceramics"] .products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin-top: 32px !important;
  max-width: none !important;
  flex-direction: unset !important;
  align-items: stretch !important;
}

.ceramic-catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1.5px solid rgba(13, 139, 92, 0.10);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(12, 66, 47, 0.07);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s ease,
              box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
}

.ceramic-catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.72);
  box-shadow:
    0 20px 48px rgba(12, 66, 47, 0.13),
    0 0 0 3px rgba(212, 160, 23, 0.08);
}

/* ── Image ── */
.ceramic-catalog-card .ceramic-cat-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f0f7f4, #eaf4ef);
  flex-shrink: 0;
}

.ceramic-catalog-card .ceramic-cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.5s ease;
}

.ceramic-catalog-card:hover .ceramic-cat-image img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.04);
}

/* ── Body ── */
.ceramic-catalog-card .ceramic-cat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
  flex: 1;
}

.ceramic-catalog-card .ceramic-cat-name {
  margin: 0;
  color: #10231c;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.ceramic-catalog-card .ceramic-cat-collection {
  display: block;
  margin: -2px 0 0;
  color: #61756c;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Specs Table ── */
.ceramic-catalog-card .ceramic-cat-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  padding: 10px 12px;
  margin-top: auto;
  border: 1px solid rgba(13, 139, 92, 0.08);
  border-radius: 12px;
  background: #f7fbf9;
}

.ceramic-catalog-card .ceramic-cat-spec-label {
  color: #61756c;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.9;
}

.ceramic-catalog-card .ceramic-cat-spec-value {
  color: #10231c;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Request Quote Button ── */
.ceramic-catalog-card .ceramic-cat-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4a017, #f0c65c);
  color: #17310f;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.18);
  transition: transform 0.35s ease,
              box-shadow 0.35s ease;
  cursor: pointer;
}

.ceramic-catalog-card .ceramic-cat-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 160, 23, 0.30);
}

/* ── Responsive: Tablet → 3 columns ── */
@media (max-width: 1100px) {
  body[data-product-category="Ceramics"] .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
  }
}

/* ── Responsive: Mobile → 2 columns ── */
@media (max-width: 680px) {
  body[data-product-category="Ceramics"] .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .ceramic-catalog-card .ceramic-cat-body {
    padding: 12px 12px 14px;
    gap: 6px;
  }

  .ceramic-catalog-card .ceramic-cat-name {
    font-size: 0.82rem;
  }

  .ceramic-catalog-card .ceramic-cat-collection {
    font-size: 0.68rem;
  }

  .ceramic-catalog-card .ceramic-cat-specs {
    padding: 8px 10px;
    gap: 2px 8px;
  }

  .ceramic-catalog-card .ceramic-cat-spec-label,
  .ceramic-catalog-card .ceramic-cat-spec-value {
    font-size: 0.66rem;
  }

  .ceramic-catalog-card .ceramic-cat-quote {
    min-height: 36px;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   AGRICULTURE EXPORT PORTAL REDESIGN
   ========================================================================== */

body[data-product-category="Agriculture"] {
  background-color: #F8F7F3 !important;
  font-family: 'Poppins', sans-serif !important;
}

/* ── Breadcrumb ── */
.agri-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
.agri-breadcrumb a {
  color: #61756c;
  text-decoration: none;
  transition: color 0.3s;
}
.agri-breadcrumb a:hover {
  color: #143D26;
}
.agri-breadcrumb i {
  font-size: 0.7rem;
  color: #c0cfc7;
}
.agri-breadcrumb span {
  color: #143D26;
  font-weight: 600;
}

/* ── Landing Page Hero ── */
.agri-landing-hero {
  padding: 60px 0;
  margin-bottom: 40px;
}
.agri-landing-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto;
}
.agri-landing-hero-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agri-landing-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #D4AF37;
  text-transform: uppercase;
}
.agri-landing-hero-left h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.15;
  color: #143D26;
  margin: 0;
}
.agri-landing-hero-left p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #61756c;
  max-width: 580px;
  margin: 0;
}
.agri-landing-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(20, 61, 38, 0.08);
}

/* ── Landing Page Subcategories ── */
.agri-landing-subcategories {
  width: min(1380px, calc(100% - 36px));
  margin: 0 auto 80px;
}
.agri-landing-section-title {
  margin-bottom: 48px;
  text-align: center;
}
.agri-landing-section-title h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  color: #143D26;
  margin-bottom: 12px;
  font-weight: 700;
}
.agri-landing-section-title p {
  color: #61756c;
  font-size: 1rem;
}
.agri-subcategories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.agri-subcat-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  border: 1px solid rgba(20, 61, 38, 0.04);
}
.agri-subcat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(20, 61, 38, 0.08);
}
.agri-subcat-card-img-wrapper {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #f4f6f5;
}
.agri-subcat-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.agri-subcat-card:hover .agri-subcat-card-img-wrapper img {
  transform: scale(1.06);
}
.agri-subcat-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.agri-subcat-card-info h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.5rem !important;
  color: #143D26;
  margin: 0 0 10px;
  font-weight: 700;
}
.agri-subcat-card-info p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #61756c;
  margin: 0 0 20px;
  flex: 1;
}
.agri-subcat-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.agri-subcat-product-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: #D4AF37;
}
.agri-subcat-explore-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: #143D26;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.agri-subcat-explore-btn i {
  transition: transform 0.3s;
}
.agri-subcat-card:hover .agri-subcat-explore-btn i {
  transform: translateX(4px);
}

/* ── Subcategory Layout (Sidebar & Main content) ── */
.agri-subcategory-layout {
  width: min(1380px, calc(100% - 36px));
  margin: 40px auto 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.agri-sidebar {
  position: sticky;
  top: 120px;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(20, 61, 38, 0.04);
}
.agri-sidebar-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.6rem !important;
  color: #143D26;
  margin: 0 0 20px;
  font-weight: 700;
  border-bottom: 1px solid rgba(20, 61, 38, 0.08);
  padding-bottom: 12px;
}
.agri-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agri-sidebar-links a {
  display: block;
  padding: 12px 18px;
  border-radius: 12px;
  color: #61756c;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.agri-sidebar-links a:hover {
  background: rgba(20, 61, 38, 0.04);
  color: #143D26;
}
.agri-sidebar-links a.active {
  background: #143D26 !important;
  color: #ffffff !important;
}
.agri-subcategory-content {
  display: flex;
  flex-direction: column;
}

/* ── Subcategory Hero ── */
.agri-subcategory-hero {
  margin-bottom: 40px;
  padding: 20px 0 !important;
  text-align: center !important;
}
.agri-subcategory-hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
  color: #143D26 !important;
  margin: 0 auto 15px !important;
  font-weight: 800 !important;
  position: relative !important;
  display: inline-block !important;
}
.agri-subcategory-hero h1::after {
  content: "" !important;
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background-color: #D4AF37 !important;
  margin: 15px auto 0 !important;
}
.agri-subcategory-hero p {
  color: #4b5563 !important;
  font-size: 1.1rem !important;
  max-width: 650px !important;
  margin: 0 auto !important;
  font-family: 'Poppins', sans-serif !important;
  line-height: 1.6 !important;
}

/* ── Sticky Filter Bar ── */
.agri-sticky-filter-bar {
  position: sticky;
  top: 100px;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px;
}
.agri-filter-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.agri-search-wrapper {
  position: relative;
  min-width: 240px;
}
.agri-search-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0b2a6;
  font-size: 0.9rem;
}
.agri-search-wrapper input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid rgba(20, 61, 38, 0.08);
  border-radius: 10px;
  background: #F8F7F3;
  font-family: inherit;
  font-size: 0.88rem;
  color: #143D26;
  outline: none;
  transition: all 0.3s;
}
.agri-search-wrapper input:focus {
  border-color: #143D26;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(20, 61, 38, 0.04);
}
.agri-select-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.agri-select-wrapper label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #61756c;
}
.agri-select-wrapper select {
  padding: 10px 28px 10px 14px;
  border: 1px solid rgba(20, 61, 38, 0.08);
  border-radius: 10px;
  background: #F8F7F3 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23143D26' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat right 12px center;
  background-size: 10px;
  appearance: none;
  font-family: inherit;
  font-size: 0.88rem;
  color: #143D26;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}
.agri-select-wrapper select:focus {
  border-color: #143D26;
  background-color: #ffffff;
}
.agri-filter-right {
  display: flex;
  align-items: center;
}
.agri-view-toggle {
  display: flex;
  background: #F8F7F3;
  padding: 4px;
  border-radius: 8px;
  gap: 2px;
}
.agri-toggle-btn {
  border: 0;
  background: transparent;
  color: #61756c;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.agri-toggle-btn.active {
  background: #ffffff;
  color: #143D26;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* ── Product Catalog Layout (Grid / List) ── */
.agri-products-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 28px;
}
.agri-products-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.agri-redesign-prod-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(20, 61, 38, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.agri-redesign-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(20, 61, 38, 0.08);
}
.agri-redesign-prod-card .prod-card-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f4f6f5;
}
.agri-redesign-prod-card .prod-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.agri-redesign-prod-card:hover .prod-card-image img {
  transform: scale(1.06);
}
.agri-redesign-prod-card .prod-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.agri-redesign-prod-card .prod-card-info h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.4rem !important;
  color: #143D26;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.25;
}
.agri-redesign-prod-card .prod-card-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  background: #F8F7F3;
  border-radius: 12px;
  padding: 14px 18px;
}
.agri-redesign-prod-card .prod-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  line-height: 1.6;
}
.agri-redesign-prod-card .spec-label {
  color: #61756c;
  font-weight: 600;
}
.agri-redesign-prod-card .spec-value {
  color: #143D26;
  font-weight: 700;
  text-align: right;
}
.agri-redesign-prod-card .prod-card-quote-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: #143D26;
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(20, 61, 38, 0.15);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.agri-redesign-prod-card .prod-card-quote-btn:hover {
  background: #D4AF37;
  color: #143D26;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

/* ── List View Style overrides ── */
.agri-products-list .agri-redesign-prod-card {
  flex-direction: row;
  align-items: center;
  aspect-ratio: auto;
  min-height: 220px;
}
.agri-products-list .agri-redesign-prod-card .prod-card-image {
  width: 300px;
  height: 220px;
  aspect-ratio: auto;
  flex-shrink: 0;
}
.agri-products-list .agri-redesign-prod-card .prod-card-info {
  padding: 28px;
}
.agri-products-list .agri-redesign-prod-card .prod-card-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 12px 20px;
  margin-bottom: 20px;
}
.agri-products-list .agri-redesign-prod-card .prod-spec-row {
  flex-direction: column;
  gap: 4px;
}
.agri-products-list .agri-redesign-prod-card .spec-value {
  text-align: left;
}
.agri-products-list .agri-redesign-prod-card .prod-card-quote-btn {
  width: auto;
  padding: 0 32px;
  align-self: flex-start;
}

/* ── Fallback ── */
.agri-no-products-fallback {
  grid-column: 1 / -1;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  color: #61756c;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.agri-no-products-fallback i {
  font-size: 2rem;
  color: #D4AF37;
}

/* ── Quote Modal ── */
.agri-quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 36, 24, 0.6);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.agri-quote-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.agri-modal-dialog {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  width: min(600px, calc(100% - 32px));
  box-shadow: 0 30px 90px rgba(14, 36, 24, 0.25);
  position: relative;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  border: 1px solid rgba(20, 61, 38, 0.08);
}
.agri-quote-modal.active .agri-modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.agri-modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  border: 0;
  background: transparent;
  color: #61756c;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}
.agri-modal-close:hover {
  color: #D4AF37;
  transform: rotate(90px) scale(1.1);
}
.agri-modal-header {
  margin-bottom: 28px;
}
.agri-modal-header h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 2.2rem !important;
  color: #143D26;
  margin: 0 0 8px;
  font-weight: 800;
}
.agri-modal-header p {
  color: #61756c;
  font-size: 0.95rem;
  margin: 0;
}
.agri-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agri-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.agri-modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #143D26;
  transition: color 0.3s ease;
}
.agri-modal-form label:focus-within {
  color: #D4AF37;
}
.agri-modal-form input,
.agri-modal-form textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(20, 61, 38, 0.1);
  border-radius: 10px;
  background: #F8F7F3;
  font-family: inherit;
  font-size: 0.88rem;
  color: #143D26;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.agri-modal-form input:focus,
.agri-modal-form textarea:focus {
  border-color: #D4AF37;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}
.agri-modal-form input[readonly] {
  background-color: #eaf1ed;
  border-color: rgba(20, 61, 38, 0.06);
  cursor: not-allowed;
  font-weight: 600;
}
.agri-modal-submit-btn {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: #143D26;
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 61, 38, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 10px;
}
.agri-modal-submit-btn:hover {
  background: #D4AF37;
  color: #143D26;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.35);
}
.agri-modal-status {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0;
  min-height: 20px;
}

/* ── Responsive media configurations ── */
@media (max-width: 1200px) {
  .agri-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .agri-subcategory-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .agri-sidebar {
    position: relative;
    top: 0;
    width: 100%;
  }
  .agri-sidebar-links {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .agri-sidebar-links li {
    flex: 0 0 auto;
  }
  .agri-subcategories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .agri-landing-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .agri-landing-hero-right {
    order: -1;
  }
  .agri-products-list .agri-redesign-prod-card {
    flex-direction: column;
    align-items: stretch;
  }
  .agri-products-list .agri-redesign-prod-card .prod-card-image {
    width: 100%;
    height: 200px;
  }
  .agri-products-list .agri-redesign-prod-card .prod-card-info {
    padding: 24px;
  }
  .agri-products-list .agri-redesign-prod-card .prod-card-specs {
    grid-template-columns: 1fr 1fr;
  }
  .agri-products-list .agri-redesign-prod-card .prod-card-quote-btn {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .agri-subcategories-grid {
    grid-template-columns: 1fr;
  }
  .agri-products-grid {
    grid-template-columns: 1fr;
  }
  .agri-sticky-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    position: relative;
    top: 0;
  }
  .agri-filter-left {
    flex-direction: column;
    align-items: stretch;
  }
  .agri-search-wrapper {
    min-width: 0;
  }
  .agri-view-toggle {
    display: none;
  }
  .agri-modal-dialog {
    padding: 24px;
  }
  .agri-form-row {
    grid-template-columns: 1fr;
  }
}

/* Dynamic Agriculture Product Cards Redesign (Horizontal layout) */
.agri-redesign-prod-card {
  display: flex !important;
  flex-direction: row !important;
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 15px 35px rgba(14, 36, 24, 0.03) !important;
  margin-bottom: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.agri-redesign-prod-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--gold-accent) !important;
  box-shadow: 
    0 25px 50px rgba(14, 36, 24, 0.08),
    0 0 25px rgba(212, 175, 55, 0.2) !important;
}

.agri-redesign-prod-card .prod-card-image {
  width: 250px !important;
  min-width: 250px !important;
  height: 100% !important;
  aspect-ratio: 1/1 !important;
  overflow: hidden !important;
}

.agri-redesign-prod-card .prod-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.agri-redesign-prod-card:hover .prod-card-image img {
  transform: scale(1.05) !important;
}

.agri-redesign-prod-card .prod-card-info {
  padding: 30px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-grow: 1 !important;
}

.agri-redesign-prod-card .prod-card-info h3 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  margin: 0 0 15px 0 !important;
}

.agri-redesign-prod-card .prod-card-specs {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 15px !important;
  margin-bottom: 24px !important;
  background: rgba(20, 61, 38, 0.04) !important;
  border: 1px solid rgba(20, 61, 38, 0.08) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
}

.agri-redesign-prod-card .prod-spec-row {
  display: flex !important;
  flex-direction: column !important;
  border-left: 2.5px solid #D4AF37 !important;
  padding-left: 10px !important;
  justify-content: center !important;
}

.agri-redesign-prod-card .spec-label {
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  color: var(--text-secondary) !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 4px !important;
  font-weight: 700 !important;
}

.agri-redesign-prod-card .spec-value {
  font-size: 0.95rem !important;
  color: var(--text-dark) !important;
  font-weight: 600 !important;
}

.agri-redesign-prod-card .prod-card-quote-btn {
  align-self: flex-start !important;
  background: var(--dark-emerald) !important;
  color: var(--gold-accent) !important;
  border: 1px solid var(--dark-emerald) !important;
  padding: 10px 20px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.agri-redesign-prod-card .prod-card-quote-btn:hover {
  background: var(--gold-accent) !important;
  color: var(--dark-emerald) !important;
  border-color: var(--gold-accent) !important;
  transform: translateY(-1px) !important;
}

/* Dynamic Ceramics Product Cards Redesign (Compact grid layout) */
.ceramic-catalog-card {
  background: #0E3A28 !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  display: flex !important;
  flex-direction: column !important;
}

.ceramic-catalog-card:hover {
  transform: translateY(-6px) !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12) !important;
}

.ceramic-cat-image {
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  overflow: hidden !important;
}

.ceramic-cat-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.ceramic-catalog-card:hover .ceramic-cat-image img {
  transform: scale(1.04) !important;
}

.ceramic-cat-body {
  padding: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.ceramic-cat-name {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #F7F7F5 !important;
  margin: 0 0 15px 0 !important;
}

.ceramic-cat-specs {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
  background: #143d26 !important; /* solid brand dark green for high contrast */
  padding: 12px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(212, 175, 87, 0.2) !important;
}

.ceramic-spec-row {
  display: flex !important;
  justify-content: space-between !important;
  font-size: 0.85rem !important;
}

.ceramic-cat-spec-label {
  color: #D4AF37 !important; /* brand gold */
  font-weight: 600 !important;
}

.ceramic-cat-spec-value {
  color: #ffffff !important; /* pure white for maximum legibility */
  text-align: right !important;
  font-weight: 500 !important;
}

.ceramic-cat-quote-btn-wrapper {
  margin-top: auto !important;
  text-align: center !important;
}

.ceramic-cat-quote {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: #0e2418 !important; /* dark forest green text on gold button for perfect contrast */
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: transform 0.2s ease !important;
}

.ceramic-catalog-card:hover .ceramic-cat-quote {
  transform: translateX(4px) !important;
}

/* Responsive adjustments for Agriculture cards */
@media (max-width: 768px) {
  .agri-redesign-prod-card {
    flex-direction: column !important;
  }
  .agri-redesign-prod-card .prod-card-image {
    width: 100% !important;
    min-width: 100% !important;
    aspect-ratio: 16/10 !important;
  }
  .agri-redesign-prod-card .prod-card-specs {
    grid-template-columns: 1fr !important;
  }
}

/* Styles for Category Range Pages (like agriculture.html) */
.category-range,
.category-live-products {
  background-color: #062A1B !important;
  color: #F7F7F5 !important;
  padding: 140px 0 100px !important;
  min-height: 100vh;
}

.category-heading {
  text-align: center;
  margin-bottom: 50px;
}

.category-heading span {
  color: #D4AF37 !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.category-heading h2 {
  color: #F7F7F5 !important;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  font-weight: 700;
  margin: 0;
}

.category-range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.category-range-grid article {
  background: #0E3A28 !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.category-range-grid article:hover {
  transform: translateY(-6px) !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12) !important;
}

.category-range-grid article a {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.category-range-grid article img {
  width: 100% !important;
  aspect-ratio: 16/11 !important;
  object-fit: cover !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
  transition: transform 0.5s ease !important;
}

.category-range-grid article:hover img {
  transform: scale(1.03) !important;
}

.category-range-grid article .fa-solid,
.category-range-grid article i {
  font-size: 3rem !important;
  color: #D4AF37 !important;
  display: block !important;
  text-align: center !important;
  margin: 30px auto 20px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.category-range-grid article h3 {
  color: #F7F7F5 !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  padding: 0 20px !important;
  margin: 15px 0 8px !important;
}

.category-range-grid article p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  padding: 0 20px 24px !important;
  margin: 0 !important;
  min-height: 70px !important;
}

/* Eyebrow Breadcrumb Styling */
.category-hero-eyebrow {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  margin-bottom: 12px !important;
  letter-spacing: 0.05em !important;
}

.category-hero-eyebrow a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.category-hero-eyebrow a:hover {
  color: #D4AF37 !important;
}

.category-hero-eyebrow span {
  color: #D4AF37 !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   PREMIUM HERO BANNER COMPONENT FOR CERAMICS
   ========================================================================== */

/* 1. Main Hero Container */
body[data-product-category="Ceramics"] .category-hero-premium {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  height: 420px !important;
  min-height: 420px !important;
  padding: 40px clamp(18px, 5vw, 70px) !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  background-color: #0E2418 !important;
  /* background-image is set inline in category.php */
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  animation: heroBgZoom 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* 2. Linear Gradient Overlay Layer (using ::before) */
body[data-product-category="Ceramics"] .category-hero-premium::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(
    rgba(0, 0, 0, 0.68),
    rgba(0, 0, 0, 0.42)
  ) !important;
  pointer-events: none !important;
}

body[data-product-category="Ceramics"] .category-hero-premium::after {
  display: none !important;
  content: none !important;
}

/* 3. Hero Inner Container (No side panels, aligned bottom-left) */
body[data-product-category="Ceramics"] .category-hero-inner {
  display: block !important;
  width: min(1200px, 100%) !important;
  margin: 0 auto 0 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

body[data-product-category="Ceramics"] .category-hero-copy {
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 780px !important;
  display: block !important;
  text-align: left !important;
}

/* 4. Luxury Breadcrumb Eyebrow */
body[data-product-category="Ceramics"] .category-hero-eyebrow {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  font-family: "Poppins", sans-serif !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 15px !important;
  text-transform: capitalize !important;
  text-shadow: none !important;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards !important;
}

body[data-product-category="Ceramics"] .category-hero-eyebrow a {
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

body[data-product-category="Ceramics"] .category-hero-eyebrow a:hover {
  color: #D4AF37 !important;
}

body[data-product-category="Ceramics"] .category-hero-eyebrow span {
  color: #D4AF37 !important;
  font-weight: 600 !important;
}

/* 5. Heading Typography (Playfair Display, Elegant, High-Contrast) */
body[data-product-category="Ceramics"] .category-hero-copy h1 {
  font-family: "Playfair Display", serif !important;
  color: #FFFFFF !important;
  font-size: 64px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  text-shadow: none !important;
  letter-spacing: -0.01em !important;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards !important;
}

/* Gold Divider Line (Animates expand from left to right) */
body[data-product-category="Ceramics"] .category-hero-copy h1::after {
  content: "" !important;
  display: block !important;
  height: 2px !important;
  background-color: #D4AF37 !important;
  margin: 20px 0 18px 0 !important;
  transform-origin: left !important;
  transform: scaleX(0) !important;
  animation: heroLineExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards !important;
}

/* 6. Subtitle Typography (Poppins, Clean, readable) */
body[data-product-category="Ceramics"] .category-hero-copy p {
  font-family: "Poppins", sans-serif !important;
  color: rgba(255, 255, 255, 0.9) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  max-width: 680px !important;
  text-shadow: none !important;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards !important;
}

/* 7. Keyframes Animations */
@keyframes heroBgZoom {
  0% {
    background-size: 112% 112% !important;
  }
  100% {
    background-size: 104% 104% !important;
  }
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px) !important;
  }
  100% {
    opacity: 1;
    transform: translateY(0) !important;
  }
}

@keyframes heroLineExpand {
  0% {
    transform: scaleX(0) !important;
  }
  100% {
    transform: scaleX(1) !important;
    width: 90px !important;
  }
}

/* 8. Responsive Adaptations */
@media (max-width: 1024px) {
  body[data-product-category="Ceramics"] .category-hero-premium {
    height: 340px !important;
    min-height: 340px !important;
    padding: 30px clamp(15px, 4vw, 40px) !important;
  }

  body[data-product-category="Ceramics"] .category-hero-copy h1 {
    font-size: 48px !important;
  }

  body[data-product-category="Ceramics"] .category-hero-copy h1::after {
    margin: 15px 0 15px 0 !important;
  }
}

@media (max-width: 640px) {
  body[data-product-category="Ceramics"] .category-hero-premium {
    height: 280px !important;
    min-height: 280px !important;
    padding: 25px 20px !important;
  }

  body[data-product-category="Ceramics"] .category-hero-copy h1 {
    font-size: 34px !important;
  }

  body[data-product-category="Ceramics"] .category-hero-copy p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
}

/* 3 columns layout for Ceramic Cards Grid */
/* ===========================================
   CERAMIC SIZE SECTIONS
=========================================== */

.ceramic-size-section{
    width:100%;
    display:block;
    margin:80px 0;
    clear:both;
}

/* Size Header Card */

.size-header{
    width:100%;
    background:#fff;
    border-radius:24px;
    padding:35px;
    margin-bottom:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.size-header h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
    color:#143D26;
}

.size-header p{
    max-width:700px;
    color:#666;
    line-height:1.8;
}

/* ===========================================
   PRODUCT GRID
=========================================== */

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:35px;
    width:100%;
}

/* Force parent productsGrid to act as block container on Ceramics page */
body[data-product-category="Ceramics"] #productsGrid {
  display: block !important;
  width: 100% !important;
}

/* Product Card */

.product-card{
    width:100%;
}

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

@media(max-width:992px){

.products-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.products-grid{
    grid-template-columns:1fr;
}

.size-header h2{
    font-size:36px;
}

}

/* Hide original category range cards for Ceramics category */
body[data-product-category="Ceramics"] .category-range {
  display: none !important;
}

/* Catalogue Action Buttons styling */
.ceramic-btn-secondary:hover {
  background-color: rgba(20, 61, 38, 0.05) !important;
}

.ceramic-btn-primary:hover {
  background-color: #D4AF37 !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
}

/* Minimalist Ceramic Card Overrides */
.ceramic-catalog-card .ceramic-cat-quote {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #D4AF37 !important;
  padding: 5px 10px !important;
  transition: color 0.3s ease, transform 0.3s ease !important;
}

.ceramic-catalog-card .ceramic-cat-quote:hover {
  color: #143D26 !important;
  transform: translateX(4px) !important;
}

.ceramic-catalog-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 24px rgba(20, 61, 38, 0.06) !important;
}

/* Force standard pointer cursor to remain visible on Ceramic cards */
.ceramic-catalog-card,
.ceramic-catalog-card * {
  cursor: pointer !important;
}


