/* ===================================
   CSS DESIGN SYSTEM - AQUA FMCG LTD
   =================================== */

/* CSS Custom Properties (Variables) */
:root {
  /* Color Variables */
  --primary-olive: #5c6b4a;
  --primary-olive-dark: #4a5a39;
  --secondary-off-white: #faf9f6;
  --dark-charcoal: #2d2d2d;
  --light-grey: #e5e5e5;
  --hover-grey: #d4d4d4;
  --soft-gold: #c9b97a;
  --footer-dark-olive: #3d4a32;
  --muted-off-white: #e5e5dd;

  /* Spacing System (8px base increments) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 120px;

  /* Section Padding */
  --section-padding-desktop: 80px;
  --section-padding-mobile: 48px;

  /* Container */
  --container-max-width: 1280px;
  --container-padding: 24px;

  /* Typography Scale */
  --font-hero: clamp(36px, 5vw, 64px);
  --font-section-heading: clamp(28px, 4vw, 40px);
  --font-card-title: clamp(18px, 2.5vw, 24px);
  --font-body: 16px;
  --font-small: 14px;

  /* Line Heights */
  --line-height-heading: 1.2;
  --line-height-body: 1.6;

  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-navbar: 0 2px 20px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-smooth: 300ms ease;
  --transition-fast: 200ms ease;
}

/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: var(--font-body);
  line-height: var(--line-height-body);
  color: var(--dark-charcoal);
  background-color: var(--secondary-off-white);
}

/* ===================================
   TYPOGRAPHY SYSTEM
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  line-height: var(--line-height-heading);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--font-hero);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-section-heading);
  font-weight: 600;
}

h3 {
  font-size: var(--font-card-title);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-sm);
}

.text-small {
  font-size: var(--font-small);
}

/* ===================================
   BUTTON SYSTEM
   =================================== */

.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: var(--font-body);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-smooth);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-olive);
  color: var(--secondary-off-white);
  border-color: var(--primary-olive);
}

.btn-primary:hover {
  background-color: var(--primary-olive-dark);
  border-color: var(--primary-olive-dark);
  color: var(--secondary-off-white);
  transform: scale(1.02);
}

.btn-primary:focus {
  outline: 2px solid var(--primary-olive);
  outline-offset: 2px;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-olive);
  border-color: var(--primary-olive);
}

.btn-secondary:hover {
  background-color: var(--primary-olive);
  color: var(--secondary-off-white);
  transform: scale(1.02);
}

.btn-secondary:focus {
  outline: 2px solid var(--primary-olive);
  outline-offset: 2px;
}

/* ===================================
   CARD SYSTEM
   =================================== */

.card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-md);
  transition: all var(--transition-smooth);
  border: none;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px);
}

/* ===================================
   FORM ELEMENTS
   =================================== */

.form-control {
  border: 1px solid var(--light-grey);
  border-radius: var(--border-radius-sm);
  padding: var(--space-md);
  font-size: var(--font-body);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-olive);
  box-shadow: 0 0 0 0.2rem rgba(92, 107, 74, 0.25);
}

.form-label {
  color: var(--dark-charcoal);
  font-size: var(--font-small);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Text Colors */
.text-primary {
  color: var(--primary-olive) !important;
}
.text-secondary {
  color: var(--secondary-off-white) !important;
}
.text-charcoal {
  color: var(--dark-charcoal) !important;
}
.text-grey {
  color: var(--light-grey) !important;
}
.text-gold {
  color: var(--soft-gold) !important;
}

/* Background Colors */
.bg-primary {
  background-color: var(--primary-olive) !important;
}
.bg-secondary {
  background-color: var(--secondary-off-white) !important;
}
.bg-charcoal {
  background-color: var(--dark-charcoal) !important;
}
.bg-light-grey {
  background-color: var(--light-grey) !important;
}

/* Spacing Utilities */
.p-xs {
  padding: var(--space-xs) !important;
}
.p-sm {
  padding: var(--space-sm) !important;
}
.p-md {
  padding: var(--space-md) !important;
}
.p-lg {
  padding: var(--space-lg) !important;
}
.p-xl {
  padding: var(--space-xl) !important;
}

.m-xs {
  margin: var(--space-xs) !important;
}
.m-sm {
  margin: var(--space-sm) !important;
}
.m-md {
  margin: var(--space-md) !important;
}
.m-lg {
  margin: var(--space-lg) !important;
}
.m-xl {
  margin: var(--space-xl) !important;
}

/* Responsive Hide/Show */
@media (max-width: 767.98px) {
  .d-mobile-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .d-desktop-none {
    display: none !important;
  }
}

/* Flex Helpers */
.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  height: 80px;
  transition: all var(--transition-smooth);
  z-index: 1000;
}

.navbar.scrolled {
  background-color: var(--secondary-off-white);
  height: 64px;
  box-shadow: var(--shadow-navbar);
}

.navbar-brand .logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-olive);
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-family: "Inter", sans-serif;
  font-size: var(--font-body);
  font-weight: 500;
  color: var(--dark-charcoal);
  padding: var(--space-xs) var(--space-sm);
  margin: 0 var(--space-xs);
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-olive);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-olive);
  transition: width var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Dropdown Styling */
.dropdown-menu {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  border: none;
  padding: var(--space-xs);
  margin-top: var(--space-xs);
  animation: fadeIn var(--transition-fast);
}

.dropdown-item {
  padding: var(--space-md);
  border-radius: var(--border-radius-sm);
  transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--light-grey);
  color: var(--dark-charcoal);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Navigation */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 45, 45, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-sm);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
  }

  .navbar-nav .nav-link {
    padding: var(--space-sm) 0;
    margin: 0;
    min-height: 56px;
    display: flex;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    background-color: var(--light-grey);
    margin: var(--space-xs) 0;
  }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 21px;
  padding-top: 100px; /* Add space for fixed navbar */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.4) 0%,
    rgba(92, 107, 74, 0.3) 50%,
    rgba(45, 45, 45, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: heroFadeIn 0.8s ease-out;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-xl) var(--space-lg);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

.hero-headline {
  font-size: var(--font-hero);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-lg);
  animation: slideUpFade 0.8s ease-out 0.2s both;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero-subheadline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  animation: slideUpFade 0.8s ease-out 0.4s both;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 400;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  animation: slideUpFade 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-primary {
  background: #5c6b4a;
  border: none;
  color: white;
}

.hero-buttons .btn-primary:hover {
  background: #4a5a39;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(92, 107, 74, 0.3);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #5c6b4a;
}

.hero-buttons .btn-secondary:hover {
  background: white;
  color: #4a5a39;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Floating Elements Animation */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(92, 107, 74, 0.1);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.floating-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1.5s;
}

.floating-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Mobile Hero Adjustments */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 500px;
    text-align: center;
    background-attachment: scroll;
    background-position: center center;
    padding-top: 120px; /* More space on mobile for navbar */
  }

  .hero-content {
    
margin-top: 70px;
    padding: var(--space-lg) var(--space-md);
   
    max-width: none;
  }

  .hero-headline {
    font-size: 28px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
    margin-bottom: var(--space-md);
  }

  .hero-subheadline {
    font-size: 16px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: var(--space-lg);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 24px;
  }

  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(45, 45, 45, 0.5) 0%,
      rgba(92, 107, 74, 0.4) 50%,
      rgba(45, 45, 45, 0.3) 100%
    );
  }
}

/* ===================================
   VALUE PROPOSITIONS SECTION
   =================================== */

.value-props-section {
  background-color: var(--light-grey);
  padding: var(--space-2xl) 0;
}

.value-prop-item {
  text-align: center;
  padding: var(--space-md);
  transition: all var(--transition-smooth);
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transform: translateY(30px);
}

.value-prop-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.value-prop-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  background-color: white;
}

.value-prop-icon {
  margin-bottom: var(--space-sm);
}

.value-prop-icon i {
  font-size: 48px;
  color: var(--primary-olive);
  transition: all var(--transition-smooth);
}

.value-prop-item:hover .value-prop-icon i {
  transform: scale(1.1);
  color: var(--primary-olive-dark);
}

.value-prop-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-sm);
}

.value-prop-text {
  font-size: var(--font-small);
  color: #666;
  margin-bottom: 0;
}

/* Stagger Animation */
.value-prop-item:nth-child(1) {
  animation-delay: 0.1s;
}
.value-prop-item:nth-child(2) {
  animation-delay: 0.2s;
}
.value-prop-item:nth-child(3) {
  animation-delay: 0.3s;
}
.value-prop-item:nth-child(4) {
  animation-delay: 0.4s;
}

@media (max-width: 767.98px) {
  .value-props-section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* ===================================
   FOOTER SECTION
   =================================== */

.footer-section {
  background-color: var(--footer-dark-olive);
  color: var(--secondary-off-white);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  position: relative;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.footer-logo {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-off-white);
  margin-bottom: var(--space-sm);
}

.footer-description {
  color: var(--muted-off-white);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary-off-white);
  border-radius: 50%;
  color: var(--secondary-off-white);
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--secondary-off-white);
  color: var(--footer-dark-olive);
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-off-white);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--muted-off-white);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-off-white);
  transform: translateX(4px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item i {
  color: var(--soft-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--muted-off-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--secondary-off-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
}

.copyright {
  color: var(--muted-off-white);
  font-size: var(--font-small);
  margin: 0;
}

/* Mobile Footer Adjustments */
@media (max-width: 767.98px) {
  .footer-section {
    padding: var(--section-padding-mobile) 0 var(--space-lg) 0;
    text-align: center;
  }

  .footer-brand,
  .footer-column {
    margin-bottom: var(--space-xl);
  }

  .social-icons {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }
}

/* ===================================
   PAGE-SPECIFIC STYLES
   =================================== */

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-olive) 0%,
    var(--primary-olive-dark) 100%
  );
  color: var(--secondary-off-white);
  padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl) 0;
  text-align: center;
}

.page-header h1 {
  font-size: var(--font-section-heading);
  margin-bottom: var(--space-sm);
}

.page-header .lead {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* About Page Styles */
.about-content {
  padding: var(--space-3xl) 0;
}

.about-image-placeholder {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--light-grey);
  border-radius: var(--border-radius-lg);
  color: var(--primary-olive);
}

/* Contact Page Styles */
.contact-content {
  padding: var(--space-3xl) 0;
}

.contact-info-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  height: fit-content;
}

.contact-info-card .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-info-card .contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-olive);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.contact-info-card .contact-details h6 {
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-xs);
}

.contact-info-card .contact-details p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.contact-info-card .contact-details a {
  color: var(--primary-olive);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info-card .contact-details a:hover {
  color: var(--primary-olive-dark);
}

/* Product Page Styles */
.product-header {
  background: linear-gradient(
    135deg,
    var(--primary-olive) 0%,
    var(--primary-olive-dark) 100%
  );
  color: var(--secondary-off-white);
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl) 0;
}

.product-grid {
  padding: var(--space-3xl) 0;
}

.product-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.product-image {
  height: 200px;
  background-color: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-olive);
  font-size: 48px;
}

.product-card .card-body {
  padding: var(--space-md);
}

.product-card .card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-sm);
}

.product-card .card-text {
  color: #666;
  font-size: var(--font-small);
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .page-header {
    padding: calc(80px + var(--section-padding-mobile)) 0
      var(--section-padding-mobile) 0;
  }

  .about-content,
  .contact-content,
  .product-grid {
    padding: var(--section-padding-mobile) 0;
  }

  .contact-info-card {
    margin-top: var(--space-xl);
  }

  .hero-buttons .btn {
    margin-bottom: var(--space-sm);
  }
} /* ======
=============================
   PRODUCT RANGE SECTION
   =================================== */

.product-range-section {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.section-heading {
  font-size: var(--font-section-heading);
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-sm);
}

.section-underline {
  width: 80px;
  height: 3px;
  background-color: var(--primary-olive);
  margin: 0 auto var(--space-md) auto;
}

.section-subheading {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
}

.category-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.category-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

.category-image {
  height: 200px;
  background: linear-gradient(135deg, var(--light-grey) 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  overflow: hidden;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.category-card:hover .category-image img {
  transform: scale(1.05);
}

.category-content {
  padding: var(--space-md);
}

.category-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-sm);
}

.category-description {
  font-size: var(--font-small);
  color: #666;
  line-height: 1.5;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-link {
  color: var(--primary-olive);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-small);
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.category-link:hover {
  color: var(--primary-olive-dark);
}

.category-link i {
  transition: transform var(--transition-smooth);
}

.category-card:hover .category-link i {
  transform: translateX(4px);
}

/* Category card stagger animation */
.category-card:nth-child(1) {
  animation-delay: 0.1s;
}
.category-card:nth-child(2) {
  animation-delay: 0.2s;
}
.category-card:nth-child(3) {
  animation-delay: 0.3s;
}
.category-card:nth-child(4) {
  animation-delay: 0.4s;
}
.category-card:nth-child(5) {
  animation-delay: 0.5s;
}

/* ===================================
   NEWEST PRODUCTS SECTION
   =================================== */

.newest-products-section {
  background-color: #f8f8f6;
  padding: var(--space-3xl) 0;
}

.product-card {
  background: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.product-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.product-card .product-image {
  height: 180px;
  background: linear-gradient(135deg, var(--light-grey) 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
  overflow: hidden;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: var(--space-sm);
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.product-category {
  display: inline-block;
  background-color: var(--primary-olive);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  margin-bottom: var(--space-xs);
}

.product-rating {
  margin-bottom: var(--space-sm);
}

.product-rating i {
  color: var(--primary-olive);
  font-size: 12px;
  margin-right: 2px;
}

.product-card .btn-outline-primary {
  border-color: var(--primary-olive);
  color: var(--primary-olive);
  width: 100%;
  font-size: var(--font-small);
  padding: 8px 16px;
  transition: all var(--transition-smooth);
}

.product-card .btn-outline-primary:hover {
  background-color: var(--primary-olive);
  border-color: var(--primary-olive);
  color: white;
}

/* ===================================
   FMCG OVERVIEW SECTION
   =================================== */

.fmcg-overview-section {
  padding: 100px 0;
  background-color: white;
}

.overview-content {
  opacity: 0;
  transform: translateX(-30px);
}

.overview-content.animate {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease-out;
}

.overview-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.overview-text {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  font-size: 16px;
  color: var(--dark-charcoal);
}

.benefits-list i {
  color: var(--primary-olive);
  margin-right: var(--space-sm);
  margin-top: 2px;
  flex-shrink: 0;
}

.overview-visual {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
}

.overview-visual.animate {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease-out 0.2s;
}

.overview-image {
  background: linear-gradient(135deg, var(--light-grey) 0%, #f0f0f0 100%);
  border-radius: var(--border-radius-lg);
  padding: 0;
  text-align: center;
  color: var(--primary-olive);
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-smooth);
}

.overview-image:hover img {
  transform: scale(1.05);
}

.overview-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--space-xl) var(--space-md) var(--space-md);
  z-index: 2;
}

.overview-image-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.stats-overlay {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.stat-item {
  background: white;
  padding: var(--space-sm);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-olive);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* ===================================
   CTA QUESTIONS SECTION
   =================================== */

.cta-questions-section {
  background: linear-gradient(
    135deg,
    var(--primary-olive-dark) 0%,
    var(--primary-olive) 100%
  );
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-questions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: var(--font-small);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: ctaFadeUp 0.6s ease-out 0.2s both;
}

.cta-heading {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: ctaFadeUp 0.6s ease-out 0.4s both;
}

.cta-subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: ctaFadeUp 0.6s ease-out 0.6s both;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: scale(0.9);
  animation: ctaScaleUp 0.6s ease-out 0.8s both;
}

.cta-phone i {
  font-size: 36px;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: ctaFadeUp 0.6s ease-out 1s both;
}

.cta-buttons .btn {
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-buttons .btn-light {
  background-color: white;
  color: var(--primary-olive);
  border-color: white;
}

.cta-buttons .btn-light:hover {
  background-color: var(--secondary-off-white);
  border-color: var(--secondary-off-white);
  color: var(--primary-olive-dark);
}

.cta-buttons .btn-outline-light {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline-light:hover {
  background-color: white;
  color: var(--primary-olive);
}

@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaScaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 767.98px) {
  .product-range-section .row.justify-content-center {
    justify-content: center !important;
  }

  .category-card {
    max-width: 280px;
    margin: 0 auto var(--space-md) auto;
  }

  .overview-heading {
    font-size: 28px;
  }

  .overview-text {
    font-size: 16px;
  }

  .stats-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: var(--space-md);
  }

  .stat-item {
    min-width: 100px;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-phone {
    font-size: 32px;
  }

  .cta-phone i {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */

.breadcrumb-nav {
  font-size: var(--font-small);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: white;
}

.welcome-section {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.welcome-image {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--light-grey);
  border-radius: var(--border-radius-lg);
  color: var(--primary-olive);
}

.what-we-do-section {
  padding: var(--space-3xl) 0;
  background-color: #f8f8f6;
}

.service-item {
  text-align: center;
  padding: var(--space-md);
  transition: transform var(--transition-smooth);
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item i {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.service-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-sm);
}

.service-item p {
  font-size: var(--font-small);
  color: #666;
  margin-bottom: 0;
}

.values-section {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.value-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.value-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md) auto;
  transition: all var(--transition-smooth);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background-color: var(--primary-olive-dark);
}

.value-icon i {
  font-size: 32px;
  color: white;
}

.value-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: var(--font-small);
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
}

.sourcing-section {
  padding: var(--space-3xl) 0;
  background-color: var(--light-grey);
}

.source-country {
  text-align: center;
  padding: var(--space-md);
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  height: 100%;
}

.source-country:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.country-flag {
  font-size: 48px;
  margin-bottom: var(--space-sm);
}

.source-country h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-xs);
}

.source-country p {
  font-size: var(--font-small);
  color: #666;
  margin-bottom: 0;
}

.promise-section {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.promise-text {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* ===================================
   CONTACT PAGE SPECIFIC STYLES
   =================================== */

.contact-content {
  padding: var(--space-3xl) 0;
}

.contact-info-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  height: fit-content;
}

.contact-info-card .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-info-card .contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-olive);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.contact-info-card .contact-details h6 {
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-xs);
}

.contact-info-card .contact-details p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.contact-info-card .contact-details a {
  color: var(--primary-olive);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info-card .contact-details a:hover {
  color: var(--primary-olive-dark);
}

.map-section {
  padding: var(--space-xl) 0;
}

.map-placeholder {
  height: 350px;
  background-color: var(--light-grey);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
}

.quick-contact-strip {
  background-color: var(--light-grey);
  padding: var(--space-xl) 0;
  text-align: center;
}

.quick-contact-strip p {
  font-size: 18px;
  color: var(--dark-charcoal);
  margin-bottom: var(--space-sm);
}

.quick-contact-strip .phone-link {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-olive);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.quick-contact-strip .phone-link:hover {
  color: var(--primary-olive-dark);
}

/* ===================================
   PRODUCT CATEGORY PAGE STYLES
   =================================== */

.category-hero {
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-olive) 0%,
    var(--primary-olive-dark) 100%
  );
  color: white;
  display: flex;
  align-items: center;
  position: relative;
}

.category-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="categoryPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23categoryPattern)"/></svg>');
  opacity: 0.3;
}

.category-hero .container {
  position: relative;
  z-index: 2;
}

.category-hero h1 {
  font-size: var(--font-section-heading);
  margin-bottom: var(--space-sm);
}

.filter-bar {
  background-color: var(--light-grey);
  padding: var(--space-md) 0;
  border-bottom: 1px solid #ddd;
}

.filter-chips {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 16px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: var(--font-small);
  color: var(--dark-charcoal);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.filter-chip.active,
.filter-chip:hover {
  background-color: var(--primary-olive);
  color: white;
  border-color: var(--primary-olive);
}

.search-input {
  max-width: 250px;
  margin-left: auto;
}

.product-grid-section {
  padding: var(--space-2xl) 0;
}

.pagination-section {
  padding: var(--space-xl) 0;
  text-align: center;
}

.pagination {
  display: inline-flex;
  gap: var(--space-xs);
}

.pagination a,
.pagination span {
  padding: 8px 12px;
  border: 1px solid #ddd;
  color: var(--dark-charcoal);
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.pagination a:hover,
.pagination .active {
  background-color: var(--primary-olive);
  color: white;
  border-color: var(--primary-olive);
}

.related-categories {
  background-color: var(--light-grey);
  padding: var(--space-xl) 0;
}

.related-category-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: var(--dark-charcoal);
  height: 100%;
}

.related-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  color: var(--dark-charcoal);
  text-decoration: none;
}

.related-category-card i {
  font-size: 36px;
  color: var(--primary-olive);
  margin-bottom: var(--space-sm);
}

.related-category-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

/* ===================================
   ADDITIONAL PRODUCT CARD STYLES
   =================================== */

.product-description {
  font-size: var(--font-small);
  color: #666;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.product-card .btn-primary.btn-sm {
  width: 100%;
  padding: 8px 16px;
  font-size: var(--font-small);
  margin-top: auto;
}

.product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Input group styling for search */
.input-group-text {
  background-color: var(--primary-olive);
  border-color: var(--primary-olive);
  color: white;
}

.input-group .form-control:focus {
  border-color: var(--primary-olive);
  box-shadow: 0 0 0 0.2rem rgba(92, 107, 74, 0.25);
}

/* Enhanced mobile responsiveness */
@media (max-width: 991.98px) {
  .filter-bar .row {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .filter-chips {
    justify-content: center;
  }

  .search-input {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .category-hero {
    height: 250px;
  }

  .category-hero h1 {
    font-size: 28px;
  }

  .filter-chips {
    flex-direction: column;
    align-items: center;
  }

  .filter-chip {
    width: 200px;
    text-align: center;
  }
}

/* Animation improvements */
.product-card,
.category-card,
.value-card,
.service-item,
.source-country {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.product-card.animate,
.category-card.animate,
.value-card.animate,
.service-item.animate,
.source-country.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure consistent card heights */
.product-card,
.category-card,
.value-card {
  display: flex;
  flex-direction: column;
}

.product-content,
.category-content,
.value-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .btn,
.category-link {
  margin-top: auto;
}

/* Loading states and micro-interactions */
.btn:active {
  transform: scale(0.98);
}

.form-control:focus {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

/* Print styles */
@media print {
  .navbar,
  .cta-questions-section,
  .filter-bar,
  .pagination-section {
    display: none !important;
  }

  .page-header {
    background: none !important;
    color: black !important;
  }

  .card,
  .product-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
} /* =
==================================
   COMPREHENSIVE RESPONSIVE STYLES
   =================================== */

/* Typography Scaling */
@media (max-width: 575.98px) {
  :root {
    --font-hero: 36px;
    --font-section-heading: 28px;
    --font-card-title: 18px;
    --font-body: 15px;
    --font-small: 13px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --font-hero: 44px;
    --font-section-heading: 32px;
    --font-card-title: 20px;
    --font-body: 16px;
    --font-small: 14px;
  }
}

/* Container Responsive Widths */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-brand .logo-text {
    font-size: 20px;
  }

  .navbar-collapse {
    background-color: white;
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-sm);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .navbar-nav .nav-link {
    padding: var(--space-sm) 0;
    margin: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--light-grey);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    background-color: var(--light-grey);
    margin: var(--space-xs) 0;
    border-radius: var(--border-radius-sm);
  }
}

/* Hero Section Responsive */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 500px;
    text-align: center;
    padding: var(--space-xl) 0;
  }

  .hero-headline {
    font-size: 27px;
    margin-bottom: var(--space-md);
  }

  .hero-subheadline {
    font-size: 16px;
    margin-bottom: var(--space-lg);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Grid Responsive Adjustments */

/* Product Category Cards (5 items) */
@media (min-width: 1200px) {
  .product-range-section .row > .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-range-section .row {
    justify-content: center;
  }
  .product-range-section .col-lg-2:nth-child(4),
  .product-range-section .col-lg-2:nth-child(5) {
    margin-top: var(--space-md);
  }
}

@media (max-width: 767.98px) {
  .product-range-section .col-lg-2 {
    flex: 0 0 100%;
    max-width: 320px;
    margin: 0 auto var(--space-md) auto;
  }
}

/* Product Grid Responsive */
@media (min-width: 1200px) {
  .product-grid-section .row > .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .product-grid-section .row > .col-lg-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .product-grid-section .row > .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767.98px) {
  .product-grid-section .row > .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .product-grid-section .row > .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Value Props Responsive */
@media (max-width: 767.98px) {
  .value-props-section .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: var(--space-lg);
  }
}

/* Two-Column Layouts Responsive */
@media (max-width: 991.98px) {
  .fmcg-overview-section .row,
  .welcome-section .row {
    flex-direction: column;
  }

  .fmcg-overview-section .col-lg-6,
  .welcome-section .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: var(--space-lg);
  }

  .overview-visual,
  .welcome-image {
    order: -1;
  }

  .overview-image {
    height: 300px;
    margin-bottom: var(--space-md);
  }

  .overview-image-text {
    font-size: 16px;
  }
}

/* Footer Responsive */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-section .row {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-section .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: var(--space-xl);
  }
}

@media (max-width: 767.98px) {
  .footer-section {
    text-align: center;
    padding: var(--section-padding-mobile) 0 var(--space-lg) 0;
  }

  .footer-section .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: var(--space-xl);
  }

  .social-icons {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }
}

/* Form Layout Responsive */
@media (max-width: 991.98px) {
  .contact-content .row {
    flex-direction: column;
  }

  .contact-content .col-lg-7,
  .contact-content .col-lg-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-info-card {
    margin-top: var(--space-xl);
  }
}

/* Spacing Adjustments */
@media (max-width: 767.98px) {
  .hero-section,
  .product-range-section,
  .newest-products-section,
  .value-props-section,
  .fmcg-overview-section,
  .welcome-section,
  .what-we-do-section,
  .values-section,
  .sourcing-section,
  .promise-section,
  .contact-content,
  .product-grid-section {
    padding: var(--section-padding-mobile) 0;
  }

  .card,
  .product-card,
  .category-card,
  .value-card,
  .contact-info-card {
    padding: var(--space-sm);
  }

  .category-content,
  .product-content {
    padding: var(--space-sm);
  }
}

/* Touch Considerations */
@media (max-width: 991.98px) {
  .btn {
    min-height: 48px;
    padding: var(--space-sm) var(--space-md);
  }

  .form-control {
    min-height: 48px;
    padding: var(--space-sm);
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .navbar-nav .nav-link {
    min-height: 48px;
  }

  .filter-chip {
    min-height: 44px;
    padding: var(--space-sm) var(--space-md);
  }
}

/* Images Responsive */
img {
  max-width: 100%;
  height: auto;
}

.overview-image,
.welcome-image,
.about-image-placeholder {
  max-width: 100%;
  height: auto;
}

/* Hide/Show Elements */
@media (max-width: 767.98px) {
  .floating-elements {
    display: none;
  }

  .stats-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: var(--space-md);
    gap: var(--space-sm);
  }

  .stat-item {
    min-width: 100px;
    font-size: var(--font-small);
  }
}

/* ===================================
   FORM VALIDATION STYLES
   =================================== */

.form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
  display: block;
  animation: fadeInError 0.3s ease-out;
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success Message */
.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
  border-radius: var(--border-radius-sm);
  padding: var(--space-sm);
  animation: fadeInSuccess 0.5s ease-out;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

/* GPU Acceleration for animations */
.btn,
.card,
.product-card,
.category-card,
.value-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Optimize images */
.product-image,
.category-image,
.overview-image {
  transform: translateZ(0);
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

/* Focus indicators */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-olive);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-olive);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .navbar,
  .cta-questions-section,
  .filter-bar,
  .pagination-section,
  .floating-elements {
    display: none !important;
  }

  .page-header,
  .category-hero {
    background: none !important;
    color: black !important;
    box-shadow: none !important;
  }

  .card,
  .product-card,
  .category-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    break-inside: avoid;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1 {
    font-size: 18pt;
  }
  h2 {
    font-size: 16pt;
  }
  h3 {
    font-size: 14pt;
  }

  .btn {
    border: 1px solid #000;
    background: none !important;
    color: #000 !important;
  }
} /* =
==================================
   MODERN GLASSMORPHISM EFFECTS
   =================================== */

.glass-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-navbar {
  background: rgba(250, 249, 246, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #5c6b4a 0%, #c9b97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Advanced Button Styles */
.btn-modern {
  position: relative;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-modern:hover::before {
  left: 100%;
}

/* Modern Card Hover Effects */
.modern-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5c6b4a 0%, #c9b97a 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-card:hover::before {
  transform: scaleX(1);
}

.modern-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #5c6b4a 0%, #c9b97a 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #4a5a39 0%, #b8a869 100%);
} /* 
===================================
   MODERN SEARCH OVERLAY
   =================================== */

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  position: relative;
  transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

.search-box {
  display: flex;
  margin-bottom: 20px;
}

.search-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--light-grey);
  border-radius: 50px 0 0 50px;
  font-size: 18px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: var(--primary-olive);
}

.search-btn {
  padding: 16px 24px;
  background: var(--primary-olive);
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: var(--primary-olive-dark);
}

.search-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.search-close:hover {
  color: var(--primary-olive);
}

.search-results {
  max-height: 300px;
  overflow-y: auto;
}

.search-result-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--light-grey);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-result-item:hover {
  background-color: var(--light-grey);
}

.no-results {
  text-align: center;
  color: #666;
  padding: 20px;
}

/* ===================================
   MODERN NOTIFICATIONS
   =================================== */

.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
}

.notification {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 16px;
}

.notification-icon {
  margin-right: 12px;
  font-size: 20px;
}

.notification-success .notification-icon {
  color: #4caf50;
}

.notification-error .notification-icon {
  color: #f44336;
}

.notification-warning .notification-icon {
  color: #ff9800;
}

.notification-info .notification-icon {
  color: #2196f3;
}

.notification-message {
  flex: 1;
  font-weight: 500;
}

.notification-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  padding: 0;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.notification-close:hover {
  color: #333;
}

/* ===================================
   MODERN LOADING STATES
   =================================== */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-off-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.page-loader.fade-out {
  opacity: 0;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--light-grey);
  border-top: 4px solid var(--primary-olive);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: var(--primary-olive);
  font-weight: 600;
  font-size: 18px;
}

.btn.loading {
  position: relative;
  color: transparent !important;
}

.btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  color: white;
}

/* ===================================
   LAZY LOADING IMAGES
   =================================== */

img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.loaded {
  opacity: 1;
}

/* ===================================
   MODERN PROGRESS BARS
   =================================== */

.progress-modern {
  background: var(--light-grey);
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
  margin: 16px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-olive) 0%,
    var(--soft-gold) 100%
  );
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===================================
   MODERN TOOLTIPS
   =================================== */

[data-tooltip] {
  position: relative;
  cursor: pointer;
}

[data-tooltip]:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-charcoal);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  animation: tooltipFadeIn 0.3s ease forwards;
}

[data-tooltip]:hover::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark-charcoal);
  margin-bottom: -5px;
  opacity: 0;
  animation: tooltipFadeIn 0.3s ease forwards;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===================================
   MOBILE OPTIMIZATIONS
   =================================== */

@media (max-width: 767.98px) {
  .search-container {
    padding: 20px;
    margin: 20px;
  }

  .search-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .notification-container {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .notification {
    transform: translateY(-100px);
  }

  .notification.show {
    transform: translateY(0);
  }
} /*
 ===================================
   IMAGE PLACEHOLDER ENHANCEMENTS
   =================================== */

/* Ensure all product and category images have consistent styling */
.product-image img,
.category-image img {
  border: none;
  background-color: var(--light-grey);
  color: var(--primary-olive);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
}

/* Loading state for images */
.product-image img[loading="lazy"],
.category-image img[loading="lazy"] {
  opacity: 1; /* Show images immediately */
  transition: opacity 0.3s ease;
}

.product-image img[loading="lazy"].loaded,
.category-image img[loading="lazy"].loaded {
  opacity: 1;
}

/* Fallback styling if images fail to load */
.product-image img:not([src]),
.category-image img:not([src]) {
  background: linear-gradient(
    135deg,
    var(--primary-olive) 0%,
    var(--soft-gold) 100%
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modern image overlay effect */
.product-card .product-image::after,
.category-card .category-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 107, 74, 0.1) 0%,
    rgba(201, 185, 122, 0.1) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.product-card:hover .product-image::after,
.category-card:hover .category-image::after {
  opacity: 1;
}

/* Ensure consistent aspect ratios */
.category-image {
  aspect-ratio: 3/2; /* 300x200 ratio */
}

.product-image {
  aspect-ratio: 5/4; /* 250x200 ratio */
}

/* Mobile optimizations for images */
@media (max-width: 767.98px) {
  .category-image {
    height: 160px;
  }

  .product-image {
    height: 150px;
  }
} /* 
===================================
   HERO BACKGROUND IMAGE (HTML APPROACH)
   =================================== */

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

/* Ensure content is above background */
.hero-overlay,
.container {
  position: relative;
  z-index: 2;
}

/* Alternative: Remove CSS background if HTML approach works */
.hero-section.use-html-bg {
  background: none;
}
/*
 ===================================
   MODERN ABOUT PAGE ENHANCEMENTS
   =================================== */

/* Modern Hero Section */
.modern-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5c6b4a 0%, #4a5a39 50%, #3d4a32 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.modern-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(201, 185, 122, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Floating Background Elements */
.floating-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: float-gentle 6s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  background: linear-gradient(
    45deg,
    rgba(201, 185, 122, 0.2),
    rgba(255, 255, 255, 0.1)
  );
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 15%;
  animation-delay: 1s;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15),
    rgba(201, 185, 122, 0.1)
  );
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 25%;
  animation-delay: 3s;
  background: linear-gradient(45deg, rgba(201, 185, 122, 0.15), transparent);
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 50%;
  animation-delay: 4s;
}

.shape-6 {
  width: 90px;
  height: 90px;
  top: 40%;
  right: 40%;
  animation-delay: 5s;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(201, 185, 122, 0.05)
  );
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* Animated Particles */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particle-float 8s linear infinite;
}

.particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle:nth-child(2) {
  left: 40%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.particle:nth-child(3) {
  left: 60%;
  animation-delay: 4s;
  animation-duration: 12s;
}

.particle:nth-child(4) {
  left: 80%;
  animation-delay: 6s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 8s;
  animation-duration: 11s;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(-10vh) scale(1);
  }
  100% {
    transform: translateY(-20vh) scale(0);
    opacity: 0;
  }
}

/* Modern Typography */
.modern-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.modern-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  40% {
    transform: rotate(-45deg) translateY(-10px);
  }
  60% {
    transform: rotate(-45deg) translateY(-5px);
  }
}

/* Modern Section Styling */
.modern-section {
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
  position: relative;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-olive) 0%,
    var(--soft-gold) 100%
  );
  margin: 1rem 0 2rem 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
  font-weight: 400;
}

.enhanced-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(92, 107, 74, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(92, 107, 74, 0.15);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-olive);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
}

/* Floating Icon Container */
.floating-icon-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--primary-olive) 0%,
    var(--soft-gold) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(92, 107, 74, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.orbit-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-olive);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: orbit 8s linear infinite;
}

.orbit-1 {
  animation-delay: 0s;
}

.orbit-2 {
  animation-delay: -2.67s;
}

.orbit-3 {
  animation-delay: -5.33s;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(92, 107, 74, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 15px 40px rgba(92, 107, 74, 0.5);
    transform: scale(1.05);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(120px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(120px) rotate(-360deg);
  }
}

.visual-caption {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-olive);
}

/* Floating Background Shapes for Sections */
.floating-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(92, 107, 74, 0.03),
    rgba(201, 185, 122, 0.05)
  );
  animation: float-bg 10s ease-in-out infinite;
}

.bg-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.bg-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 5s;
}

@keyframes float-bg {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Modern Card Enhancements */
.modern-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.modern-card:hover::before {
  left: 100%;
}

.modern-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(92, 107, 74, 0.2);
}

/* Glass Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Service Icon Enhancement */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-olive) 0%,
    var(--soft-gold) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.modern-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(92, 107, 74, 0.3);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary-olive),
    var(--soft-gold),
    var(--primary-olive)
  );
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-card:hover .card-glow {
  opacity: 0.3;
}

/* Animation Data Attributes */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in-left"] {
  transform: translateX(-50px);
}

[data-animate="fade-in-right"] {
  transform: translateX(50px);
}

[data-animate="scale-in"] {
  transform: scale(0.8);
}

[data-animate="fade-in-left"].animate,
[data-animate="fade-in-right"].animate {
  transform: translateX(0);
}

[data-animate="scale-in"].animate {
  transform: scale(1);
}

/* Delay Classes */
[data-delay="100"] {
  transition-delay: 100ms;
}
[data-delay="200"] {
  transition-delay: 200ms;
}
[data-delay="300"] {
  transition-delay: 300ms;
}
[data-delay="400"] {
  transition-delay: 400ms;
}
[data-delay="500"] {
  transition-delay: 500ms;
}
[data-delay="600"] {
  transition-delay: 600ms;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .floating-bg-elements,
  .particles-container {
    display: none;
  }

  .modern-hero {
    min-height: 50vh;
  }

  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }

  .floating-icon-container {
    width: 250px;
    height: 250px;
  }

  .main-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .orbit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
  }

  .modern-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Performance Optimizations */
.floating-shape,
.particle,
.orbit-icon,
.main-icon {
  will-change: transform;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .floating-shape,
  .particle,
  .orbit-icon,
  .main-icon,
  .scroll-arrow {
    animation: none !important;
  }

  .modern-card:hover {
    transform: none !important;
  }
}
/* ===================================
   LOGO STYLING
   =================================== */

/* Header Logo */
.navbar-logo {
  height: 175px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

/* Footer Logo */
.footer-logo-img {
    height: 268px;
    margin-right: 12px;
    transition: all 0.3s ease;
    margin-top: -92px;
    margin-bottom: -74px;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
    margin-right: 8px;
  }

  .footer-logo-img {
    height: 35px;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
        margin-top: -30px;
        margin-bottom: -39px;
        height: 98px;
        width: 99px;
    }

   .footer-logo-img {
        height: 222px;
        margin-inline: 35px;
    }
}

/* ===================================
   HERO SLIDER STYLES
   =================================== */

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Ensure hero content stays above slider */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 45, 45, 0.4) 0%,
    rgba(92, 107, 74, 0.3) 50%,
    rgba(45, 45, 45, 0.2) 100%
  );
  z-index: 2;
}

/* Optional: Add slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Mobile adjustments for slider */
@media (max-width: 767.98px) {
  .hero-slide .hero-bg-image {
    object-position: center center;
  }
  
  .hero-indicators {
    bottom: 20px;
  }
  
  .hero-indicator {
    width: 10px;
    height: 10px;
  }
}/* 
===================================
   MODERN DESIGN SYSTEM STYLES
   =================================== */

/* Modern Section Headers */
.modern-section-header {
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-olive);
  background: rgba(92, 107, 74, 0.1);
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 16px;
  position: relative;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-olive);
  border-radius: 50%;
}

.modern-section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-charcoal);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-olive) 0%, var(--soft-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Background Shapes */
.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(92, 107, 74, 0.05) 0%, rgba(201, 185, 122, 0.05) 100%);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: -3%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* ===================================
   MODERN VALUE PROPOSITIONS SECTION
   =================================== */

.modern-value-props-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.modern-value-card {
  height: 100%;
  perspective: 1000px;
}

.value-card-inner {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.modern-value-card:hover .value-card-inner {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-icon-wrapper {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-olive) 0%, var(--soft-gold) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-olive) 0%, var(--soft-gold) 100%);
  border-radius: 20px;
  opacity: 0;
  filter: blur(20px);
  transition: all 0.3s ease;
}

.modern-value-card:hover .icon-glow {
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1.2);
}

.modern-value-card:hover .value-icon {
  transform: scale(1.1) rotateY(10deg);
}

.value-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
  text-align: center;
}

.value-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  text-align: center;
  margin: 0;
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.modern-value-card:hover .card-hover-effect {
  left: 100%;
}

/* ===================================
   MODERN PRODUCT RANGE SECTION
   =================================== */

.modern-product-range-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.modern-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.category-item {
  position: relative;
}

.modern-category-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-category-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.category-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modern-category-card:hover .category-image-wrapper img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(92, 107, 74, 0.8) 0%, rgba(201, 185, 122, 0.6) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.modern-category-card:hover .image-overlay {
  opacity: 1;
}

.category-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 48px;
  transition: all 0.3s ease;
  z-index: 2;
}

.modern-category-card:hover .category-hover-icon {
  transform: translate(-50%, -50%) scale(1);
}

.category-content {
  padding: 30px 25px;
}

.category-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
}

.category-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.modern-category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-olive);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.modern-category-link:hover {
  color: var(--primary-olive-dark);
  gap: 12px;
}

.modern-category-link i {
  transition: transform 0.3s ease;
}

.modern-category-link:hover i {
  transform: translateX(4px);
}

/* ===================================
   MODERN FEATURED PRODUCTS SECTION
   =================================== */

.modern-featured-products-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.modern-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.modern-product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.modern-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modern-product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

.product-badge.new {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.product-badge.popular {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
  color: white;
}

.product-badge.trending {
  background: linear-gradient(135deg, #e83e8c, #fd7e14);
  color: white;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.modern-product-card:hover .product-overlay {
  opacity: 1;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modern-product-card:hover .product-actions {
  transform: translateY(0);
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  justify-content: center;
}

.action-btn.primary {
  background: var(--primary-olive);
  color: white;
}

.action-btn.primary:hover {
  background: var(--primary-olive-dark);
  transform: translateY(-2px);
  color: white;
}

.action-btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-charcoal);
}

.action-btn.secondary:hover {
  background: white;
  transform: translateY(-2px);
}

.product-info {
  padding: 25px 20px;
}

.product-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-olive);
  background: rgba(92, 107, 74, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffc107;
  font-size: 14px;
}

.rating-text {
  font-size: 13px;
  color: #666;
}

/* ===================================
   MODERN ABOUT SECTION
   =================================== */

.modern-about-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.about-content .modern-section-header {
  text-align: left;
  margin-bottom: 40px;
}

.modern-benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(92, 107, 74, 0.02);
  border-radius: 16px;
  border-left: 4px solid var(--primary-olive);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(92, 107, 74, 0.05);
  transform: translateX(8px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  color: var(--primary-olive);
  font-size: 18px;
}

.benefit-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.modern-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(92, 107, 74, 0.3) 0%, rgba(201, 185, 122, 0.2) 100%);
}

.floating-stats {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 180px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-olive) 0%, var(--soft-gold) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-charcoal);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   MODERN CTA SECTION
   =================================== */

.modern-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-olive) 0%, var(--primary-olive-dark) 100%);
  position: relative;
  overflow: hidden;
}

.modern-cta-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  border-radius: 24px;
}

.cta-content {
  color: white;
}

.cta-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.cta-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.phone-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-highlight i {
  color: white;
  font-size: 18px;
}

.phone-number {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

.modern-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.modern-btn.primary {
  background: white;
  color: var(--primary-olive);
}

.modern-btn.primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--primary-olive-dark);
}

.modern-btn.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.modern-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
  color: white;
}

/* Modern CTA Button */
.modern-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary-olive) 0%, var(--soft-gold) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(92, 107, 74, 0.3);
}

.modern-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(92, 107, 74, 0.4);
  color: white;
}

.modern-cta-btn i {
  transition: transform 0.3s ease;
}

.modern-cta-btn:hover i {
  transform: translateX(4px);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 991.98px) {
  .modern-value-props-section,
  .modern-product-range-section,
  .modern-featured-products-section,
  .modern-about-section {
    padding: 80px 0;
  }
  
  .modern-section-title {
    font-size: clamp(28px, 4vw, 36px);
  }
  
  .modern-categories-grid,
  .modern-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .floating-stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
            margin-bottom: 33px;

  }
  
  .stat-card {
    min-width: 140px;
  }
  
  .cta-actions {
    align-items: center;
    margin-top: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .modern-btn {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .modern-value-props-section,
  .modern-product-range-section,
  .modern-featured-products-section,
  .modern-about-section {
    padding: 60px 0;
  }
  
  .modern-section-header {
    margin-bottom: 40px;
  }
  
  .modern-categories-grid,
  .modern-products-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card-inner {
    padding: 30px 20px;
  }
  
  .category-content {
    padding: 25px 20px;
  }
  
     .floating-stats {
        margin-inline: 56px;
        flex-direction: column;
    }
  .modern-image-container img {
    width: 100%;
    height: 227px;
    object-fit: cover;
}
  .modern-cta-container {
    padding: 40px 20px;
  }
  
  .phone-highlight {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================================
   ANIMATION KEYFRAMES
   =================================== */

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quick View Modal Placeholder */
.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.quick-view-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}/* =====
==============================
   MODERN ALL PRODUCTS PAGE STYLES
   =================================== */

/* Products Hero Section */
.modern-products-hero {
  padding: 140px 0 80px 0;
  background: linear-gradient(135deg, var(--primary-olive) 0%, var(--primary-olive-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.products-hero-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.modern-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.modern-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.modern-breadcrumb a:hover {
  color: white;
}

.modern-breadcrumb i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.modern-breadcrumb span {
  color: white;
}

.products-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.products-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Filter Section */
.modern-filter-section {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.filter-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(92, 107, 74, 0.1);
  border: 2px solid transparent;
  border-radius: 25px;
  color: var(--primary-olive);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary-olive);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 107, 74, 0.3);
}

.filter-tab i {
  font-size: 16px;
}

.search-container {
  display: flex;
  justify-content: flex-end;
}

.modern-search-box {
  position: relative;
  max-width: 300px;
  width: 100%;
}

.modern-search-box input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border: 2px solid rgba(92, 107, 74, 0.2);
  border-radius: 25px;
  font-size: 15px;
  background: white;
  transition: all 0.3s ease;
}

.modern-search-box input:focus {
  outline: none;
  border-color: var(--primary-olive);
  box-shadow: 0 0 0 3px rgba(92, 107, 74, 0.1);
}

.modern-search-box button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-olive);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modern-search-box button:hover {
  background: var(--primary-olive-dark);
  transform: translateY(-50%) scale(1.1);
}

/* Modern Products Grid */
.modern-products-grid-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 60vh;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.modern-product-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.modern-product-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modern-product-item.hidden {
  display: none;
}

/* Enhanced Product Cards */
.modern-product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.modern-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modern-product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.product-badge.new {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.product-badge.popular {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
  color: white;
  box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
}

.product-badge.trending {
  background: linear-gradient(135deg, #e83e8c, #fd7e14);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.modern-product-card:hover .product-overlay {
  opacity: 1;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modern-product-card:hover .product-actions {
  transform: translateY(0);
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  justify-content: center;
  min-width: 160px;
}

.action-btn.primary {
  background: var(--primary-olive);
  color: white;
  box-shadow: 0 4px 15px rgba(92, 107, 74, 0.3);
}

.action-btn.primary:hover {
  background: var(--primary-olive-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(92, 107, 74, 0.4);
  color: white;
}

.action-btn.secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-charcoal);
  backdrop-filter: blur(10px);
}

.action-btn.secondary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.product-info {
  padding: 28px 24px;
}

.product-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-olive);
  background: rgba(92, 107, 74, 0.1);
  padding: 6px 14px;
  border-radius: 15px;
  margin-bottom: 14px;
}

.product-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-description {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars i {
  color: #ffc107;
  font-size: 14px;
}

.rating-text {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

/* Load More Button */
.modern-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary-olive) 0%, var(--soft-gold) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(92, 107, 74, 0.3);
  border: none;
  cursor: pointer;
}

.modern-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(92, 107, 74, 0.4);
  color: white;
}

.modern-cta-btn i {
  transition: transform 0.3s ease;
}

.modern-cta-btn:hover i {
  transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .modern-products-hero {
    padding: 120px 0 60px 0;
  }
  
  .products-hero-title {
    font-size: clamp(28px, 4vw, 40px);
  }
  
  .modern-filter-section {
    position: static;
    padding: 30px 0;
  }
  
  .filter-container {
    padding: 20px;
  }
  
  .filter-tabs {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .search-container {
    justify-content: center;
  }
  
  .modern-search-box {
    max-width: 100%;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .modern-products-grid-section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .modern-products-hero {
    padding: 100px 0 40px 0;
  }
  
  .filter-tabs {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .filter-tab {
    width: 200px;
    justify-content: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-image-wrapper {
    height: 240px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .action-btn {
    min-width: 140px;
    padding: 12px 20px;
  }
}

/* Animation for filtered products */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-product-item.filter-show {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading state */
.products-grid.loading {
  opacity: 0.7;
  pointer-events: none;
}

.products-grid.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(92, 107, 74, 0.3);
  border-top: 3px solid var(--primary-olive);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}