/* ============================================
   SpiceIndia Global - Premium Spices Website
   Dynamic Color Theme - Professional Flat Palette
   ============================================ */

/* Google Fonts - Premium Typography */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Carattere&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* CSS Variables - Dynamic Color Theme */
:root {
  /* ================================================
       TYPOGRAPHY - Font Families
       ================================================ */
  --font-heading: "Exo 2", sans-serif;
  --font-body: sans-serif;
  --font-accent: sans-serif;

  /* ================================================
       TYPOGRAPHY - Font Sizes
       ================================================ */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2rem; /* 32px */
  --font-size-5xl: 2.5rem; /* 40px */
  --font-size-6xl: 3rem; /* 48px */
  --font-size-7xl: 3.75rem; /* 60px */
  --font-size-8xl: 4.5rem; /* 72px */

  /* Section-specific sizes */
  --font-size-hero: 3.875rem; /* 62px */
  --font-size-section-title: 3rem; /* 48px */
  --font-size-card-title: 1.375rem; /* 22px */
  --font-size-badge: 0.6875rem; /* 11px */

  /* ================================================
       TYPOGRAPHY - Font Weights
       ================================================ */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* ================================================
       TYPOGRAPHY - Line Heights
       ================================================ */
  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 1.75;
  --line-height-body: 1.7;

  /* ================================================
       TYPOGRAPHY - Letter Spacing
       ================================================ */
  --letter-spacing-tight: -0.05em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;
  --letter-spacing-widest: 0.1em;

  /* ================================================
       SPACING - Based on font size
       ================================================ */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */
  --spacing-3xl: 4rem; /* 64px */
  --spacing-4xl: 6rem; /* 96px */

  /* Border Radius */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.5rem; /* 8px */
  --radius-lg: 0.75rem; /* 12px */
  --radius-xl: 1rem; /* 16px */
  --radius-2xl: 1.5rem; /* 24px */
  --radius-full: 9999px;

  /* Primary Colors - Blue (Trustworthy, Professional) */
  --primary: #198dd4;
  --primary-dark: #0b4682;
  --primary-light: #3aa7e8;
  --primary-lighter: #6bc0f0;
  --primary-hover: #1563a8;

  /* Secondary Colors - Orange (Warm, Energetic) */
  --secondary: #0b4682;
  --secondary-dark: #073257;
  --secondary-light: #1563a8;
  --secondary-hover: #094580;

  /* Accent - Vibrant Orange for CTAs */
  --accent: #fc8700;
  --accent-light: #fda649;
  --accent-dark: #e67800;
  --accent-hover: #e67800;

  /* Complementary */
  --complementary: #e67800;

  /* Backgrounds - Clean Flat */
  --background: #ffffff;
  --background-alt: #f8fafc;
  --background-cream: #fefefe;
  --background-dark: #0f172a;
  --background-gray: #1e293b;

  /* Text Colors */
  --text-primary: #0157ad;
  --text-secondary: #334155;
  --text-medium: #1b1b1c;
  --text-light: #94a3b8;
  --text-muted: #cbd5e1;
  --text-on-primary: #ffffff;
  --text-on-secondary: #ffffff;
  --text-on-accent: #ffffff;

  /* Neutrals */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Legacy mappings */
  --accent-gold: #fc8700;
  --accent-gold-light: #fda649;
  --accent-gold-dark: #e67800;
  --earth-brown: #0b4682;
  --earth-dark: #073257;
  --earth-light: #1563a8;
  --dark: #1e293b;
  --dark-gray: #334155;
  --medium-gray: #64748b;
  --light-gray: #94a3b8;
  --light-gray2: #f8fafc;
  --off-white: #fefefe;
  --cream: #fefefe;

  /* Borders */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #94a3b8;
  --border-primary: rgba(25, 141, 212, 0.3);
  --border-accent: rgba(252, 135, 0, 0.4);

  /* Shadows - Flat & Subtle */
  --shadow-color: rgba(15, 23, 42, 0.08);
  --shadow-primary: rgba(25, 141, 212, 0.25);
  --shadow-accent: rgba(252, 135, 0, 0.3);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.12);
  --shadow-burgundy: 0 4px 12px rgba(25, 141, 212, 0.2);
  --shadow-gold: 0 4px 12px rgba(252, 135, 0, 0.25);

  /* State Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #198dd4;

  /* Overlays */
  --overlay-dark: rgba(15, 23, 42, 0.75);
  --overlay-light: rgba(15, 23, 42, 0.5);
  --overlay-primary: rgba(25, 141, 212, 0.95);

  /* Focus */
  --focus-ring: #fc8700;

  /* Animation */
  --theme-transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Heading Colors - Global override */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #315d97;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: #315d97;
  background: var(--white);
  font-weight: var(--font-weight-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Premium Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 9999;
}
h1 span {
  color: var(--accent);
  position: relative;
  font-style: italic;
}

/* ============================================
   TOP BAR STYLES
   ============================================ */
.top-bar {
  background: var(--primary-dark);
  padding: 10px 0;
  font-size: 13px;
  position: relative;
  z-index: 9999;
  border-bottom: 2px solid var(--accent);
}

.top-bar::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-contact {
  display: flex;
  gap: 30px;
}

.top-contact a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  font-weight: 500;
}

.top-contact a:hover {
  color: var(--accent);
}

.top-contact a i {
  color: var(--accent);
  font-size: 12px;
}

.top-social {
  display: flex;
  gap: 8px;
}

.top-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 13px;
  border: 1px solid rgba(252, 135, 0, 0.3);
}

.top-social a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 9998;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border-bottom: 1px solid var(--border-light);
  height: 110px;
}

.site-header.sticky {
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.site-header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  transition: height 0.4s ease;
}

.site-header.sticky .container {
  height: 70px;
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}

.logo-area .logo-icon {
  width: 55px;
  height: 55px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  box-shadow: var(--shadow-burgundy);
}

.logo-area img {
  height: 50px;
  width: auto;
  transition: all 0.4s ease;
}

.site-header.sticky .logo-area img {
  height: 50px;
}

.site-header.sticky .logo-area .logo-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

/* Desktop Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3px;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li a {
  display: block;
  padding: 12px 18px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border-radius: 4px;
  position: relative;
}

.main-navigation ul li a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-navigation ul li a:hover::after,
.main-navigation ul li a.active::after {
  width: 30px;
}

.main-navigation ul li a:hover,
.main-navigation ul li a.active {
  color: var(--primary);
  background: rgba(25, 141, 212, 0.08);
}

/* Header CTA Button */
.header-cta {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s;
  margin-left: 20px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.header-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(252, 135, 0, 0.2);
  transition: left 0.5s ease;
}

.header-cta:hover::before {
  left: 100%;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-burgundy);
  color: var(--white);
  border-color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 26px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 9999;
  border-top: 3px solid var(--accent);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu ul li:last-child {
  border-bottom: none;
}

.mobile-menu ul li a {
  display: block;
  padding: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--primary);
  background: rgba(25, 141, 212, 0.08);
  padding-left: 20px;
}

.mobile-menu .header-cta {
  display: block;
  text-align: center;
  margin: 20px 0 0 0;
}

/* ============================================
   HERO SLIDER / BANNER CAROUSEL
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 10s ease;
}

.hero-slide.active .slide-background {
  transform: scale(1.15);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  max-width: 750px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease 0.3s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  position: relative;
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: var(--accent);
  margin-top: 25px;
  border-radius: 2px;
}

.hero-content p {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 35px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 16px 38px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
  border: 2px solid var(--accent);
}

.hero-btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.hero-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ============================================
   SLIDER NAVIGATION ARROWS
   ============================================ */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(252, 135, 0, 0.5);
  border-radius: 50%;
  color: var(--accent);
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-gold);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* ============================================
   SLIDER DOTS NAVIGATION
   ============================================ */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(252, 135, 0, 0.3);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.slider-dot:hover {
  border-color: var(--accent);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 35px;
  border-radius: 6px;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 135, 0, 0.2);
  color: var(--accent);
  border-radius: 50%;
  text-decoration: none;
  animation: bounce 2s infinite;
  border: 1px solid rgba(252, 135, 0, 0.4);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* ============================================
   BREADCRUMB SECTION - Hero Style
   ============================================ */
.breadcrumb-section {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?w=1920&h=600&fit=crop")
    center center/cover no-repeat;
  margin-top: 0;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 70, 130, 0.88) 0%,
    rgba(25, 141, 212, 0.82) 100%
  );
  z-index: 1;
}

.breadcrumb-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.breadcrumb-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb-section .page-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.breadcrumb-section .page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--white);
  margin: 20px auto 0;
  border-radius: 2px;
}

.breadcrumb-section .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(252, 135, 0, 0.3);
}

.breadcrumb-section .breadcrumb-item {
  display: flex;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding: 0 12px;
  color: var(--accent);
  font-size: 12px;
}

.breadcrumb-section .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.breadcrumb-section .breadcrumb-item a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.breadcrumb-section .breadcrumb-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.breadcrumb-section .breadcrumb-item a:hover::after {
  width: 100%;
}

.breadcrumb-section .breadcrumb-item.active {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 991px) {
  .breadcrumb-section {
    min-height: 250px;
  }

  .breadcrumb-section .page-title {
    font-size: 36px;
  }

  .breadcrumb-section .breadcrumb {
    padding: 12px 25px;
  }

  .breadcrumb-section .breadcrumb-item {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-section {
    min-height: 200px;
  }

  .breadcrumb-section .page-title {
    font-size: 28px;
  }

  .breadcrumb-section .page-title::after {
    width: 60px;
    height: 3px;
    margin: 15px auto 0;
  }

  .breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 8px;
    font-size: 10px;
  }

  .breadcrumb-section .breadcrumb {
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  .breadcrumb-section .breadcrumb-item {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-section {
    min-height: 180px;
  }

  .breadcrumb-section .page-title {
    font-size: 22px;
  }

  .breadcrumb-section .breadcrumb-item {
    font-size: 12px;
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.section-subtitle i {
  font-size: 16px;
  color: var(--accent);
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(var(--font-heading));
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-desc {
  font-size: 17px;
  color: var(--text-medium);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(25, 141, 212, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: var(--white);
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-burgundy);
  border: 2px solid var(--accent);
}

.about-badge .number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}

.about-badge .text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-medium);
  margin-bottom: 22px;
  line-height: 1.85;
}

.about-stats {
  display: flex;
  gap: 35px;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.about-stat:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(25, 141, 212, 0.2);
  border-color: var(--primary);
}

.about-stat:hover::before {
  opacity: 1;
}

.about-stat:hover .about-stat-icon {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(25, 141, 212, 0.45);
}

.about-stat:hover .about-stat-icon i,
.about-stat:hover .about-stat-icon .fas,
.about-stat:hover .about-stat-icon .far,
.about-stat:hover .about-stat-icon .fab {
  transform: scale(1);
}

.about-stat:hover .about-stat-info span,
.about-stat:hover .about-stat-info small {
  color: var(--white);
}

.about-stat-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(25, 141, 212, 0.35);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.about-stat-icon i,
.about-stat-icon .fas,
.about-stat-icon .far,
.about-stat-icon .fab {
  display: inline-block;
  font-size: 26px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  vertical-align: middle !important;
}

.about-stat-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-stat:hover .about-stat-icon::after {
  opacity: 0.3;
}

.about-stat-info {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.about-stat-info span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 34px;
  color: var(--text-primary);
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.about-stat:hover .about-stat-info span {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-info small {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  margin-top: 6px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  background: var(--white);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
  border: 1px solid var(--border-light);
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.product-card:hover .product-image img {
  transform: scale(1.15);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay a {
  padding: 12px 28px;
  background: var(--accent);
  color: var(--text-on-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transform: translateY(20px);
  transition: transform 0.4s;
}

.product-card:hover .product-overlay a {
  transform: translateY(0);
}

.product-info {
  padding: 25px;
  text-align: center;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.product-info p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.7;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   SPICE CATEGORY ICONS
   ============================================ */
/* Common Icon Style */
.spice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Cardamom */
.spice-icon.cardamom {
  background: #2e7d32;
  color: #a5d6a7;
}

/* Black Pepper */
.spice-icon.black_pepper {
  background: #212121;
  color: #e0e0e0;
}

/* Green Coffee Beans */
.spice-icon.green_coffee {
  background: #4e342e;
  color: #d7ccc8;
}

/* Turmeric Powder */
.spice-icon.turmeric {
  background: #fbc02d;
  color: #3e2723;
}

/* Jaggery */
.spice-icon.jaggery {
  background: #8d6e63;
  color: #efebe9;
}

/* Sugar ICUMSA 45 */
.spice-icon.sugar {
  background: #cfcfcf;
  color: #424242;
}

/* Dry Chillies */
.spice-icon.dry_chillies {
  background: #c62828;
  color: #ffcdd2;
}

/* Tamarind */
.spice-icon.tamarind {
  background: #6d4c41;
  color: #d7ccc8;
}

/* Kapor Silk Cotton */
.spice-icon.kapor_cotton {
  background: #eceff1;
  color: #607d8b;
}

/* Sisal Fiber */
.spice-icon.sisal_fiber {
  background: #827717;
  color: #f0f4c3;
}

/* Coriander Seeds */
.spice-icon.coriander {
  background: #558b2f;
  color: #dcedc8;
}

/* Cumin Seeds */
.spice-icon.cumin {
  background: #795548;
  color: #d7ccc8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--gray-50);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  position: relative;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 32px;
  margin: 0 auto 28px;
  transition: transform 0.5s;
  box-shadow: var(--shadow-burgundy);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.75;
}

/* ============================================
   PRICING TABLES SECTION
   ============================================ */
.pricing-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
  border: 2px solid var(--border-light);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 8px 40px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  background: var(--primary);
  padding: 35px 30px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.pricing-card.featured .pricing-header {
  background: var(--accent);
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-header .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
}

.pricing-card.featured .pricing-header .price {
  color: var(--primary-dark);
}

.pricing-header .price span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-header .unit {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 5px;
}

.pricing-body {
  padding: 35px 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-medium);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--accent);
  font-size: 14px;
}

.pricing-btn {
  display: block;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s;
}

.pricing-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn {
  background: var(--accent);
  color: var(--text-on-accent);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--accent-dark);
}

/* ============================================
   DOCUMENTATION SECTION
   ============================================ */
.documentation-section {
  background: var(--background-gray);
  position: relative;
  overflow: hidden;
}

.documentation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.documentation-section .section-subtitle,
.documentation-section .section-title,
.documentation-section .section-desc {
  color: var(--white);
}

.documentation-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.documentation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.doc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(252, 135, 0, 0.2);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}

.doc-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-8px);
}

.doc-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.doc-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.doc-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   SHIPMENT TRACKING SECTION
   ============================================ */
.tracking-section {
  background: var(--background-alt);
  position: relative;
}

.tracking-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 45px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.tracking-input-group {
  display: flex;
  gap: 15px;
}

.tracking-input-group input {
  flex: 1;
  padding: 18px 25px;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
  background: var(--gray-100);
}

.tracking-input-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.tracking-input-group button {
  padding: 18px 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.tracking-input-group button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-burgundy);
}

.tracking-result {
  margin-top: 40px;
  display: none;
}

.tracking-result.show {
  display: block;
}

.tracking-timeline {
  position: relative;
  padding-left: 30px;
}

.tracking-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.tracking-step {
  position: relative;
  padding-bottom: 30px;
}

.tracking-step:last-child {
  padding-bottom: 0;
}

.tracking-step::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-gold);
}

.tracking-step.completed::before {
  background: var(--primary);
}

.tracking-step h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.tracking-step p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
}

.tracking-step .date {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 5px;
}

/* ============================================
   SUPPLIER DIRECTORY SECTION
   ============================================ */
.supplier-section {
  background: var(--white);
  position: relative;
}

.supplier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.supplier-card {
  background: var(--gray-50);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid var(--border-light);
}

.supplier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.supplier-header {
  background: var(--primary);
  padding: 25px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
}

.supplier-logo {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  border: 3px solid var(--accent);
}

.supplier-header h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.supplier-header span {
  font-size: 12px;
  opacity: 0.85;
}

.supplier-body {
  padding: 25px;
}

.supplier-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.supplier-body ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-medium);
}

.supplier-body ul li:last-child {
  border-bottom: none;
}

.supplier-body ul li i {
  color: var(--accent);
  font-size: 12px;
}

.supplier-btn {
  display: block;
  margin-top: 20px;
  padding: 12px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s;
}

.supplier-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   BUYER DIRECTORY SECTION
   ============================================ */
.buyer-section {
  background: var(--gray-50);
  position: relative;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.buyer-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid var(--border-light);
}

.buyer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.buyer-flag {
  width: 60px;
  height: 40px;
  margin: 0 auto 18px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.buyer-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buyer-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.buyer-card p {
  font-size: 13px;
  color: var(--text-medium);
  margin: 0;
}

/* ============================================
   COUNTRIES SECTION
   ============================================ */
.countries-section {
  background: var(--primary-dark);
  padding: 80px 0;
  position: relative;
}

.countries-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.countries-section .section-subtitle,
.countries-section .section-title,
.countries-section .section-desc {
  color: var(--white);
}

.countries-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.country-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(252, 135, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.country-item:hover {
  background: var(--accent);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.country-item:hover span {
  color: var(--primary-dark);
}

.country-item img {
  width: 45px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.country-item:hover img {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.country-item span {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: var(--white);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: var(--gray-50);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid transparent;
}

.feature-box:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--border-light);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin: 0 auto 25px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  border: 2px solid var(--accent);
}

.feature-box:hover .feature-icon {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.1);
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.feature-box p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.75;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=400&fit=crop")
    center center/cover no-repeat;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 141, 212, 0.92) 0%,
    rgba(15, 71, 130, 0.88) 100%
  );
  z-index: 1;
}

.stats-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 30px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: all 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(252, 135, 0, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.stat-item:hover::before {
  opacity: 1;
  width: 100px;
}

.stat-item i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  color: var(--accent);
  transition: all 0.4s ease;
  position: relative;
}

.stat-item i::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.stat-item:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(252, 135, 0, 0.6);
}

.stat-item .counter {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.stat-item .counter::after {
  content: "+";
  font-size: 32px;
  margin-left: 4px;
  color: var(--accent);
  vertical-align: super;
}

.stat-item p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.95;
  margin: 0;
  position: relative;
}

.stat-item p::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 15px;
  border-radius: 2px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--gray-50);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--accent);
  font-size: 32px;
  transform: scale(0);
  transition: transform 0.4s 0.1s;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: var(--white);
  position: relative;
}

.testimonials-section .section-header {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 12px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .testimonial-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.testimonial-card {
  background: var(--gray-50);
  padding: 40px 35px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
  transform: translateY(-5px);
}

.testimonial-stars {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-stars i {
  color: var(--accent);
  font-size: 16px;
}

.testimonial-quote {
  margin: 0 0 28px 0;
  position: relative;
  flex-grow: 1;
}

.testimonial-quote p {
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.85;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-medium);
  display: block;
}

/* ============================================
   TESTIMONIAL SLIDER COMPONENT
   ============================================ */
.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 60px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 24px);
  width: calc(33.333% - 24px);
  margin: 0 12px;
  opacity: 1;
  transition: all 0.4s ease;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-slide .testimonial-card {
  height: 100%;
}

/* Navigation Arrows */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-light);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.testimonial-nav i {
  font-size: 16px;
}

/* Pagination Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

.testimonial-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.2);
}

/* Responsive Design - 3 cards on desktop, 2 on tablet, 1 on mobile */
@media (max-width: 1200px) {
  .testimonial-slide {
    flex: 0 0 calc(33.333% - 24px);
    width: calc(33.333% - 24px);
  }
}

@media (max-width: 992px) {
  .testimonial-slider {
    padding: 0 50px;
  }

  .testimonial-slide {
    flex: 0 0 calc(50% - 24px);
    width: calc(50% - 24px);
  }

  .testimonial-nav {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .testimonial-slider {
    padding: 0 40px;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
  }

  .testimonial-nav i {
    font-size: 14px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .testimonial-slider {
    padding: 0 35px;
  }

  .testimonial-nav {
    width: 36px;
    height: 36px;
  }

  .testimonial-slide .testimonial-card {
    padding: 30px 20px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=450&fit=crop")
    center center/cover no-repeat;
  position: relative;
  padding: 100px 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: #fd8302;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--background-alt);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-info {
  background: var(--primary);
  padding: 50px 40px;
  color: var(--white);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f8830a;
}

.contact-info p {
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.7;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-details li i {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(252, 135, 0, 0.3);
}

.contact-details li span {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

.contact-form {
  padding: 50px 40px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 22px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
  background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  padding: 16px 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.form-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-burgundy);
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--gray-50);
  border-radius: 16px;
  animation: fadeIn 0.5s ease;
}

.form-success .success-icon {
  font-size: 64px;
  color: var(--success);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.form-success p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding-top: 80px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  align-items: start;
}

.footer-about {
  padding-right: 20px;
}

.footer-about .footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-about .footer-logo img {
  height: 100px;
  width: auto;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(252, 135, 0, 0.2);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 18px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cp-link {
  color: #9ea0a7;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

/* underline animation */
.cp-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #fd7e14;
  transition: width 0.3s ease;
}

/* hover effect */
.cp-link:hover {
  color: #fd7e14;
}

.cp-link:hover::after {
  width: 100%;
}
.footer-links ul li {
  margin-bottom: 14px;
  position: relative;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links ul li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -18px;
  opacity: 0;
  transition: all 0.3s;
  color: var(--accent);
}

.footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 18px;
}

.footer-links ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact ul li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 14px;
  min-width: 18px;
  text-align: center;
}

.footer-contact ul li span,
.footer-contact ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-bottom p:last-child {
  font-size: 13px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Large Desktop */
@media (max-width: 1399px) {
  .site-header .container,
  .container {
    max-width: 1140px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 56px;
  }
}

/* Small Desktop / Tablet Landscape */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
  }

  .documentation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .supplier-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-about .footer-logo {
    margin-bottom: 18px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links ul li a::before {
    display: none;
  }

  .footer-links ul li a:hover {
    padding-left: 0;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 10px 25px;
  }
}

/* Tablet Portrait */
@media (max-width: 991px) {
  /* Header */
  .top-bar {
    display: none;
  }

  .site-header {
    height: 80px;
  }

  .site-header .container {
    height: 80px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header.sticky {
    height: 65px;
  }

  .site-header.sticky .container {
    height: 65px;
  }

  /* Logo - More prominent on mobile */
  .logo-area {
    padding-top: 0;
    flex-shrink: 0;
  }

  .logo-area img {
    height: 60px !important;
    max-width: 200px;
    width: auto;
    object-fit: contain;
  }

  .logo-area .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .main-navigation {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .header-cta {
    display: none;
  }

  /* Mobile Menu */
  .mobile-menu {
    max-height: 80vh;
    overflow-y: auto;
  }

  /* Hero Slider */
  .hero-slider {
    min-height: 500px;
    height: auto;
    aspect-ratio: 16/9;
  }

  .slide-content {
    padding: 100px 20px 60px;
    min-height: 500px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-content h1::after {
    width: 80px;
    height: 3px;
    margin: 20px auto 0;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-btn {
    padding: 14px 28px;
    font-size: 12px;
  }

  /* Slider Navigation */
  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }

  .slider-dots {
    bottom: 20px;
    padding: 10px 20px;
  }

  /* Scroll Indicator */
  .scroll-indicator {
    display: none;
  }

  /* Section Styles */
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-desc {
    font-size: 15px;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-badge {
    bottom: 15px;
    right: 15px;
    padding: 15px 20px;
  }

  .about-badge .number {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-stat {
    width: 100%;
  }

  /* Products */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: scale(1);
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  /* Documentation */
  .documentation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Supplier */
  .supplier-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Buyer */
  .buyer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Countries */
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .country-item {
    padding: 15px;
  }

  .country-item img {
    width: 35px;
    height: 24px;
  }

  /* Stats */
  .stats-section {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-item i {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .stat-item .counter {
    font-size: 40px;
  }

  .stat-item p {
    font-size: 12px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item {
    height: 180px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 15px;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding-bottom: 40px;
  }

  .footer-about {
    grid-column: 1;
    padding-right: 0;
  }

  .footer-about .footer-logo img {
    height: 80px;
  }

  .footer-about p {
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 22px;
    padding-bottom: 15px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .footer-links ul li {
    margin-bottom: 12px;
  }

  .footer-links ul li a {
    font-size: 14px;
  }

  .footer-contact ul li {
    margin-bottom: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-contact ul li i {
    margin-top: 0;
  }

  .footer-contact ul li span,
  .footer-contact ul li a {
    font-size: 13px;
  }

  .site-footer {
    padding-top: 60px;
  }

  .footer-bottom {
    padding: 18px 0;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

/* Tablet Portrait */
@media (max-width: 991px) and (min-width: 768px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-bottom: 45px;
  }

  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-about .footer-logo img {
    height: 85px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links ul li a::before {
    display: none;
  }

  .footer-links ul li a:hover {
    padding-left: 0;
  }

  .footer-contact ul li {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

/* Mobile phones */
@media (max-width: 767px) {
  /* Footer - Mobile Responsive */
  .site-footer {
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .site-footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
    padding-bottom: 35px;
  }

  .footer-about {
    grid-column: 1;
    padding-right: 0;
    padding-left: 0;
  }

  .footer-about .footer-logo {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-about .footer-logo img {
    height: 70px;
  }

  .footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: 0 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    text-align: center;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links ul li {
    margin-bottom: 14px;
  }

  .footer-links ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
    transition: color 0.3s ease;
  }

  .footer-links ul li a::before {
    display: none;
  }

  .footer-links ul li a:hover {
    color: var(--accent);
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-contact ul li {
    margin-bottom: 18px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    display: flex;
  }

  .footer-contact ul li i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 0;
  }

  .footer-contact ul li span,
  .footer-contact ul li a {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .footer-contact ul li a:hover {
    color: var(--accent);
  }

  .footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }

  .footer-bottom .cp-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 5px 8px;
    margin-top: 5px;
  }

  .footer-bottom .cp-link:hover {
    text-decoration: underline;
  }

  /* Header - Larger logo for mobile */
  .site-header {
    height: 70px;
  }

  .site-header .container {
    height: 70px;
    padding: 0 12px;
  }

  .site-header.sticky {
    height: 60px;
  }

  .site-header.sticky .container {
    height: 60px;
  }

  /* Logo - More prominent on mobile */
  .logo-area {
    padding-top: 20px;
    flex-shrink: 0;
  }

  .logo-area img {
    height: 50px !important;
    max-width: 160px;
    width: auto;
    object-fit: contain;
  }

  .logo-area .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .mobile-toggle {
    padding: 8px;
    margin-left: 8px;
  }

  .mobile-toggle span {
    width: 24px;
    height: 2px;
  }

  /* Mobile Menu */
  .mobile-menu {
    top: 60px;
    padding: 15px;
  }

  .mobile-menu ul li a {
    padding: 12px;
    font-size: 14px;
  }

  /* Hero Slider */
  .hero-slider {
    min-height: 400px;
    height: auto;
    aspect-ratio: 4/3;
  }

  .slide-content {
    padding: 70px 15px 40px;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .hero-content h1::after {
    width: 60px;
    height: 3px;
    margin: 15px auto 0;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 11px;
    width: 100%;
    text-align: center;
  }

  /* Slider Navigation */
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .slider-dots {
    bottom: 15px;
    padding: 8px 15px;
    gap: 8px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 25px;
  }

  /* Section Styles */
  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .section-desc {
    font-size: 14px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* About Section */
  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-stat {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .about-stat-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 22px;
  }

  .about-stat-icon i,
  .about-stat-icon .fas {
    font-size: 22px !important;
  }

  .about-stat-info span {
    font-size: 28px;
  }

  .about-stat-info small {
    font-size: 11px;
  }

  /* Products Grid */
  .products-grid,
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .supplier-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Documentation */
  .documentation-grid {
    grid-template-columns: 1fr;
  }

  /* Buyer */
  .buyer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyer-card {
    padding: 20px;
  }

  /* Countries */
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .country-item {
    padding: 12px 10px;
  }

  .country-item span {
    font-size: 11px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 25px 15px;
  }

  .stat-item i {
    font-size: 32px;
  }

  .stat-item .counter {
    font-size: 36px;
  }

  .stat-item .counter::after {
    font-size: 24px;
  }

  .stat-item p {
    font-size: 11px;
    letter-spacing: 1px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-item {
    height: 140px;
  }

  /* CTA */
  .cta-section {
    padding: 50px 0;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  /* Tracking Form */
  .tracking-form {
    padding: 25px 20px;
  }

  .tracking-input-group {
    flex-direction: column;
  }

  .tracking-input-group input,
  .tracking-input-group button {
    width: 100%;
  }

  /* Contact Form */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .form-submit {
    padding: 14px 20px;
  }
}

/* Small Mobile phones */
@media (max-width: 480px) {
  /* Header - Keep logo prominent on small screens */
  .site-header {
    height: 85px;
  }

  .site-header .container {
    height: 65px;
    padding: 0 10px;
  }

  .site-header.sticky {
    height: 55px;
  }

  .site-header.sticky .container {
    height: 55px;
  }

  /* Logo - Ensure visibility on small screens */
  .logo-area {
    flex-shrink: 0;
  }

  .logo-area img {
    height: 85px !important;
    max-width: 140px;
    width: auto;
    object-fit: contain;
  }

  .logo-area .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .mobile-toggle {
    padding: 6px;
    margin-left: 6px;
  }

  .mobile-toggle span {
    width: 20px;
  }

  /* Mobile Menu */
  .mobile-menu {
    top: 65px;
  }

  .hero-slider {
    min-height: 350px;
    aspect-ratio: 3/4;
  }

  .slide-content {
    padding: 60px 12px 30px;
    min-height: 350px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .about-stat {
    padding: 12px;
  }

  .about-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 20px;
    border-radius: 12px;
  }

  .about-stat-icon i,
  .about-stat-icon .fas {
    font-size: 20px !important;
  }

  .about-stat-info span {
    font-size: 24px;
  }

  .about-stat-info small {
    font-size: 10px;
  }

  .countries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .stat-item .counter {
    font-size: 32px;
  }
}

/* Theme transition for smooth color changes */
.theme-transitioning * {
  transition:
    background-color 0.4s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease !important;
}
.footer-contact ul li a {
  text-decoration: none;
}

/* ============================================
   Product Detail Modal - Modern Popup
   ============================================ */

/* Modal Overlay */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.product-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-modal-overlay.active .product-modal {
  transform: translateY(0) scale(1);
}

/* Modal Header */
.product-modal-header {
  position: relative;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

/* Close Button */
.product-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-dark);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}

.product-modal-close:hover {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

.product-modal-close:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Modal Body */
.product-modal-body {
  padding: 28px;
}

/* Product Detail Sections */
.product-detail-section {
  margin-bottom: 24px;
}

.product-detail-section:last-child {
  margin-bottom: 0;
}

.product-detail-section h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-detail-section h3::before {
  content: "";
  width: 4px;
  height: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary));
  border-radius: 2px;
}

/* Specification Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spec-item {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.spec-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.spec-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.spec-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Grade Tags */
.grade-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.grade-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.grade-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 141, 212, 0.35);
}

.grade-tag i {
  font-size: 0.75rem;
}

/* Quality Highlights */
.quality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.quality-list li:last-child {
  border-bottom: none;
}

.quality-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: bold;
}

/* Modal Footer */
.product-modal-footer {
  padding: 20px 28px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-modal-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-modal-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
}

.product-modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 141, 212, 0.4);
}

.product-modal-btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.product-modal-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Responsive Modal */
@media (max-width: 768px) {
  .product-modal {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 85vh;
  }

  .product-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .product-modal-overlay.active .product-modal {
    transform: translateY(0);
  }

  .product-modal-header {
    padding: 20px;
  }

  .product-modal-body {
    padding: 20px;
  }

  .product-modal-footer {
    padding: 16px 20px 20px;
    flex-direction: column;
  }

  .product-modal-btn {
    width: 100%;
    justify-content: center;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .grade-tags {
    flex-direction: column;
  }

  .grade-tag {
    width: 100%;
    justify-content: center;
  }
}

/* Scrollbar Styling */
.product-modal::-webkit-scrollbar {
  width: 8px;
}

.product-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.product-modal::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.product-modal::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
.product-intro-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-dark);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  margin-top: 2px;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}
