/* Mavuni Sand & Brick Yard - Component Styles */

/* ===== GLOBAL MOBILE FIX ===== */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  max-width: 100%;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* Prevent cards from overflowing on mobile */
.value-card,
.brick-card,
.empowering-card,
.product-card {
  max-width: 100%;
  box-sizing: border-box;
}

/* ===== KENFORE GROUP NAVIGATION HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Navigation Container */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  position: relative;
}

/* Logo Brand */
.nav__brand {
  z-index: 1002;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  transition: all 0.3s ease;
}

.nav__logo:hover {
  transform: scale(1.02);
  color: var(--secondary-brown);
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  margin-right: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav__logo:hover .nav__logo-img {
  box-shadow: 0 4px 12px rgba(181, 76, 49, 0.2);
}

.nav__logo-text {
  font-size: var(--text-xl);
  letter-spacing: -0.5px;
  color: var(--primary-red);
}

/* Desktop Navigation */
.nav__menu {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav__link {
  color: var(--neutral-charcoal);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(181, 76, 49, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav__link:hover::before {
  left: 100%;
}

.nav__link:hover {
  color: var(--primary-red);
  background-color: rgba(181, 76, 49, 0.05);
  transform: translateY(-1px);
}

.nav__link.active {
  color: var(--primary-red);
  background-color: rgba(181, 76, 49, 0.1);
  font-weight: 600;
}

/* Contact Info */
.nav__contact {
  display: none;
  align-items: center;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--secondary-brown);
}

.nav__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  white-space: nowrap;
  text-decoration: none;
  color: var(--secondary-brown);
  transition: color 0.3s ease;
}

.nav__contact-item:hover {
  color: var(--primary-red);
}

.nav__contact-item i {
  color: var(--primary-red);
  width: 16px;
  text-align: center;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--neutral-charcoal);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: var(--primary-red);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: var(--primary-red);
}

/* Mobile Navigation */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--neutral-white);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}

.nav__mobile.active {
  right: 0;
}

.nav__mobile-content {
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  font-family: var(--font-body);
}

.nav__mobile-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.nav__mobile-item {
  margin-bottom: var(--space-sm);
}

.nav__mobile-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--neutral-charcoal);
  text-decoration: none;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  transition: all 0.3s ease;
}

.nav__mobile-link:hover,
.nav__mobile-link.active {
  color: var(--primary-red);
  padding-left: var(--space-sm);
  font-weight: 600;
}

.nav__mobile-contact {
  border-top: 2px solid var(--accent-nude);
  padding-top: var(--space-lg);
}

.nav__mobile-contact-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.nav__mobile-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--secondary-brown);
}

.nav__mobile-contact-item i {
  width: 18px;
  height: 18px;
  color: var(--primary-red);
  flex-shrink: 0;
}

.nav__mobile-contact-item a {
  color: var(--secondary-brown);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__mobile-contact-item a:hover {
  color: var(--primary-red);
}

/* Mobile Overlay */
.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.nav__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== NAVIGATION RESPONSIVE BREAKPOINTS ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .nav__menu {
    display: flex;
  }
  
  .nav__toggle {
    display: none;
  }
  
  .nav__contact {
    display: flex;
  }
  
  .nav__mobile {
    display: none;
  }
  
  .nav__overlay {
    display: none;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .nav__list {
    gap: var(--space-sm);
  }
  
  .nav__logo {
    font-size: var(--text-2xl);
  }
  
  .nav__logo-img {
    width: 48px;
    height: 48px;
  }
  
  .nav__logo-text {
    font-size: var(--text-2xl);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .nav__list {
    gap: var(--space-md);
  }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .nav__menu {
    display: flex;
  }
  
  .nav__toggle {
    display: none;
  }
  
  .nav__contact {
    display: flex;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .nav {
    padding: var(--space-lg) 0;
  }
  
  .nav__list {
    gap: var(--space-sm);
  }
  
  .nav__logo {
    font-size: var(--text-2xl);
  }
  
  .nav__logo-img {
    width: 48px;
    height: 48px;
  }
  
  .nav__logo-text {
    font-size: var(--text-2xl);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .nav__list {
    gap: var(--space-md);
  }
}



/* ===== FOOTER COMPONENT ===== */
.footer {
  background-color: var(--neutral-charcoal);
  color: var(--neutral-white);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
  font-family: var(--font-body);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer Sections */
.footer__section {
  text-align: center;
}

.footer__section-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Company Info Section */
.footer__brand {
  margin-bottom: var(--space-md);
}

.footer__logo {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  display: block;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: var(--space-xs);
}

.footer__brand-tagline {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.footer__affiliation {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Contact Info Section */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.footer__contact-item i {
  color: var(--primary-red);
  font-size: var(--text-base);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.footer__contact-item div {
  color: rgba(255, 255, 255, 0.9);
}

.footer__contact-item strong {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 2px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--accent-nude);
}

/* Quick Links Section */
.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
  display: inline-block;
  padding: var(--space-xs) 0;
}

.footer__link:hover {
  color: var(--accent-nude);
  transform: translateX(4px);
}

/* Social Media Section */
.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--secondary-brown);
  color: var(--neutral-white);
  text-decoration: none;
  border-radius: 50%;
  font-size: var(--text-lg);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 76, 49, 0.3);
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-lg);
}

.footer__bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer__credit {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer__credit-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__credit-link:hover {
  color: var(--accent-nude);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
  margin: 0;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--text-xs);
  transition: color 0.3s ease;
}

.footer__legal-link:hover {
  color: var(--accent-nude);
}

/* ===== FOOTER RESPONSIVE BREAKPOINTS ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  
  .footer__section {
    text-align: left;
  }
  
  .footer__logo {
    margin: 0 0 var(--space-sm) 0;
  }
  
  .footer__contact-item {
    justify-content: flex-start;
  }
  
  .footer__social {
    justify-content: flex-start;
  }
  
  .footer__bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .footer__content {
    gap: var(--space-xl);
  }
}

/* ===== BRICK CARD COMPONENT ===== */
.brick-card {
  background: var(--neutral-white);
  border-radius: var(--radius-md); /* 12px - signature style */
  box-shadow: 0 4px 6px var(--shadow-light);
  padding: var(--space-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth 300ms transitions */
  position: relative;
  overflow: hidden;
}

.brick-card:hover {
  transform: translateY(-4px); /* 4px lift on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.brick-card--small {
  padding: var(--space-sm);
}

.brick-card--large {
  padding: var(--space-xl);
}

.brick-card--primary {
  border-left: 4px solid var(--primary-red);
}

.brick-card--secondary {
  border-left: 4px solid var(--secondary-brown);
}

.brick-card--accent {
  border-left: 4px solid var(--accent-nude);
}

.brick-card__header {
  margin-bottom: var(--space-md);
}

.brick-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700; /* Montserrat Bold */
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-xs);
}

.brick-card__subtitle {
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  font-weight: 500;
}

.brick-card__content {
  font-family: var(--font-body); /* Montserrat Regular */
  font-weight: 400;
  color: var(--neutral-charcoal);
  line-height: 1.6;
}

.brick-card__footer {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(44, 62, 80, 0.1);
}

/* ===== BUTTON SYSTEM ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body); /* Montserrat */
  font-size: var(--text-base);
  font-weight: 600; /* Montserrat SemiBold */
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm); /* 8px */
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease; /* Consistent hover effects */
  position: relative;
  overflow: hidden;
  min-height: 44px; /* 44px minimum touch target height */
  line-height: 1;
}

.btn:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Primary Button - Mavuni Primary Red */
.btn--primary {
  background: var(--primary-red); /* Mavuni primary red background */
  color: var(--neutral-white);
  font-family: var(--font-body);
  font-weight: 600; /* Montserrat SemiBold */
  box-shadow: 0 2px 4px rgba(181, 76, 49, 0.2);
}

.btn--primary:hover:not(:disabled) {
  background: #a04329; /* Darker shade of primary red */
  transform: translateY(-2px); /* 2px translateY lift on hover */
  box-shadow: 0 6px 20px rgba(181, 76, 49, 0.3); /* Enhanced shadow on hover */
}

.btn--primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(181, 76, 49, 0.2);
}

/* Secondary Button - Transparent with Mavuni Brown Border */
.btn--secondary {
  background: var(--neutral-white); /* Transparent background */
  color: var(--secondary-brown);
  border: 2px solid var(--secondary-brown); /* Mavuni brown border */
  padding: 10px 22px; /* Adjusted for border */
  font-family: var(--font-body);
  font-weight: 600; /* Montserrat SemiBold */
  min-height: 44px; /* Minimum touch target height */
}

/* Ensure button elements have same styling as anchor tags */
button.btn--secondary {
  background: var(--neutral-white) !important;
  color: var(--secondary-brown) !important;
  border: 2px solid var(--secondary-brown) !important;
}

.btn--secondary:hover:not(:disabled) {
  background: var(--secondary-brown);
  color: var(--neutral-white);
  transform: translateY(-2px); /* 2px translateY lift on hover */
  box-shadow: 0 6px 20px rgba(154, 131, 105, 0.3); /* Enhanced shadow on hover */
}

button.btn--secondary:hover:not(:disabled) {
  background: var(--secondary-brown) !important;
  color: var(--neutral-white) !important;
  border-color: var(--secondary-brown) !important;
}

.btn--secondary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(154, 131, 105, 0.2);
}

/* Accent Button - Mavuni Nude Background */
.btn--accent {
  background: var(--accent-nude); /* Mavuni nude background */
  color: var(--neutral-charcoal);
  font-family: var(--font-body);
  font-weight: 600; /* Montserrat SemiBold */
  box-shadow: 0 2px 4px rgba(213, 185, 137, 0.2);
  min-height: 44px; /* Minimum touch target height */
}

.btn--accent:hover:not(:disabled) {
  background: #c9a876; /* Darker shade of accent */
  transform: translateY(-2px); /* 2px translateY lift on hover */
  box-shadow: 0 6px 20px rgba(213, 185, 137, 0.3); /* Enhanced shadow on hover */
}

.btn--accent:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(213, 185, 137, 0.2);
}

/* Button Sizes */
.btn--small {
  font-size: var(--text-sm);
  padding: 8px 16px;
  min-height: 36px;
}

.btn--large {
  font-size: var(--text-lg);
  padding: 16px 32px;
  min-height: 52px;
}

/* Button with Icon */
.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--small .btn__icon {
  width: 16px;
  height: 16px;
}

.btn--large .btn__icon {
  width: 20px;
  height: 20px;
}

/* Button Group */
.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-group--center {
  justify-content: center;
}

.btn-group--end {
  justify-content: flex-end;
}

/* ===== HOVER ANIMATIONS WITH SHADOW LIFT ===== */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth 300ms transitions */
}

.hover-lift:hover {
  transform: translateY(-4px); /* 4px lift on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.hover-lift--subtle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.hover-lift--strong:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

/* Color transition to primary red on hover */
.hover-primary {
  transition: all 0.3s ease;
}

.hover-primary:hover {
  color: var(--primary-red) !important;
}

.hover-primary:hover .hover-primary__icon {
  color: var(--primary-red);
}

/* ===== RESPONSIVE GRID SYSTEM FOR CARDS ===== */
.card-grid {
  display: grid;
  gap: var(--space-md); /* 8px base unit spacing (24px) */
  grid-template-columns: 1fr;
}

/* Value Proposition Cards Grid (4 cards) - 1 column mobile, 2 columns tablet (576px+), 4 columns desktop (1024px+) */
.card-grid--values {
  grid-template-columns: 1fr;
  gap: var(--space-md); /* 8px base unit spacing (24px) */
}

@media (min-width: 576px) {
  .card-grid--values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid--values {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Product Cards Grid (3 cards) - 1 column mobile, 2 columns tablet (768px+), 3 columns desktop (1024px+) */
.card-grid--products {
  grid-template-columns: 1fr;
  gap: var(--space-md); /* 8px base unit spacing (24px) */
}

@media (min-width: 768px) {
  .card-grid--products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid--products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Team Cards Grid (flexible) */
.card-grid--team {
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .card-grid--team {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .card-grid--team {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .card-grid--team {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* General 2-column grid */
.card-grid--2-col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid--2-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* General 3-column grid */
.card-grid--3-col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid--3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid--3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card grid spacing variations */
.card-grid--tight {
  gap: var(--space-sm);
}

.card-grid--loose {
  gap: var(--space-xl);
}

/* ===== SPECIALIZED CARD COMPONENTS ===== */

/* Value Proposition Card */
.value-card {
  text-align: center;
  padding: var(--space-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth 300ms transitions */
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  color: var(--primary-red);
  font-size: 3rem;
}

.value-card__title {
  font-family: var(--font-heading); /* Montserrat Bold */
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-sm);
}

.value-card__description {
  font-family: var(--font-body); /* Montserrat Regular */
  font-weight: 400;
  color: var(--secondary-brown);
  line-height: 1.6;
}

/* Product Preview Card */
.product-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth 300ms transitions */
}

.product-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-xs);
}

.product-card__description {
  color: var(--secondary-brown);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.product-card__cta {
  margin-top: auto;
}

/* Contact Info Card */
.contact-card {
  text-align: center;
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--primary-red);
  font-size: 2rem;
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-sm);
}

.contact-card__content {
  color: var(--secondary-brown);
  line-height: 1.5;
}

.contact-card__link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card__link:hover {
  color: var(--secondary-brown);
}

/* ===== HERO SECTION COMPONENT ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Ensure hero adapts to different screen sizes */
@media (max-width: 480px) {
  .hero {
    min-height: 90vh; /* Slightly shorter on very small screens */
  }
}

@media (min-width: 1400px) {
  .hero {
    min-height: 100vh; /* Full height on large screens */
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero overlay is defined in main.css - do not override */

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--neutral-white);
  max-width: 900px; /* Slightly wider for better content layout */
  padding: var(--space-xl) var(--container-padding);
  width: 100%;
}

.hero__title {
  font-family: var(--font-heading); /* Montserrat */
  font-size: clamp(2.5rem, 5vw, 4rem); /* Large sizing with responsive scaling */
  font-weight: 700; /* Montserrat Bold */
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Better contrast */
}

.hero__title-accent {
  color: var(--accent-nude); /* Highlight tagline in accent nude color */
}

.hero__description {
  font-family: var(--font-body); /* Montserrat Regular */
  font-weight: 400; /* Regular weight */
  font-size: 1.125rem; /* 18px - readable sizing */
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Text shadow for better contrast */
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--neutral-white);
  font-size: var(--text-lg);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: smoothBounce 2.5s ease-in-out infinite;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.hero__scroll-link:hover {
  background-color: rgba(213, 185, 137, 0.2); /* Accent nude with opacity */
  border-color: var(--accent-nude);
  color: var(--accent-nude);
  transform: scale(1.1);
}

@keyframes smoothBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== SECTION COMPONENT ===== */
.section {
  padding: var(--space-2xl) 0; /* Consistent padding */
  margin: 0; /* Consistent margins */
}

/* Alternating backgrounds - white and light gray */
.section--alt {
  background-color: #f8f9fa; /* Light gray background */
}

.section--primary {
  background-color: var(--primary-red);
  color: var(--neutral-white);
}

/* Ensure consistent spacing between sections */
.section + .section {
  margin-top: 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 800px; /* Center section headers with 800px max-width */
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-md); /* Consistent padding */
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
  position: relative;
}

/* Primary red accent for section titles */
.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-red); /* Use primary red for section title accents */
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.section--primary .section__title {
  color: var(--neutral-white);
}

.section__description {
  font-family: var(--font-body); /* Montserrat Regular */
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--secondary-brown);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md); /* Consistent padding */
}

.section--primary .section__description {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md); /* 8px base unit spacing (24px) */
}

/* Value Proposition Grid - 1 column mobile, 2 columns tablet (576px+), 4 columns desktop (1024px+) */
@media (min-width: 576px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card__features {
  list-style: none;
  margin-top: var(--space-md);
}

.value-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--secondary-brown);
}

.value-card__features li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: bold;
  font-size: var(--text-base);
}

/* ===== PRODUCTS PREVIEW SECTION ===== */
.products-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md); /* 8px base unit spacing (24px) */
  margin-bottom: var(--space-xl);
}

/* Product Grid - 1 column mobile, 2 columns tablet (768px+), 3 columns desktop (1024px+) */
@media (min-width: 768px) {
  .products-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__image {
  position: relative;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth 300ms transitions */
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background-color: var(--primary-red);
  color: var(--neutral-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  font-family: var(--font-heading); /* Montserrat Bold */
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-sm);
}

.product-card__description {
  font-family: var(--font-body); /* Montserrat Regular */
  font-weight: 400;
  color: var(--secondary-brown);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.product-card__features {
  margin-bottom: var(--space-md);
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--secondary-brown);
}

.product-card__feature i {
  color: var(--primary-red);
  font-size: var(--text-xs);
}

.product-card__actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: auto;
}

.products-preview__cta {
  text-align: center;
}

/* ===== COMMUNITY IMPACT SECTION ===== */
.community-impact__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.community-impact__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.community-impact__description {
  font-size: var(--text-lg);
  color: var(--secondary-brown);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.community-impact__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.impact-stat {
  text-align: center;
}

.impact-stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.impact-stat__label {
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-impact__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.community-impact__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.community-impact__badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background-color: rgba(181, 76, 49, 0.9);
  color: var(--neutral-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cta-section__description {
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.cta-section__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  opacity: 0.9;
}

.cta-contact-item i {
  width: 16px;
  text-align: center;
}

/* ===== WHITE BUTTON VARIANTS ===== */
.btn--white {
  background: var(--neutral-white);
  color: var(--primary-red);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn--white:hover:not(:disabled) {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
  background: transparent;
  color: var(--neutral-white);
  border: 2px solid var(--neutral-white);
  padding: 10px 22px;
}

.btn--outline-white:hover:not(:disabled) {
  background: var(--neutral-white);
  color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* ===== NAVIGATION COMPONENT UPDATES ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  position: relative;
}

.nav__brand {
  display: flex;
  align-items: center;
  z-index: 1002;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__logo:hover {
  transform: scale(1.05);
  color: var(--secondary-brown);
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  margin-right: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav__logo:hover .nav__logo-img {
  box-shadow: 0 4px 12px rgba(181, 76, 49, 0.2);
}

.nav__logo-text {
  font-size: var(--text-xl);
  letter-spacing: -0.5px;
}

.nav__menu {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav__link {
  color: var(--neutral-charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(181, 76, 49, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav__link:hover::before {
  left: 100%;
}

.nav__link:hover {
  color: var(--primary-red);
  background-color: rgba(181, 76, 49, 0.05);
  transform: translateY(-1px);
}

.nav__link.active {
  color: var(--primary-red);
  background-color: rgba(181, 76, 49, 0.1);
  font-weight: 600;
}

.nav__contact {
  display: none;
  align-items: center;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--secondary-brown);
}

.nav__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  white-space: nowrap;
}

.nav__contact-icon {
  color: var(--primary-red);
  font-size: var(--text-base);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  transition: all 0.3s ease;
}

.nav__toggle:hover {
  background-color: rgba(181, 76, 49, 0.1);
  border-radius: var(--radius-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-charcoal);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: var(--primary-red);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background-color: var(--primary-red);
}

/* ===== PRODUCTS PAGE STYLES ===== */

/* Products Hero Section */
.products-hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
  color: var(--neutral-white);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-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="brick" patternUnits="userSpaceOnUse" width="20" height="10"><rect width="20" height="10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><rect width="10" height="5" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><rect x="10" y="5" width="10" height="5" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23brick)"/></svg>') repeat;
  opacity: 0.3;
  z-index: 0;
}

.products-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.products-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.products-hero__subtitle {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  line-height: 1.6;
}

.products-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.products-hero__stat {
  text-align: center;
}

.products-hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--accent-nude);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.products-hero__stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Products Overview Section */
.products-overview {
  background-color: #f8f9fa;
}

.products-overview__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--secondary-brown);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Padding Utility */
.section-padding {
  padding: var(--space-2xl) 0;
}

/* Background Utilities */
.bg-light {
  background-color: #f8f9fa;
}

/* Product Section Styles */
.product-section {
  position: relative;
}

.product-section__content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.product-section__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.product-section__header--reverse {
  grid-template-columns: 1fr;
}

.product-section__text {
  order: 2;
}

.product-section__image {
  order: 1;
}

.product-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.product-section__description {
  font-size: var(--text-lg);
  color: var(--secondary-brown);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.product-section__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-section__image img:hover {
  transform: scale(1.02);
}

/* Product Details Grid */
.product-details {
  margin-top: var(--space-2xl);
}

.product-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.product-details__card {
  padding: var(--space-lg);
  height: 100%;
}

.product-details__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-details__card-title i {
  color: var(--primary-red);
  font-size: var(--text-lg);
}

.product-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-details__list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
  color: var(--secondary-brown);
  line-height: 1.5;
}

.product-details__list li:last-child {
  border-bottom: none;
}

.product-details__list li strong {
  color: var(--neutral-charcoal);
  font-weight: 600;
}

/* Product CTA */
.product-cta {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(181, 76, 49, 0.05) 0%, rgba(154, 131, 105, 0.05) 100%);
  border-radius: var(--radius-md);
  border: 2px solid rgba(181, 76, 49, 0.1);
}

/* Delivery Section Styles */
.delivery-section {
  background: var(--primary-red);
  color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}

.delivery-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="truck" patternUnits="userSpaceOnUse" width="50" height="50"><rect width="50" height="50" fill="none"/><path d="M10 30h15v10h-15z M30 25h10v15h-10z M35 40a5 5 0 1 1-10 0 5 5 0 0 1 10 0z M15 40a3 3 0 1 1-6 0 3 3 0 0 1 6 0z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23truck)"/></svg>') repeat;
  opacity: 0.1;
  z-index: 0;
}

.delivery-section__content {
  position: relative;
  z-index: 1;
}

.delivery-section__header {
  margin-bottom: var(--space-2xl);
}

.delivery-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.delivery-section__subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

.delivery-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.delivery-details__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.delivery-details__card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.delivery-details__icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: var(--text-2xl);
  color: var(--accent-nude);
}

.delivery-details__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--neutral-white);
}

.delivery-details__description {
  margin-bottom: var(--space-md);
  line-height: 1.6;
  opacity: 0.9;
}

.delivery-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.delivery-details__list li {
  padding: var(--space-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0.9;
}

.delivery-details__list li::before {
  content: "✓";
  color: var(--accent-nude);
  font-weight: bold;
  font-size: var(--text-base);
  flex-shrink: 0;
}

/* Delivery Process */
.delivery-process {
  margin-top: var(--space-2xl);
}

.delivery-process__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  color: var(--neutral-white);
}

.delivery-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.delivery-process__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-nude);
}

.delivery-process__step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-nude);
  color: var(--neutral-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.delivery-process__step-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--neutral-white);
}

.delivery-process__step-description {
  opacity: 0.9;
  line-height: 1.5;
}

/* Delivery CTA */
.delivery-cta {
  margin-top: var(--space-2xl);
}

/* Products CTA Section */
.products-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.products-cta__content {
  max-width: 800px;
  margin: 0 auto;
}

.products-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.products-cta__description {
  font-size: var(--text-lg);
  color: var(--secondary-brown);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.products-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.products-cta__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 600px;
  margin: 0 auto;
}

.products-cta__feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  font-weight: 500;
}

.products-cta__feature i {
  color: var(--primary-red);
  font-size: var(--text-base);
}

/* Button Size Variants */
.btn-lg {
  font-size: var(--text-lg);
  padding: 16px 32px;
  min-height: 56px;
}

/* ===== RESPONSIVE DESIGN FOR PRODUCTS PAGE ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .products-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-section__header {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .product-section__header--reverse {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-section__header--reverse .product-section__text {
    order: 1;
  }
  
  .product-section__header--reverse .product-section__image {
    order: 2;
  }
  
  .product-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .products-cta__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .product-details__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .delivery-details__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .delivery-process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .product-section__image img {
    height: 400px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .products-hero__title {
    font-size: 3.5rem;
  }
  
  .product-section__title {
    font-size: 2.5rem;
  }
  
  .delivery-section__title {
    font-size: 2.5rem;
  }
  
  .products-cta__title {
    font-size: 2.5rem;
  }
}

.nav__link--active {
  color: var(--primary-red);
  background-color: rgba(181, 76, 49, 0.1);
  font-weight: 600;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary-red);
  border-radius: 1px;
}

.nav__contact {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--secondary-brown);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav__contact-item:hover {
  color: var(--primary-red);
  background-color: rgba(181, 76, 49, 0.05);
}

.nav__contact-item i {
  color: var(--primary-red);
  font-size: var(--text-base);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  transition: all 0.3s ease;
}

.nav__toggle:hover {
  background-color: rgba(181, 76, 49, 0.1);
  border-radius: var(--radius-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-charcoal);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: var(--primary-red);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background-color: var(--primary-red);
}

/* ===== RESPONSIVE BREAKPOINTS FOR NAVIGATION ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
  
  .nav__toggle {
    display: none;
  }
  
  .nav__contact {
    display: flex;
  }
  
  .nav__list {
    gap: var(--space-sm);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .nav {
    padding: var(--space-xl) 0;
  }
  
  .nav__logo {
    font-size: var(--text-2xl);
  }
  
  .nav__logo-img {
    width: 48px;
    height: 48px;
  }
  
  .nav__logo-text {
    font-size: var(--text-2xl);
  }
  
  .nav__list {
    gap: var(--space-md);
  }
  
  .nav__link {
    font-size: var(--text-lg);
    padding: var(--space-sm) var(--space-lg);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .nav__list {
    gap: var(--space-lg);
  }
}

/* ===== HERO SECTION RESPONSIVE STYLES ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero__description {
    font-size: var(--text-xl); /* Larger description on tablets */
    margin-bottom: var(--space-2xl);
  }
  
  .hero__cta {
    flex-direction: row;
    gap: var(--space-lg);
    justify-content: center;
  }
  
  .hero__scroll-link {
    width: 48px;
    height: 48px;
    font-size: var(--text-xl);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .hero__content {
    padding: var(--space-2xl) var(--container-padding);
    max-width: 1000px; /* Wider content area on desktop */
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Hero title uses clamp() for responsive sizing, no need for breakpoint overrides */
}

/* ===== WHY CHOOSE SECTION RESPONSIVE STYLES ===== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
  
  .value-card {
    padding: var(--space-xl);
  }
  
  .value-card__icon {
    width: 72px;
    height: 72px;
    font-size: 3.5rem;
  }
}

/* ===== PRODUCTS PREVIEW SECTION RESPONSIVE STYLES ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .products-preview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .product-card__img {
    height: 220px;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .products-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-card__img {
    height: 240px;
  }
  
  .product-card__actions {
    flex-direction: column;
  }
  
  .product-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== COMMUNITY IMPACT SECTION RESPONSIVE STYLES ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .community-impact__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .community-impact__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
  
  .community-impact__img {
    height: 400px;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .community-impact__content {
    gap: 4rem;
  }
  
  .impact-stat__number {
    font-size: 3.5rem;
  }
}

/* ===== CTA SECTION RESPONSIVE STYLES ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cta-section__actions {
    flex-direction: row;
    gap: var(--space-lg);
  }
  
  .cta-section__contact {
    flex-direction: row;
    gap: var(--space-2xl);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .cta-section__title {
    font-size: 2.5rem;
  }
  
  .cta-section__description {
    font-size: var(--text-xl);
  }
}

/* ===== SECTION RESPONSIVE STYLES ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .section__title {
    font-size: 2.5rem;
  }
  
  .section__description {
    font-size: var(--text-xl);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
  
  .section__title {
    font-size: 3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .section {
    padding: 6rem 0;
  }
}

/* ===== MOBILE NAVIGATION IMPROVEMENTS ===== */
.header__mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--neutral-white);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
}

.header__mobile-nav.active {
  right: 0;
}

.header__mobile-nav-content {
  padding: 5rem var(--space-xl) var(--space-xl);
}

.header__mobile-nav-list {
  list-style: none;
  margin-bottom: var(--space-2xl);
}

.header__mobile-nav-item {
  margin-bottom: var(--space-xs);
}

.header__mobile-nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--neutral-charcoal);
  text-decoration: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header__mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(181, 76, 49, 0.1), transparent);
  transition: left 0.5s ease;
}

.header__mobile-nav-link:hover::before,
.header__mobile-nav-link.active::before {
  left: 100%;
}

.header__mobile-nav-link:hover,
.header__mobile-nav-link.active {
  color: var(--primary-red);
  background-color: rgba(181, 76, 49, 0.08);
  transform: translateX(8px);
}

.header__mobile-contact {
  border-top: 2px solid var(--accent-nude);
  padding-top: var(--space-xl);
}

.header__mobile-contact-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.header__mobile-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.header__mobile-contact-item:hover {
  background-color: rgba(181, 76, 49, 0.05);
}

.header__mobile-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-red);
  flex-shrink: 0;
}

.header__mobile-contact-item a,
.header__mobile-contact-item span {
  color: var(--secondary-brown);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__mobile-contact-item:hover a,
.header__mobile-contact-item:hover span {
  color: var(--primary-red);
}

.header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.header__mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== ENHANCED HOVER EFFECTS ===== */
/* Brick card hover effects are defined in the main brick-card section above */

/* Enhanced button hover effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::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 ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary:hover:not(:disabled) {
  background: #a04329;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(181, 76, 49, 0.4);
}

.btn--secondary:hover:not(:disabled) {
  background: var(--secondary-brown);
  color: var(--neutral-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(154, 131, 105, 0.4);
}

/* ===== LOADING STATES AND ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation classes for scroll-triggered animations */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Stagger animation delays */
.animate-delay-100 {
  animation-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero__scroll-link {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn--primary {
    border: 2px solid var(--neutral-charcoal);
  }
  
  .btn--secondary {
    border-width: 3px;
  }
  
  .nav__link:focus,
  .btn:focus {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
  }
}

/* Focus visible for better keyboard navigation */
.nav__link:focus-visible,
.btn:focus-visible,
.header__mobile-nav-link:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(181, 76, 49, 0.2);
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .hero__scroll,
  .nav__toggle,
  .header__mobile-nav,
  .header__mobile-overlay {
    display: none !important;
  }
  
  body {
    padding-top: 0;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
  }
  
  .brick-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
.nav__link--active {
  color: var(--primary-red);
  background-color: rgba(181, 76, 49, 0.12);
  font-weight: 600;
}

.nav__contact {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-brown));
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(181, 76, 49, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(181, 76, 49, 0.3);
}

.nav__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--neutral-white);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav__contact-item i {
  font-size: var(--text-sm);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  background: rgba(181, 76, 49, 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__toggle:hover {
  background: rgba(181, 76, 49, 0.15);
  transform: scale(1.05);
}

.nav__toggle i {
  font-size: var(--text-lg);
  color: var(--primary-red);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__toggle.active {
  background: var(--primary-red);
}

.nav__toggle.active i {
  color: var(--neutral-white);
  transform: rotate(90deg);
}

/* Mobile Navigation */
.header__mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(20px);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
  border-left: 1px solid rgba(181, 76, 49, 0.1);
}

.header__mobile-nav.active {
  right: 0;
}

.header__mobile-nav-content {
  padding: var(--space-2xl) var(--space-xl) var(--space-lg);
}

.header__mobile-nav-list {
  list-style: none;
  margin-bottom: var(--space-2xl);
}

.header__mobile-nav-item {
  margin-bottom: var(--space-xs);
}

.header__mobile-nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--neutral-charcoal);
  text-decoration: none;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header__mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-red);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.header__mobile-nav-link:hover,
.header__mobile-nav-link.active {
  color: var(--primary-red);
  background: rgba(181, 76, 49, 0.08);
  transform: translateX(8px);
}

.header__mobile-nav-link:hover::before,
.header__mobile-nav-link.active::before {
  transform: scaleY(1);
}

.header__mobile-contact {
  background: linear-gradient(135deg, rgba(181, 76, 49, 0.05), rgba(154, 131, 105, 0.05));
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(181, 76, 49, 0.1);
}

.header__mobile-contact-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  text-align: center;
}

.header__mobile-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.header__mobile-contact-item:hover {
  background: rgba(181, 76, 49, 0.05);
  transform: translateX(4px);
}

.header__mobile-contact-item:last-child {
  margin-bottom: 0;
}

.header__mobile-contact-item a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}

.header__mobile-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-red);
  flex-shrink: 0;
}

/* Mobile Overlay */
.header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.header__mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (min-width: 576px) {
  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-section__actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .cta-section__contact {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .nav__menu {
    display: block;
  }
  
  .nav__toggle {
    display: none;
  }
  
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .community-impact__content {
    grid-template-columns: 1fr 1fr;
  }
  
  .community-impact__img {
    height: 400px;
  }
  
  .card-grid {
    gap: var(--space-lg);
  }
  
  .card-grid--tight {
    gap: var(--space-md);
  }
  
  .card-grid--loose {
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  /* Hero title uses clamp() for responsive sizing */
  
  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .products-preview__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .value-card {
    padding: var(--space-xl);
  }
  
  .value-card__icon {
    width: 72px;
    height: 72px;
    font-size: 3.5rem;
  }
  
  .product-card__image {
    height: 240px;
  }
}


/* =====
 FINAL HOMEPAGE STYLING ENHANCEMENTS ===== */

/* Typography hierarchy is defined in main hero section styles above */

/* Section titles consistent styling - removed duplicate, using main definition above */

.section__description {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--secondary-brown);
  line-height: 1.6;
}

/* Value card typography */
.value-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--neutral-charcoal);
}

.value-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--secondary-brown);
}

/* Product card typography */
.product-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--neutral-charcoal);
}

.product-card__description {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--secondary-brown);
}

/* Community impact typography */
.community-impact__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--neutral-charcoal);
}

.community-impact__description {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--secondary-brown);
}

.impact-stat__number {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-red);
}

.impact-stat__label {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--secondary-brown);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA section typography */
.cta-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--neutral-white);
}

.cta-section__description {
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Ensure proper color usage throughout */
.section--primary {
  background-color: var(--primary-red);
  color: var(--neutral-white);
}

.section--primary .section__title {
  color: var(--neutral-white);
}

.section--primary .section__description {
  color: rgba(255, 255, 255, 0.9);
}

/* Duplicate section--alt removed - using main definition above */

/* Enhanced button styling with proper colors */
.btn--primary {
  background-color: var(--primary-red);
  color: var(--neutral-white);
  font-family: var(--font-body);
  font-weight: 600;
}

.btn--primary:hover:not(:disabled) {
  background-color: #a04329; /* Darker shade of primary red */
  color: var(--neutral-white);
}

.btn--secondary {
  background-color: transparent;
  color: var(--secondary-brown);
  border: 2px solid var(--secondary-brown);
  font-family: var(--font-body);
  font-weight: 600;
}

.btn--secondary:hover:not(:disabled) {
  background-color: var(--secondary-brown);
  color: var(--neutral-white);
}

.btn--white {
  background-color: var(--neutral-white);
  color: var(--primary-red);
  font-family: var(--font-body);
  font-weight: 600;
}

.btn--outline-white {
  background-color: transparent;
  color: var(--neutral-white);
  border: 2px solid var(--neutral-white);
  font-family: var(--font-body);
  font-weight: 600;
}

.btn--outline-white:hover:not(:disabled) {
  background-color: var(--neutral-white);
  color: var(--primary-red);
}

/* Ensure proper image handling */
.hero__bg-img,
.product-card__img,
.community-impact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Final responsive adjustments */
@media (max-width: 767px) {
  /* Hero title uses clamp() for responsive sizing, no override needed */
  
  .hero__description {
    font-size: var(--text-base); /* Smaller description on mobile */
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .section__description {
    font-size: var(--text-base);
  }
  
  .value-card__title {
    font-size: var(--text-lg);
  }
  
  .product-card__title {
    font-size: var(--text-lg);
  }
  
  .community-impact__title {
    font-size: 2rem;
  }
  
  .impact-stat__number {
    font-size: 2.5rem;
  }
  
  .cta-section__title {
    font-size: 2rem;
  }
}

/* Ensure proper spacing and layout */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section {
  padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 6rem 0;
  }
}

/* Final color verification */
:root {
  /* Exact Mavuni brand colors as specified */
  --primary-red: #b54c31;
  --secondary-brown: #9a8369;
  --accent-nude: #d5b989;
  --neutral-white: #ffffff;
  --neutral-charcoal: #2c3e50;
}

/* Ensure all hover effects use the correct primary red color */
.hover-primary:hover,
.nav__link:hover,
.nav__contact-item:hover,
.header__mobile-nav-link:hover,
.header__mobile-contact-item:hover a,
.header__mobile-contact-item:hover span,
.footer__link:hover,
.footer__legal-link:hover,
.contact-card__link:hover {
  color: var(--primary-red) !important;
}

/* Ensure proper font loading and display */
@font-face {
  font-family: 'Roboto Slab';
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  font-display: swap;
}

/* Performance optimization for animations */
.brick-card,
.btn,
.nav__link,
.product-card__img {
  will-change: transform;
}

.brick-card:not(:hover),
.btn:not(:hover),
.nav__link:not(:hover),
.product-card:not(:hover) .product-card__img {
  will-change: auto;
}
/* ===
== ABOUT US PAGE SPECIFIC STYLES ===== */

/* Hero Section - About Us Variant */
.hero--about {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
}

.hero--about .hero__content {
  max-width: 900px;
}

.hero--about .hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.hero--about .hero__subtitle {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--accent-nude);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero--about .hero__description {
  font-size: var(--text-lg);
  font-style: italic;
  opacity: 0.95;
}

/* Story Section */
.story {
  padding: var(--space-2xl) 0;
}

.story__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.story__text .brick-card {
  padding: var(--space-xl);
}

.story__heading {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.story__heading:first-child {
  margin-top: 0;
}

.story__paragraph {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-lg);
}

.story__paragraph:last-child {
  margin-bottom: 0;
}

.story__image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-medium);
}

.story__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story__image:hover .story__img {
  transform: scale(1.05);
}

/* Values Section */
.values {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

/* Value Card Component */
.value-card {
  position: relative;
  padding: var(--space-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.value-card:hover {
  transform: translateY(-4px); /* 4px lift on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.value-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-brown));
  color: var(--neutral-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: var(--space-md);
  transition: all 0.3s ease;
}

.value-card:hover .value-card__icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(181, 76, 49, 0.3);
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin: 0;
  flex: 1;
}

.value-card__toggle {
  width: 32px;
  height: 32px;
  background: none;
  border: 2px solid var(--secondary-brown);
  border-radius: 50%;
  color: var(--secondary-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.value-card__toggle:hover {
  background: var(--secondary-brown);
  color: var(--neutral-white);
  transform: scale(1.1);
}

.value-card__toggle[aria-expanded="true"] {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--neutral-white);
  transform: rotate(180deg);
}

.value-card__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.value-card__content.expanded {
  max-height: 500px;
  opacity: 1;
  padding-top: var(--space-md);
}

.value-card__description {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--secondary-brown);
}

/* Team Section */
.team {
  padding: var(--space-2xl) 0;
}

.team__grid {
  display: grid;
  gap: var(--space-2xl);
}

.team__category {
  margin-bottom: var(--space-xl);
}

.team__category-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.team__category-title::after {
  content: '';
  position: absolute;
  bottom: -var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-nude));
  border-radius: 2px;
}

.team__members {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* Team Card Component */
.team-card {
  text-align: center;
  padding: var(--space-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(181, 76, 49, 0.05), transparent);
  transition: left 0.6s ease;
}

.team-card:hover::before {
  left: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px var(--shadow-dark);
}

.team-card__image {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-lg);
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-nude);
  transition: all 0.3s ease;
}

.team-card:hover .team-card__image {
  border-color: var(--primary-red);
  transform: scale(1.05);
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-card__img {
  transform: scale(1.1);
}

.team-card__content {
  position: relative;
  z-index: 1;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-xs);
}

.team-card__position {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card__bio {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--secondary-brown);
  margin-bottom: var(--space-lg);
}

.team-card__specialization {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
}

.team-card__tag {
  background: linear-gradient(135deg, var(--accent-nude), #c9a876);
  color: var(--neutral-charcoal);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.team-card:hover .team-card__tag {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-brown));
  color: var(--neutral-white);
  transform: translateY(-2px);
}

/* Kenfore Group Section */
.kenfore {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.kenfore__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.kenfore__text .brick-card {
  padding: var(--space-xl);
}

.kenfore__heading {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.kenfore__heading:first-child {
  margin-top: 0;
}

.kenfore__paragraph {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-lg);
}

.kenfore__benefits {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--accent-nude);
}

.kenfore__benefits-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--secondary-brown);
  margin-bottom: var(--space-md);
}

.kenfore__benefits-list {
  list-style: none;
}

.kenfore__benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--neutral-charcoal);
}

.kenfore__benefit i {
  color: var(--primary-red);
  font-size: var(--text-base);
  margin-top: 2px;
  flex-shrink: 0;
}

.kenfore__visual {
  display: grid;
  gap: var(--space-lg);
}

.kenfore__logo-container {
  text-align: center;
  padding: var(--space-xl);
  background: var(--neutral-white);
  border: 2px solid var(--accent-nude);
}

.kenfore__logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto var(--space-md);
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.kenfore__logo-container:hover .kenfore__logo {
  filter: grayscale(0%);
}

.kenfore__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--secondary-brown);
  font-style: italic;
}

.kenfore__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
}

.kenfore__stat {
  text-align: center;
  padding: var(--space-lg);
  background: var(--neutral-white);
  border-left: 4px solid var(--primary-red);
  transition: all 0.3s ease;
}

.kenfore__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
  border-left-color: var(--secondary-brown);
}

.kenfore__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.kenfore__stat-label {
  font-size: var(--text-xs);
  color: var(--secondary-brown);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Call to Action Section */
.cta {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
  color: var(--neutral-white);
}

.cta__content {
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: var(--space-md);
}

.cta__description {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

/* Section Background Utility */
.section--bg {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ===== RESPONSIVE BREAKPOINTS FOR ABOUT US ===== */

/* Small devices (576px and up) */
@media (min-width: 576px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team__members {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
  .story__content {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  
  .kenfore__content {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
  
  .team__members {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-card__image {
    width: 100px;
    height: 100px;
  }
}

/* Large devices (1024px and up) */
@media (min-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .story__content {
    grid-template-columns: 3fr 2fr;
  }
  
  .kenfore__content {
    grid-template-columns: 3fr 2fr;
  }
  
  .team__members {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .team-card__image {
    width: 120px;
    height: 120px;
  }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  
  .team__members {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .kenfore__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== SMOOTH TRANSITIONS AND HOVER EFFECTS ===== */

/* Enhanced hover effects for interactive elements */
.value-card,
.team-card,
.kenfore__stat,
.kenfore__logo-container {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered animation delays for grid items */
.values__grid .value-card:nth-child(1) { animation-delay: 0.1s; }
.values__grid .value-card:nth-child(2) { animation-delay: 0.2s; }
.values__grid .value-card:nth-child(3) { animation-delay: 0.3s; }
.values__grid .value-card:nth-child(4) { animation-delay: 0.4s; }

.team__members .team-card:nth-child(1) { animation-delay: 0.1s; }
.team__members .team-card:nth-child(2) { animation-delay: 0.2s; }
.team__members .team-card:nth-child(3) { animation-delay: 0.3s; }
.team__members .team-card:nth-child(4) { animation-delay: 0.4s; }
.team__members .team-card:nth-child(5) { animation-delay: 0.5s; }
.team__members .team-card:nth-child(6) { animation-delay: 0.6s; }

/* Fade-in animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story,
.values,
.team,
.kenfore,
.cta {
  animation: fadeInUp 0.8s ease-out;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .value-card,
  .team-card,
  .kenfore__stat,
  .story,
  .values,
  .team,
  .kenfore,
  .cta {
    animation: none;
    transition: none;
  }
  
  .value-card:hover,
  .team-card:hover,
  .kenfore__stat:hover {
    transform: none;
  }
}/*
 ===== FORM VALIDATION STYLES ===== */

/* Field validation states */
.field-valid {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2) !important;
}

.field-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2) !important;
}

.field-error {
  color: #dc3545;
  font-size: var(--text-xs);
  margin-top: var(--space-xs);
  display: none;
  font-weight: 500;
}

.field-error::before {
  content: "⚠ ";
  margin-right: var(--space-xs);
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-red);
  color: var(--neutral-white);
  padding: 8px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1001;
  transition: top 0.3s ease;
}

.skip-to-main:focus {
  top: 6px;
}

/* Enhanced focus styles for better accessibility */
.value-card__toggle:focus,
.team-card:focus,
.btn:focus {
  outline: 3px solid var(--primary-red);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .value-card,
  .team-card,
  .brick-card {
    border: 2px solid var(--neutral-charcoal);
  }
  
  .value-card__toggle,
  .btn {
    border: 2px solid currentColor;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .cta,
  .value-card__toggle {
    display: none !important;
  }
  
  .value-card__content {
    max-height: none !important;
    opacity: 1 !important;
    padding-top: var(--space-md) !important;
  }
  
  .hero {
    min-height: auto !important;
    padding: var(--space-lg) 0 !important;
  }
  
  .section {
    padding: var(--space-lg) 0 !important;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}

/* ===== CONTACT FORM COMPONENT ===== */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
  color: var(--neutral-white);
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}

.contact-hero__content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  opacity: 0.95;
}

/* Contact Form Section */
.contact-form-section {
  padding: var(--space-2xl) 0;
  background-color: #f8f9fa;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-container {
  margin-bottom: var(--space-xl);
}

.contact-form__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.contact-form__description {
  color: var(--secondary-brown);
  text-align: center;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

/* Form Styles */
.contact-form {
  display: grid;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.form-label::after {
  content: '';
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--neutral-charcoal);
  background-color: var(--neutral-white);
  border: 2px solid #e1e5e9;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: all 0.3s ease;
  min-height: 44px; /* Accessibility touch target */
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(181, 76, 49, 0.1);
  background-color: #fefefe;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--secondary-brown);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23b54c31' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* Form Validation States */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc3545;
  background-color: #fdf2f2;
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.success,
.form-select.success,
.form-textarea.success {
  border-color: #28a745;
  background-color: #f2f9f2;
}

.form-input.success:focus,
.form-select.success:focus,
.form-textarea.success:focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Error Messages */
.form-error {
  font-size: var(--text-sm);
  color: #dc3545;
  margin-top: var(--space-xs);
  display: none;
  align-items: center;
  gap: var(--space-xs);
}

.form-error.show {
  display: flex;
}

.form-error::before {
  content: "⚠";
  font-size: var(--text-base);
  flex-shrink: 0;
}

/* Success Messages */
.form-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.form-success::before {
  content: "✓";
  font-size: var(--text-lg);
  font-weight: bold;
  color: #28a745;
  flex-shrink: 0;
}

/* General Error Messages */
.form-general-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.form-general-error::before {
  content: "✕";
  font-size: var(--text-lg);
  font-weight: bold;
  color: #dc3545;
  flex-shrink: 0;
}

/* Button Styles for Forms */
.btn-full-width {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--neutral-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  box-shadow: 0 2px 4px rgba(181, 76, 49, 0.2);
}

.btn-primary:hover:not(:disabled) {
  background: #a04329;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 76, 49, 0.3);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(181, 76, 49, 0.2);
}

.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

/* Loading State */
.btn-loading {
  display: none;
}

.btn-primary.loading .btn-text {
  display: none;
}

.btn-primary.loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-primary.loading .btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form Grid Layout */
@media (min-width: 768px) {
  .contact-form {
    gap: var(--space-lg) var(--space-xl);
  }
  
  .form-group--full-width {
    grid-column: 1 / -1;
  }
  
  /* Make certain fields span full width */
  .form-group:nth-child(5), /* Inquiry Type */
  .form-group:nth-child(6), /* Message */
  .form-group:nth-child(7), /* Submit Button */
  .form-group:nth-child(8), /* Success Message */
  .form-group:nth-child(9)  /* Error Message */ {
    grid-column: 1 / -1;
  }
}

/* Accessibility Improvements */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .form-input,
  .form-select,
  .form-textarea {
    border-width: 3px;
  }
  
  .form-error {
    font-weight: 600;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .form-input,
  .form-select,
  .form-textarea,
  .btn-primary {
    transition: none;
  }
  
  .btn-loading::after {
    animation: none;
  }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .contact-hero__title {
    font-size: var(--text-3xl);
  }
  
  .contact-form__title {
    font-size: var(--text-xl);
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
/* =
==== CONTACT PAGE COMPONENTS ===== */

/* Contact Information Cards */
.contact-info-section {
  padding: var(--space-xl) 0;
  background-color: var(--neutral-white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.contact-info-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(181, 76, 49, 0.15);
}

.contact-info-card__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
}

.contact-info-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.contact-info-card__content {
  color: var(--neutral-charcoal);
}

.contact-info-card__link {
  display: inline-block;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary-red);
  text-decoration: none;
  margin-bottom: var(--space-sm);
  transition: color 0.3s ease;
}

.contact-info-card__link:hover {
  color: var(--secondary-brown);
}

.contact-info-card__text {
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.contact-info-card__hours {
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  line-height: 1.5;
}

/* Google Maps Section */
.contact-map-section {
  padding: var(--space-xl) 0;
  background-color: #f8f9fa;
}

.contact-map-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.contact-map-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.contact-map-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.contact-map-description {
  font-size: var(--text-lg);
  color: var(--neutral-charcoal);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-map-container {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

.contact-map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-map-info__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.contact-map-info__item {
  margin-bottom: var(--space-md);
}

.contact-map-info__item strong {
  color: var(--secondary-brown);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-xs);
}

.contact-map-info__item p {
  color: var(--neutral-charcoal);
  line-height: 1.6;
  font-size: var(--text-sm);
}

/* Social Media Section */
.contact-social-section {
  padding: var(--space-xl) 0;
  background-color: var(--neutral-white);
}

.contact-social-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.contact-social-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.contact-social-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.contact-social-description {
  font-size: var(--text-lg);
  color: var(--neutral-charcoal);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-social-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(181, 76, 49, 0.15);
}

.contact-social-card__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: block;
}

.contact-social-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--primary-red);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.contact-social-card__description {
  color: var(--neutral-charcoal);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
}

/* Social Media CTA */
.contact-social-cta {
  margin-top: var(--space-xl);
}

.contact-social-cta-card {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
  color: var(--neutral-white);
}

.contact-social-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.contact-social-cta__text {
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

.contact-social-cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.contact-social-cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-social-cta__link:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-map-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .contact-map-embed iframe {
    height: 300px;
  }
  
  .contact-social-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-social-cta__buttons {
    gap: var(--space-sm);
  }
  
  .contact-social-cta__link {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-map-title,
  .contact-social-title {
    font-size: var(--text-2xl);
  }
  
  .contact-map-description,
  .contact-social-description {
    font-size: var(--text-base);
  }
  
  .contact-info-card__icon,
  .contact-social-card__icon {
    font-size: 2.5rem;
  }
}
/* ====
= PRODUCTS PAGE STYLES ===== */

/* Products Hero Section */
.products-hero {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
  color: var(--neutral-white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.products-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.products-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.products-hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
}

.products-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.products-hero__stat {
  text-align: center;
}

.products-hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--accent-nude);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.products-hero__stat-label {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Products Overview Section */
.products-overview {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--secondary-brown);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.section-padding {
  padding: var(--space-2xl) 0;
}

.bg-light {
  background-color: #f8f9fa;
}

/* Product Section */
.product-section__content {
  max-width: 1200px;
  margin: 0 auto;
}

.product-section__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.product-section__header--reverse {
  grid-template-columns: 1fr;
}

.product-section__text {
  order: 2;
}

.product-section__image {
  order: 1;
}

.product-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.product-section__description {
  font-size: var(--text-lg);
  color: var(--secondary-brown);
  line-height: 1.6;
}

.product-section__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Product Details */
.product-details {
  margin-top: var(--space-2xl);
}

.product-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.product-details__card {
  padding: var(--space-lg);
}

.product-details__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-details__card-title i {
  color: var(--primary-red);
  font-size: var(--text-lg);
}

.product-details__list {
  list-style: none;
}

.product-details__list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  color: var(--secondary-brown);
  line-height: 1.5;
}

.product-details__list li::before {
  content: "•";
  color: var(--primary-red);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.product-details__list li strong {
  color: var(--neutral-charcoal);
  font-weight: 600;
}

/* Product CTA */
.product-cta {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(181, 76, 49, 0.05) 0%, rgba(154, 131, 105, 0.05) 100%);
  border-radius: var(--radius-md);
}

/* Delivery Section */
.delivery-section {
  background: var(--primary-red);
  color: var(--neutral-white);
}

.delivery-section__content {
  max-width: 1200px;
  margin: 0 auto;
}

.delivery-section__header {
  margin-bottom: var(--space-2xl);
}

.delivery-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.delivery-section__subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.delivery-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.delivery-details__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.delivery-details__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  color: var(--accent-nude);
  font-size: 3rem;
  text-align: center;
}

.delivery-details__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
}

.delivery-details__description {
  text-align: center;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.delivery-details__list {
  list-style: none;
}

.delivery-details__list li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  line-height: 1.5;
  opacity: 0.9;
}

.delivery-details__list li::before {
  content: "✓";
  color: var(--accent-nude);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Delivery Process */
.delivery-process {
  margin-top: var(--space-2xl);
}

.delivery-process__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

.delivery-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.delivery-process__step {
  text-align: center;
  position: relative;
}

.delivery-process__step-number {
  width: 48px;
  height: 48px;
  background: var(--accent-nude);
  color: var(--neutral-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 auto var(--space-md);
}

.delivery-process__step-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.delivery-process__step-description {
  line-height: 1.5;
  opacity: 0.9;
}

/* Delivery CTA */
.delivery-cta {
  margin-top: var(--space-2xl);
}

/* Products CTA Section */
.products-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.products-cta__content {
  max-width: 800px;
  margin: 0 auto;
}

.products-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.products-cta__description {
  font-size: var(--text-lg);
  color: var(--secondary-brown);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.products-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.products-cta__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 600px;
  margin: 0 auto;
}

.products-cta__feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  font-weight: 500;
}

.products-cta__feature i {
  color: var(--primary-red);
  font-size: var(--text-base);
}

/* Button Variants */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  line-height: 1;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--neutral-white);
  box-shadow: 0 2px 4px rgba(181, 76, 49, 0.2);
}

.btn-primary:hover:not(:disabled) {
  background: #a04329;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 76, 49, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--neutral-white);
  border: 2px solid var(--neutral-white);
  padding: 10px 22px;
}

.btn-secondary:hover:not(:disabled) {
  background: var(--neutral-white);
  color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-lg {
  font-size: var(--text-lg);
  padding: 16px 32px;
  min-height: 52px;
}

/* ===== RESPONSIVE BREAKPOINTS FOR PRODUCTS PAGE ===== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .products-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .product-section__header {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  
  .product-section__header--reverse {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-section__header--reverse .product-section__text {
    order: 1;
  }
  
  .product-section__header--reverse .product-section__image {
    order: 2;
  }
  
  .product-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .products-cta__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .product-details__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .delivery-details__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .delivery-process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .delivery-process__step::after {
    content: "→";
    position: absolute;
    top: 24px;
    right: -20px;
    color: var(--accent-nude);
    font-size: var(--text-2xl);
    font-weight: bold;
  }
  
  .delivery-process__step:last-child::after {
    display: none;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .products-hero__title {
    font-size: 3.5rem;
  }
  
  .product-section__title {
    font-size: 2.5rem;
  }
  
  .delivery-section__title {
    font-size: 2.5rem;
  }
  
  .products-cta__title {
    font-size: 2.5rem;
  }
}

/* ===== NAVIGATION ACTIVE STATE FOR PRODUCTS PAGE ===== */
.nav__link--active {
  color: var(--primary-red) !important;
  font-weight: 600;
  background-color: rgba(181, 76, 49, 0.1);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary-red);
  border-radius: 1px;
}

/* Mobile navigation active state */
.header__mobile-nav-link--active {
  color: var(--primary-red) !important;
  padding-left: var(--space-sm) !important;
  font-weight: 600;
}
/* ===== 
MOBILE-RESPONSIVE PRODUCT SPECIFICATION TABLES ===== */

/* Ensure product specification lists are mobile-friendly */
.product-details__list {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-details__list li {
  min-height: 44px; /* Accessibility touch target */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.product-details__list li strong {
  flex-shrink: 0;
  min-width: 120px;
}

/* Mobile-specific adjustments for product cards */
@media (max-width: 767px) {
  .product-details__card {
    padding: var(--space-md);
  }
  
  .product-details__card-title {
    font-size: var(--text-lg);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  
  .product-details__card-title i {
    align-self: flex-start;
  }
  
  .product-details__list li {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-sm) 0;
  }
  
  .product-details__list li strong {
    min-width: auto;
    width: 100%;
    margin-bottom: var(--space-xs);
  }
  
  /* Improve mobile readability for delivery section */
  .delivery-details__card {
    padding: var(--space-lg) var(--space-md);
  }
  
  .delivery-process__step {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  
  .delivery-process__step-number {
    align-self: center;
  }
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .product-details__list li {
    padding: var(--space-sm) 0;
  }
  
  .product-details__list li strong {
    min-width: 140px;
  }
}

/* Enhanced hover states for better UX */
.product-details__card:hover {
  border-color: rgba(181, 76, 49, 0.2);
}

.product-details__card:hover .product-details__card-title i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Improved focus states for accessibility */
.product-cta .btn:focus,
.delivery-cta .btn:focus,
.products-cta__buttons .btn:focus {
  outline: 3px solid var(--accent-nude);
  outline-offset: 2px;
}

/* Print styles for product specifications */
@media print {
  .products-hero,
  .delivery-section,
  .products-cta,
  .product-cta,
  .delivery-cta {
    display: none;
  }
  
  .product-section {
    page-break-inside: avoid;
    margin-bottom: var(--space-xl);
  }
  
  .product-details__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .product-details__card {
    border: 1px solid #ccc;
    box-shadow: none;
    margin-bottom: var(--space-md);
  }
}/* =
==== IMPACT PAGE COMPONENTS ===== */

/* Hero Section - Impact Page */
.hero-impact {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neutral-white);
  overflow: hidden;
}

.hero-impact .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-impact .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-impact .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(181, 76, 49, 0.8) 0%, rgba(154, 131, 105, 0.7) 100%);
  z-index: -1;
}

.hero-impact .hero-content {
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
  z-index: 1;
}

.hero-impact .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-impact .hero-subtitle {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--accent-nude);
}

.hero-impact .hero-description {
  font-size: var(--text-lg);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Impact Metrics Section */
.impact-metrics {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.metric-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--neutral-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(181, 76, 49, 0.15);
}

.metric-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-white);
  font-size: 2rem;
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.metric-label {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-sm);
}

.metric-description {
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  line-height: 1.5;
}

/* Training Programs Section */
.training-programs {
  padding: var(--space-xl) 0;
  background: var(--neutral-white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.program-card {
  background: var(--neutral-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(181, 76, 49, 0.15);
}

.program-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-content {
  padding: var(--space-lg);
}

.program-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-sm);
}

.program-description {
  font-size: var(--text-base);
  color: var(--secondary-brown);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.program-stats {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary-red);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  font-weight: 500;
}

/* Success Stories Section */
.success-stories {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.story-card {
  background: var(--neutral-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(181, 76, 49, 0.15);
}

.story-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-content {
  padding: var(--space-lg);
}

.story-name {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-xs);
}

.story-role {
  font-size: var(--text-base);
  color: var(--primary-red);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.story-description {
  font-size: var(--text-base);
  color: var(--secondary-brown);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.story-achievement {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background: linear-gradient(135deg, rgba(181, 76, 49, 0.1) 0%, rgba(154, 131, 105, 0.1) 100%);
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary-red);
}

.story-achievement i {
  font-size: var(--text-base);
}

/* Community Gallery Section */
.community-gallery {
  padding: var(--space-xl) 0;
  background: var(--neutral-white);
}

.gallery-grid {
  position: relative;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(181, 76, 49, 0.15);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(181, 76, 49, 0.8) 0%, rgba(154, 131, 105, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neutral-white);
  padding: var(--space-md);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.gallery-content p {
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  border: 2px solid var(--secondary-brown);
  border-radius: 25px;
  color: var(--secondary-brown);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--text-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--neutral-white);
  transform: translateY(-2px);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  color: var(--neutral-white);
  padding: var(--space-md);
  max-width: 600px;
  margin: 0 auto;
}

.lightbox-caption h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.lightbox-caption p {
  font-size: var(--text-base);
  opacity: 0.9;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--neutral-white);
  font-size: 2rem;
  cursor: pointer;
  padding: var(--space-sm);
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--primary-red);
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--neutral-white);
  font-size: 1.5rem;
  padding: var(--space-md);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.lightbox-btn:hover {
  background: var(--primary-red);
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: var(--space-lg) auto 0;
}

.testimonial-slide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-card {
  background: var(--neutral-white);
  border-radius: 12px;
  padding: var(--space-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.testimonial-quote {
  margin-bottom: var(--space-lg);
}

.testimonial-quote i {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: var(--space-md);
}

.testimonial-quote p {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--secondary-brown);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-red);
}

.author-info {
  text-align: left;
}

.author-info h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-xs);
}

.author-info p {
  font-size: var(--text-base);
  color: var(--primary-red);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.author-rating {
  display: flex;
  gap: 2px;
}

.author-rating i {
  color: #ffc107;
  font-size: var(--text-sm);
}

.author-company {
  font-size: var(--text-sm);
  color: var(--secondary-brown);
  font-style: italic;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.carousel-btn {
  background: var(--neutral-white);
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary-red);
  color: var(--neutral-white);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: var(--space-xs);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(181, 76, 49, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-red);
  transform: scale(1.2);
}

/* Responsive Design for Impact Page */
@media (max-width: 768px) {
  .hero-impact {
    min-height: 50vh;
  }
  
  .hero-impact .hero-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .gallery-grid {
    columns: 1;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-info {
    text-align: center;
  }
  
  .carousel-controls {
    gap: var(--space-sm);
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .lightbox-close {
    top: -40px;
    font-size: 1.5rem;
  }
  
  .lightbox-btn {
    font-size: 1.2rem;
    padding: var(--space-sm);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid {
    columns: 2;
    column-gap: var(--space-md);
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .gallery-grid {
    columns: 3;
    column-gap: var(--space-lg);
  }
  
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}/* 
===== GALLERY PAGE COMPONENTS ===== */

/* Gallery Hero Section */
.gallery-hero {
  padding: calc(var(--header-height, 80px) + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
  color: var(--neutral-white);
  text-align: center;
}

.gallery-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.gallery-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.gallery-hero__subtitle {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--accent-nude);
}

.gallery-hero__description {
  font-size: var(--text-lg);
  line-height: 1.6;
  opacity: 0.95;
}

/* Gallery Filters Section */
.gallery-filters-section {
  padding: var(--space-lg) 0;
  background: var(--neutral-white);
  border-bottom: 1px solid rgba(181, 76, 49, 0.1);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  border: 2px solid var(--secondary-brown);
  border-radius: 30px;
  color: var(--secondary-brown);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--text-base);
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--neutral-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(181, 76, 49, 0.3);
}

/* Main Gallery Section */
.main-gallery {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.gallery-item {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: var(--neutral-white);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(181, 76, 49, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(181, 76, 49, 0.9) 0%, rgba(154, 131, 105, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neutral-white);
  padding: var(--space-md);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content h4 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.gallery-content p {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.gallery-category {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Gallery CTA Section */
.gallery-cta {
  padding: var(--space-xl) 0;
  background: var(--neutral-white);
}

.gallery-cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-cta__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.gallery-cta__description {
  font-size: var(--text-lg);
  color: var(--secondary-brown);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.gallery-cta__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Enhanced Lightbox for Gallery */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--neutral-white);
  padding: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.lightbox-caption h4 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.lightbox-caption p {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.lightbox-caption .gallery-category {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--primary-red);
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: var(--neutral-white);
  font-size: 2rem;
  cursor: pointer;
  padding: var(--space-sm);
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--primary-red);
  transform: scale(1.1);
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 120px);
  left: -60px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--neutral-white);
  font-size: 1.5rem;
  padding: var(--space-md);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover {
  background: var(--primary-red);
  transform: scale(1.1);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
  .gallery-hero {
    padding: calc(var(--header-height, 80px) + var(--space-lg)) 0 var(--space-lg);
  }
  
  .gallery-filters {
    gap: var(--space-xs);
  }
  
  .filter-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .gallery-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-cta__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .lightbox-close {
    top: -50px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-controls {
    width: calc(100% + 80px);
    left: -40px;
  }
  
  .lightbox-btn {
    font-size: 1.2rem;
    padding: var(--space-sm);
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .gallery-grid {
    /* grid-template-columns: repeat(3, 1fr); */
  }
}

@media (min-width: 1400px) {
  .gallery-grid {
    /* grid-template-columns: repeat(4, 1fr); */
  }
}/* 
===== GALLERY PAGE STYLES ===== */

/* Gallery Hero Section */
.gallery-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-brown) 100%);
    color: var(--neutral-white);
    text-align: center;
    padding: var(--space-2xl) 0;
}

.gallery-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.gallery-hero__subtitle {
    font-size: var(--text-xl);
    color: var(--accent-nude);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.gallery-hero__description {
    font-size: var(--text-lg);
    line-height: 1.6;
    opacity: 0.9;
}

/* Gallery Filters */
.gallery-filters {
    background-color: #f8f9fa;
}

.gallery-filters__wrapper {
    text-align: center;
}

.gallery-filters__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--neutral-charcoal);
    margin-bottom: var(--space-lg);
}

.gallery-filters__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.filter-btn {
    background: var(--neutral-white);
    color: var(--secondary-brown);
    border: 2px solid var(--secondary-brown);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    color: var(--neutral-white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(181, 76, 49, 0.3);
}

/* Gallery Masonry Grid */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--neutral-white);
    box-shadow: 0 4px 6px var(--shadow-light);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: var(--neutral-white);
    flex: 1;
}

.gallery-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.gallery-content p {
    font-size: var(--text-sm);
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 0;
}

.gallery-btn {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: rgba(181, 76, 49, 0.9);
    color: var(--neutral-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item:hover .gallery-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

/* Gallery Stats */
.gallery-stats__content {
    text-align: center;
}

.gallery-stats__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--neutral-charcoal);
    margin-bottom: var(--space-2xl);
}

.gallery-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl);
}

.stat-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--primary-red);
    color: var(--neutral-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: var(--space-xs);
}

.stat-card__label {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-charcoal);
    margin-bottom: var(--space-sm);
}

.stat-card__description {
    color: var(--secondary-brown);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--neutral-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox__content {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--neutral-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox__close:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.lightbox__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

.lightbox__info {
    padding: var(--space-lg);
}

.lightbox__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--neutral-charcoal);
    margin-bottom: var(--space-sm);
}

.lightbox__description {
    color: var(--secondary-brown);
    line-height: 1.6;
    margin-bottom: 0;
}

.lightbox__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-md);
    pointer-events: none;
}

.lightbox__nav {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--neutral-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: var(--text-lg);
}

.lightbox__nav:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .gallery-filters__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        min-width: 200px;
    }
    
    .gallery-stats__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .lightbox__content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox__navigation {
        padding: 0 var(--space-sm);
    }
    
    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animation for filtered items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 
===== CUSTOM HOMEPAGE ENHANCEMENTS ===== */

/* Hero CTA Center Button */
.hero__cta-center {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

/* Why Choose Grid - Two Columns for Laptop */
@media (min-width: 1024px) {
  .why-choose__grid--two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    max-width: 1200px; /* Increased width */
    margin: 0 auto;
  }
}

/* Fix card visibility - add background and border */
.why-choose .brick-card {
  background: var(--neutral-white);
  border: 2px solid var(--mavuni-accent-nude);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.why-choose .brick-card:hover {
  border-color: var(--mavuni-primary-red);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

/* Ensure Why Choose section has proper background */
.why-choose {
  background: var(--neutral-light-gray) !important;
  padding: var(--space-3xl) 0;
}

/* Community Impact section background */
.community-impact {
  background: var(--neutral-white);
  padding: var(--space-3xl) 0;
}

/* Products section already has section--alt class for background */

/* Community Impact Actions - Side by Side Buttons */
.community-impact__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 576px) {
  .community-impact__actions {
    flex-direction: row;
    gap: var(--space-lg);
  }
}

/* Community Impact Images - Multiple Images Layout */
.community-impact__images {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .community-impact__images {
    grid-template-columns: 1fr 1fr;
  }
}

/* Light Button Style for CTA */
.btn--light {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--mavuni-primary-red);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn--light:hover {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--light:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
/* ===== LOGO AND NAVIGATION FIXES ===== */

/* Ensure logo is properly sized and visible - Override all other sizes */
.nav__logo-img {
  width: auto !important;
  height: 50px !important;
  max-height: 50px !important;
  display: block !important;
  object-fit: contain !important;
}

.footer__logo {
  width: auto !important;
  height: 60px !important;
  max-height: 60px !important;
  display: block !important;
  margin-bottom: var(--space-sm) !important;
  object-fit: contain !important;
}

/* Fix any overlay issues with images */
.product-card__image,
.community-impact__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.product-card__img,
.community-impact__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__img,
.community-impact__image:hover .community-impact__img {
  transform: scale(1.05);
}

/* Ensure badges don't interfere with images */
.product-card__badge,
.community-impact__badge {
  position: absolute;
  z-index: 2;
  background: rgba(181, 76, 49, 0.9);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
}

.product-card__badge {
  top: var(--space-sm);
  right: var(--space-sm);
}

.community-impact__badge {
  bottom: var(--space-sm);
  left: var(--space-sm);
}/* 
===== ENHANCED VALUE CARD STYLING ===== */

/* Override any conflicting styles for value cards */
.why-choose .value-card.brick-card {
  background: var(--neutral-white) !important;
  border: 3px solid var(--mavuni-accent-nude) !important;
  box-shadow: 0 4px 12px rgba(181, 76, 49, 0.1) !important;
  transition: all 0.3s ease !important;
  padding: var(--space-xl) !important;
  margin-bottom: var(--space-lg);
}

.why-choose .value-card.brick-card:hover {
  border-color: var(--mavuni-primary-red) !important;
  box-shadow: 0 8px 24px rgba(181, 76, 49, 0.2) !important;
  transform: translateY(-8px) !important;
}

/* Ensure value card icons are visible */
.value-card__icon {
  background: var(--mavuni-primary-red);
  color: var(--neutral-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
}

.value-card__icon i {
  font-size: 1.5rem;
}

/* Value card titles */
.value-card__title {
  color: var(--mavuni-primary-red) !important;
  font-weight: var(--font-weight-bold) !important;
  margin-bottom: var(--space-md) !important;
}

/* Value card descriptions */
.value-card__description {
  color: var(--neutral-dark-gray) !important;
  line-height: var(--leading-relaxed) !important;
  margin-bottom: var(--space-md) !important;
}

/* Value card features list */
.value-card__features {
  text-align: left !important;
  padding-left: 0 !important;
}

.value-card__features li {
  color: var(--neutral-dark-gray) !important;
  margin-bottom: var(--space-xs) !important;
}

.value-card__features li::before {
  color: var(--mavuni-primary-red) !important;
  font-weight: bold !important;
  margin-right: var(--space-xs) !important;
}/* ===
== LOGO ONLY DISPLAY (NO TEXT) ===== */

/* Hide any logo text elements */
.nav__logo-text,
.footer__brand-name,
.footer__brand-tagline {
  display: none !important;
}

/* Ensure logo images are prominent */
.nav__logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer__brand {
  text-align: center !important;
}

/* Make sure hero background image is visible */
.hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.hero__bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
}

/* Ensure all product and community images display properly */
.product-card__img,
.community-impact__img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: var(--radius-md) !important;
}/*
 ===== HERO BUTTON ALIGNMENT FIXES ===== */

/* Fix hero button spacing - reduce gap */
.hero__cta {
  display: flex !important;
  flex-direction: row !important;
  gap: var(--space-md) !important; /* Reduced from 2xl to md */
  justify-content: center !important;
  align-items: center !important;
  margin-top: var(--space-xl) !important;
}

/* Remove the center class effect that was causing issues */
.hero__cta-center {
  margin: 0 !important;
  display: inline-flex !important;
  width: auto !important;
}

@media (max-width: 768px) {
  .hero__cta {
    flex-direction: column !important;
    gap: var(--space-md) !important;
  }
}/* ===== 
WHY CHOOSE CARDS TEXT ALIGNMENT ===== */

/* Proper text alignment for value cards */
.why-choose .value-card {
  text-align: center !important;
}

.why-choose .value-card__title {
  text-align: center !important;
  margin-bottom: var(--space-md) !important;
}

.why-choose .value-card__description {
  text-align: center !important;
  margin-bottom: var(--space-lg) !important;
}

/* Features list should be left-aligned but centered as a block */
.why-choose .value-card__features {
  text-align: left !important;
  display: inline-block !important;
  margin: 0 auto !important;
  max-width: fit-content !important;
}/* ===
== PRODUCT CARD BUTTON FIXES ===== */

/* Fix white on white button issue */
.product-card__actions .btn--secondary {
  background-color: var(--mavuni-secondary-brown) !important;
  color: var(--neutral-white) !important;
  border: 2px solid var(--mavuni-secondary-brown) !important;
}

.product-card__actions .btn--secondary:hover {
  background-color: var(--mavuni-primary-red) !important;
  border-color: var(--mavuni-primary-red) !important;
  color: var(--neutral-white) !important;
}

.product-card__actions .btn--primary {
  background-color: var(--mavuni-primary-red) !important;
  color: var(--neutral-white) !important;
  border: 2px solid var(--mavuni-primary-red) !important;
}

.product-card__actions .btn--primary:hover {
  background-color: var(--mavuni-secondary-brown) !important;
  border-color: var(--mavuni-secondary-brown) !important;
}/* ===== UBUNTU BUTTON FIX ===== */

/* Fix Ubuntu in Action button visibility */
.community-impact__actions .btn--secondary {
  background-color: var(--mavuni-secondary-brown) !important;
  color: var(--neutral-white) !important;
  border: 2px solid var(--mavuni-secondary-brown) !important;
}

.community-impact__actions .btn--secondary:hover {
  background-color: var(--mavuni-primary-red) !important;
  border-color: var(--mavuni-primary-red) !important;
  color: var(--neutral-white) !important;
}/*
 ===== ABOUT PREVIEW SECTION ===== */

.about-preview {
  background: var(--neutral-white);
  padding: var(--space-3xl) 0;
}

.about-preview__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-preview__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.about-preview__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-lg);
}

.about-preview__description {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.about-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.about-stat {
  text-align: center;
}

.about-stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-xs);
}

.about-stat__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--neutral-medium-gray);
  font-weight: var(--font-weight-medium);
}

.about-preview__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-preview__logo {
  width: 100%;
  text-align: center;
  padding: var(--space-lg);
  background: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-preview__logo-img {
  width: 100%;
  /* max-width: 200px; */
  height: auto;
}

.about-preview__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-md);
}

.about-preview__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-preview__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-preview__image:hover .about-preview__img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-preview__images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .about-preview__img {
    height: 200px;
  }
}/* =
==== REMOVE BOTTOM WHITE SPACE ===== */

/* Remove any margin/padding between CTA section and footer */
.cta-section {
  margin-bottom: 0 !important;
  padding-bottom: var(--space-3xl) !important;
}

.footer {
  margin-top: 0 !important;
  padding-top: var(--space-3xl) !important;
}

/* Ensure no gap between sections */
.main {
  margin-bottom: 0 !important;
}

body {
  margin-bottom: 0 !important;
}/* ===
== IMAGE OPTIMIZATION AND ENHANCEMENTS ===== */

/* Apply border-radius to all product and feature images */
.product-card__img,
.community-impact__img,
.about-preview__img,
.gallery-item img,
.story__img,
.team-card__img {
  border-radius: var(--radius-md) !important;
  object-fit: cover !important;
}

/* Hover zoom effects on product images */
.product-card:hover .product-card__img,
.gallery-item:hover img,
.about-preview__image:hover .about-preview__img {
  transform: scale(1.05) !important;
  transition: transform 0.3s ease !important;
}

/* Consistent aspect ratios for all images */
.product-card__img,
.community-impact__img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important;
}

.about-preview__img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
}

/* Gallery images */
.gallery-item img {
  width: 100% !important;
  height: auto !important;
  min-height: 200px !important;
  object-fit: cover !important;
}

/* Team images */
.team-card__img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
}

/* Hero background image optimization */
.hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}/* ===== 
SMOOTH ANIMATIONS AND TRANSITIONS ===== */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth !important;
}

/* Consistent transition timing for all interactive elements */
a, button, .btn, .nav__link, .footer__link, .brick-card, .value-card, .product-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Enhanced hover transitions for links and buttons */
.nav__link:hover,
.footer__link:hover,
.btn:hover {
  transform: translateY(-2px) !important;
}

/* Card hover transitions */
.brick-card:hover,
.value-card:hover,
.product-card:hover {
  transform: translateY(-4px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in to main sections */
.section {
  animation: fadeInUp 0.6s ease-out !important;
}

/* Prefers-reduced-motion support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .section {
    animation: none !important;
  }
}

/* Smooth hero scroll indicator bounce */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hero__scroll-link {
  animation: bounce 2s infinite !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-link {
    animation: none !important;
  }
}/* ===== RESPONSIVE DESIGN VERIFICATION AND ENHANCEMENTS ===== */

/* Ensure minimum touch targets (44px) on mobile */
@media (max-width: 767px) {
  .btn,
  .nav__link,
  .nav__toggle {
    min-height: 44px !important;
    min-width: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Single column layouts on mobile */
  .why-choose__grid,
  .products-preview__grid,
  .community-impact__content,
  .about-preview__content {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
  }
  
  /* Mobile font sizes for readability */
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  
  .section__title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  
  /* Mobile padding adjustments */
  .section {
    padding: var(--space-2xl) 0 !important;
  }
  
  .container {
    padding: 0 var(--space-md) !important;
  }
}

/* Tablet responsiveness (768px-1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  /* 2-column grids on tablet */
  .why-choose__grid:not(.why-choose__grid--two-columns) {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .products-preview__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Tablet-specific spacing */
  .section {
    padding: var(--space-3xl) 0 !important;
  }
}

/* Desktop responsiveness (1024px+) */
@media (min-width: 1024px) {
  /* Multi-column grids on desktop */
  .why-choose__grid:not(.why-choose__grid--two-columns) {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  
  .products-preview__grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  /* Desktop spacing */
  .section {
    padding: var(--space-4xl) 0 !important;
  }
  
  /* Enhanced hover effects on desktop */
  .brick-card:hover,
  .value-card:hover,
  .product-card:hover {
    transform: translateY(-6px) !important;
  }
}

/* Large desktop (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
  }
  
  .section {
    padding: var(--space-4xl) 0 !important;
  }
}

/* Consistent breakpoints verification */
/* Mobile: 320px-767px */
/* Tablet: 768px-1023px */  
/* Desktop: 1024px+ */
/* Large Desktop: 1200px+ */
/* ===== ACCESSIBILITY COMPLIANCE (WCAG 2.1 AA) ===== */

/* Focus indicators for keyboard navigation */
a:focus,
button:focus,
.btn:focus,
.nav__link:focus,
.nav__toggle:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--mavuni-primary-red) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 4px rgba(181, 76, 49, 0.2) !important;
}

/* High contrast focus for better visibility */
.nav__toggle:focus {
  background-color: var(--mavuni-primary-red) !important;
  color: var(--neutral-white) !important;
}

/* Ensure sufficient color contrast ratios */
/* Primary red (#b54c31) on white: 4.52:1 ✓ */
/* White on primary red: 4.52:1 ✓ */
/* Dark gray (#495057) on white: 9.35:1 ✓ */
/* White on dark charcoal (#2c3e50): 12.63:1 ✓ */

/* Skip to main content link for screen reade/
* ===== ACCESSIBILITY COMPLIANCE (WCAG 2.1 AA) ===== */

/* Focus indicators for keyboard navigation */
a:focus,
button:focus,
.btn:focus,
.nav__link:focus,
.nav__toggle:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--mavuni-primary-red) !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 4px rgba(181, 76, 49, 0.2) !important;
}

/* High contrast focus for better visibility */
.nav__toggle:focus {
  background-color: var(--mavuni-primary-red) !important;
  color: var(--neutral-white) !important;
}

/* Ensure sufficient color contrast ratios */
/* Primary red (#b54c31) on white: 4.52:1 ✓ */
/* White on primary red: 4.52:1 ✓ */
/* Dark gray (#495057) on white: 9.35:1 ✓ */
/* White on dark charcoal (#2c3e50): 12.63:1 ✓ */

/* Skip to main content link for screen readers */
.skip-to-main {
  position: absolute !important;
  top: -40px !important;
  left: 6px !important;
  background: var(--mavuni-primary-red) !important;
  color: var(--neutral-white) !important;
  padding: 8px !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  z-index: 1000 !important;
  font-weight: 600 !important;
}

.skip-to-main:focus {
  top: 6px !important;
}

/* Ensure interactive elements have proper sizing */
.btn,
.nav__link{
  min-height: 44px !important;
  min-width: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: var(--space-sm) var(--space-md) !important;
}

/* Screen reader only text */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Ensure proper heading hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  line-height: var(--leading-tight) !important;
  margin-bottom: var(--space-md) !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn,
  .brick-card,
  .value-card,
  .product-card {
    border: 2px solid currentColor !important;
  }
  
  .hero__overlay {
    background: rgba(0, 0, 0, 0.8) !important;
  }
}/* 
===== ABOUT PAGE REDESIGN ===== */

/* About Hero */
.about-hero {
  padding: var(--space-3xl) 0;
  background: var(--neutral-light-gray);
}

.about-hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-hero__content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-hero__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-md);
}

.about-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--mavuni-secondary-brown);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
}

.about-hero__description {
  font-size: var(--text-lg);
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
}

.about-hero__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-hero__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Quick Facts */
.quick-facts {
  background: var(--neutral-white);
  padding: var(--space-2xl) 0;
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .quick-facts__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fact-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--neutral-white);
  border: 2px solid var(--mavuni-accent-nude);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.fact-card:hover {
  border-color: var(--mavuni-primary-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fact-card__number {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-xs);
}

.fact-card__label {
  font-size: var(--text-sm);
  color: var(--neutral-medium-gray);
  font-weight: var(--font-weight-medium);
}

/* Our Story */
.our-story {
  padding: var(--space-3xl) 0;
}

.our-story__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 768px) {
  .our-story__content {
    grid-template-columns: 1fr 1fr;
  }
}

.our-story__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.our-story__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.our-story__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-lg);
}

.our-story__item {
  margin-bottom: var(--space-lg);
}

.our-story__item h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--mavuni-secondary-brown);
  margin-bottom: var(--space-sm);
}

.our-story__item p {
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
}

/* What We Do */
.what-we-do {
  padding: var(--space-3xl) 0;
  background: var(--neutral-white);
}

.what-we-do__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .what-we-do__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.what-we-do__item {
  text-align: center;
}

.what-we-do__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.what-we-do__item:hover .what-we-do__img {
  transform: scale(1.05);
}

.what-we-do__item h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-sm);
}

.what-we-do__item p {
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
}

/* Our Values */
.our-values {
  padding: var(--space-3xl) 0;
}

.our-values__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .our-values__content {
    grid-template-columns: 1fr 1fr;
  }
}

.our-values__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-lg);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.value-item__icon {
  width: 48px;
  height: 48px;
  background: var(--mavuni-primary-red);
  color: var(--neutral-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item__content h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--mavuni-secondary-brown);
  margin-bottom: var(--space-xs);
}

.value-item__content p {
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
}

.our-values__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.our-values__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Our Team */
.our-team {
  padding: var(--space-3xl) 0;
  background: var(--neutral-white);
}

.our-team__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .our-team__content {
    grid-template-columns: 1fr 1fr;
  }
}

.our-team__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-md);
}

.our-team__description {
  font-size: var(--text-lg);
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.team-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.team-highlight {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.team-highlight strong {
  color: var(--mavuni-secondary-brown);
  font-weight: var(--font-weight-semibold);
}

.team-highlight span {
  color: var(--neutral-medium-gray);
  font-size: var(--text-sm);
}

.our-team__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.our-team__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}/* ===== PARTNERSHIP SECTION (PROFESSIONAL) ===== */

.partnership {
  padding: var(--space-3xl) 0;
  background: var(--neutral-light-gray);
}

.partnership__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .partnership__content {
    grid-template-columns: 1fr 1fr;
  }
}

.partnership__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--mavuni-primary-red);
  margin-bottom: var(--space-md);
}

.partnership__description {
  font-size: var(--text-lg);
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.partnership__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.benefit-point {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.benefit-point i {
  color: var(--mavuni-primary-red);
  font-size: var(--text-sm);
}

.benefit-point span {
  color: var(--neutral-dark-gray);
  font-size: var(--text-base);
}

.partnership__visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.kenfore-logo-card {
  background: var(--neutral-white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--mavuni-accent-nude);
}

.kenfore-logo {
  margin-bottom: var(--space-md);
}

.kenfore-logo__text {
  display: block;
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--neutral-charcoal);
  letter-spacing: 2px;
}

.kenfore-logo__subtext {
  display: block;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--mavuni-secondary-brown);
  letter-spacing: 1px;
}

.kenfore-tagline {
  font-size: var(--text-sm);
  color: var(--neutral-medium-gray);
  font-style: italic;
}

.partnership__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}/* ===
== PROFESSIONAL HUMAN-MADE TOUCHES ===== */

/* Subtle variations in spacing (like real designers do) */
.section:nth-child(odd) {
  padding-top: calc(var(--space-3xl) + 8px);
}

.section:nth-child(even) {
  padding-bottom: calc(var(--space-3xl) + 12px);
}

/* Natural image variations */
.our-story__img:first-child {
  transform: rotate(-0.5deg);
}

.our-story__img:last-child {
  transform: rotate(0.3deg);
}

.our-team__img:first-child {
  border-radius: var(--radius-lg);
}

.our-team__img:last-child {
  border-radius: var(--radius-sm);
}

/* Subtle shadow variations */
.fact-card:nth-child(2n) {
  box-shadow: var(--shadow-sm);
}

.fact-card:nth-child(2n+1) {
  box-shadow: var(--shadow-xs);
}

/* Professional typography refinements */
.about-hero__title {
  letter-spacing: -0.02em; /* Tight letter spacing for impact */
}

.section__title {
  letter-spacing: -0.01em;
}

/* Natural content flow */
.our-story__item:last-child {
  margin-bottom: 0;
}

.value-item:last-child {
  margin-bottom: 0;
}

/* Professional button spacing */
.about-hero .btn,
.our-story .btn,
.partnership .btn {
  margin-top: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Ensure all images have professional loading */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Professional focus states */
.fact-card:focus-within,
.value-item:focus-within {
  outline: 2px solid var(--mavuni-primary-red);
  outline-offset: 4px;
}

/* Natural content hierarchy */
h1, h2, h3 {
  text-rendering: optimizeLegibility;
}

p {
  text-rendering: optimizeSpeed;
}

/* Professional print styles */
@media print {
  .about-hero,
  .quick-facts,
  .our-story,
  .what-we-do,
  .our-values,
  .our-team,
  .partnership {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}/* Our St
ory Image Stack Styles */
.our-story__image-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.our-story__img--top,
.our-story__img--bottom {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.our-story__divider {
  height: 4px;
  background: linear-gradient(90deg, var(--color-navy-900), var(--color-blue-600));
  margin: 0;
  position: relative;
  z-index: 2;
}

.our-story__intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Local Partnership Styles */
.local-partnership {
  padding: 4rem 0;
}

.local-partnership__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.local-partnership__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.local-partnership__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 2.5rem;
}

.partnership__impact {
  display: grid;
  gap: 2rem;
}

.impact-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.impact-point__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-navy-900));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impact-point__icon i {
  /* color: white; */
  font-size: 1.2rem;
}

.impact-point__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.5rem;
}

.impact-point__content p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

.local-partnership__images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.local-partnership__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 58, 143, 0.15);
}

/* Kenfore Partnership Styles */
.kenfore-partnership {
  padding: 4rem 0;
}

.kenfore-partnership__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kenfore-partnership__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.kenfore-partnership__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
}

.kenfore-partnership__benefits {
  display: grid;
  gap: 1rem;
}

.kenfore-partnership__visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.kenfore-logo-display {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 58, 143, 0.1);
  text-align: center;
  border: 2px solid var(--color-gray-100);
}

.kenfore-logo-img {
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
}

.kenfore-tagline {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  font-weight: 500;
  margin: 0;
}

.kenfore-partnership__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 58, 143, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .local-partnership__content,
  .kenfore-partnership__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .local-partnership__title,
  .kenfore-partnership__title {
    font-size: 2rem;
  }
  
  .partnership__impact {
    gap: 1.5rem;
  }
  
  .impact-point {
    gap: 0.75rem;
  }
  
  .impact-point__icon {
    width: 40px;
    height: 40px;
  }
  
  .impact-point__icon i {
    font-size: 1rem;
  }
  
  .local-partnership__images {
    gap: 0.75rem;
  }
  
  .local-partnership__img,
  .kenfore-partnership__img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .local-partnership,
  .kenfore-partnership {
    padding: 2rem 0;
  }
  
  .local-partnership__title,
  .kenfore-partnership__title {
    font-size: 1.75rem;
  }
  
  .local-partnership__description,
  .kenfore-partnership__description {
    font-size: 1rem;
  }
  
  .our-story__intro {
    font-size: 1rem;
  }
}/* E
nhanced Local Partnership Styles */
.local-partnership__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.local-partnership__text {
  padding-right: 2rem;
}

.partnership__impact {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

.impact-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(44, 58, 143, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 58, 143, 0.15);
}

.impact-point__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-navy-900));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(44, 58, 143, 0.3);
}

.impact-point__icon i {
  /* color: white; */
  font-size: 1.4rem;
}

.impact-point__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.impact-point__content p {
  color: var(--color-gray-700);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Enhanced Kenfore Partnership Styles */
.kenfore-partnership__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.kenfore-logo-display {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(44, 58, 143, 0.15);
  text-align: center;
  border: 3px solid var(--color-gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kenfore-logo-display:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(44, 58, 143, 0.2);
}

.kenfore-tagline {
  font-size: 1rem;
  color: var(--color-gray-600);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .local-partnership__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .local-partnership__text {
    padding-right: 0;
  }
  
  .partnership__impact {
    gap: 2rem;
  }
  
  .impact-point {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  
  .impact-point__icon {
    width: 50px;
    height: 50px;
  }
  
  .impact-point__icon i {
    font-size: 1.2rem;
  }
  
  .kenfore-partnership__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .kenfore-logo-display {
    padding: 2rem 1.5rem;
  }
}/* Produ
cts Page Enhancements */
.products-hero {
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-blue-600));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.products-hero__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.products-hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.products-hero__stat {
  text-align: center;
}

.products-hero__stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-green-500);
  margin-bottom: 0.5rem;
}

.products-hero__stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-section {
  padding: 4rem 0;
}

.product-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.product-section__header--reverse {
  grid-template-columns: 1fr 1fr;
}

.product-section__header--reverse .product-section__image {
  order: -1;
}

.product-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-section__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
}

.product-section__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(44, 58, 143, 0.2);
}

.product-details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-details__card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 58, 143, 0.1);
  border: 2px solid var(--color-gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-details__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(44, 58, 143, 0.15);
}

.product-details__card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-details__card-title i {
  color: var(--color-blue-600);
  font-size: 1.2rem;
}

.product-details__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details__list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-100);
  color: var(--color-gray-700);
  line-height: 1.6;
}

.product-details__list li:last-child {
  border-bottom: none;
}

.product-details__list li strong {
  color: var(--color-navy-900);
  font-weight: 600;
}

.product-cta {
  text-align: center;
  margin-top: 2rem;
}

.delivery-section {
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-blue-600));
  color: white;
  padding: 5rem 0;
}

.delivery-section__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.delivery-section__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.delivery-details__card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.delivery-details__icon {
  width: 70px;
  height: 70px;
  background: var(--color-green-500);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.delivery-details__icon i {
  font-size: 1.8rem;
  color: white;
}

.delivery-details__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.delivery-details__description {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.delivery-details__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.delivery-details__list li {
  padding: 0.5rem 0;
  opacity: 0.8;
  position: relative;
  padding-left: 1.5rem;
}

.delivery-details__list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green-500);
  font-weight: bold;
}

.delivery-process {
  margin-top: 4rem;
}

.delivery-process__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
}

.delivery-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.delivery-process__step {
  text-align: center;
  position: relative;
}

.delivery-process__step-number {
  width: 60px;
  height: 60px;
  background: var(--color-green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1rem;
}

.delivery-process__step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.delivery-process__step-description {
  opacity: 0.8;
  line-height: 1.5;
  font-size: 0.95rem;
}

.products-cta {
  padding: 4rem 0;
  background: var(--color-gray-50);
}

.products-cta__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy-900);
  margin-bottom: 1.5rem;
}

.products-cta__description {
  font-size: 1.2rem;
  color: var(--color-gray-700);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-cta__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.products-cta__features {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.products-cta__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray-600);
  font-weight: 500;
}

.products-cta__feature i {
  color: var(--color-green-500);
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-hero__title {
    font-size: 2.2rem;
  }
  
  .products-hero__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-section__header,
  .product-section__header--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-section__header--reverse .product-section__image {
    order: 0;
  }
  
  .product-section__title {
    font-size: 2rem;
  }
  
  .product-details__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .delivery-details__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .delivery-process__steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .products-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .products-cta__features {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .products-hero {
    padding: 3rem 0;
  }
  
  .products-hero__title {
    font-size: 1.8rem;
  }
  
  .product-section {
    padding: 3rem 0;
  }
  
  .product-section__title {
    font-size: 1.75rem;
  }
  
  .delivery-section {
    padding: 4rem 0;
  }
  
  .delivery-section__title {
    font-size: 2rem;
  }
  
  .products-cta__title {
    font-size: 2rem;
  }
}/* Professional Products Page Styling */
.product-detail {
  padding: 4rem 0;
}

.product-detail__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.product-detail__header--reverse {
  grid-template-columns: 1fr 1fr;
}

.product-detail__header--reverse .product-detail__image {
  order: -1;
}

.product-detail__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy-900);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-detail__subtitle {
  font-size: 1rem;
  color: var(--color-blue-600);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-detail__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
}

.product-detail__highlights {
  display: grid;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(52, 161, 219, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--color-blue-600);
}

.highlight-item__icon {
  width: 50px;
  height: 50px;
  background: var(--color-blue-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-item__icon i {
  color: white;
  font-size: 1.2rem;
}

.highlight-item__content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.25rem;
}

.highlight-item__content p {
  color: var(--color-gray-600);
  margin: 0;
  font-size: 0.9rem;
}

.product-detail__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(44, 58, 143, 0.2);
}

/* Product Specifications Styling */
.product-specs {
  margin-top: 3rem;
}

.product-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.spec-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 58, 143, 0.1);
  border: 2px solid var(--color-gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(44, 58, 143, 0.15);
}

.spec-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-navy-900));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.spec-card__icon i {
  color: white;
  font-size: 1.5rem;
}

.spec-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 1.5rem;
}

.spec-list {
  display: grid;
  gap: 1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--color-gray-700);
}

.spec-value {
  font-weight: 700;
  color: var(--color-navy-900);
  text-align: right;
}

.application-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.application-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--color-gray-50);
  border-radius: 8px;
  color: var(--color-gray-700);
  font-weight: 500;
}

.application-list li i {
  color: var(--color-blue-600);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.product-cta-section {
  background: linear-gradient(135deg, var(--color-navy-900), var(--color-blue-600));
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-content p {
  opacity: 0.9;
  margin: 0;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
  .product-detail__header,
  .product-detail__header--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-detail__header--reverse .product-detail__image {
    order: 0;
  }
  
  .product-detail__title {
    font-size: 2rem;
  }
  
  .product-specs__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-cta-section {
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .product-detail {
    padding: 3rem 0;
  }
  
  .product-detail__title {
    font-size: 1.75rem;
  }
  
  .spec-card {
    padding: 2rem;
  }
  
  .product-cta-section {
    padding: 2rem;
  }
}/* Del
ivery Service Cards - 2 Column Layout */
.delivery-service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.delivery-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 58, 143, 0.1);
  border: 2px solid var(--color-gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delivery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(44, 58, 143, 0.15);
}

.delivery-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-navy-900));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.delivery-card__icon i {
  color: white;
  font-size: 1.8rem;
}

.delivery-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 1rem;
}

.delivery-card__description {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.delivery-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.delivery-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-gray-700);
  font-weight: 500;
}

.delivery-card__features li i {
  color: var(--color-green-500);
  font-size: 0.9rem;
  width: 16px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal__content {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.modal__content--whatsapp {
  max-width: 450px;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin: 0;
}

.modal__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--color-gray-600);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.modal__close:hover {
  background: var(--color-gray-100);
  color: var(--color-navy-900);
}

.modal__body {
  padding: 2rem;
}

/* WhatsApp Header */
.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-header i {
  font-size: 2rem;
  color: #25D366;
}

.whatsapp-subtitle {
  color: var(--color-gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* Form Styles */
.quote-form,
.whatsapp-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--color-navy-900);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue-600);
  box-shadow: 0 0 0 3px rgba(52, 161, 219, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
  color: white;
  font-size: 1.8rem;
}

/* WhatsApp Button */
.btn--whatsapp {
  background: #25D366;
  color: white;
  border: 2px solid #25D366;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn--whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .delivery-service__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  

  
  .modal__content {
    width: 95%;
    margin: 1rem;
  }
  
  .modal__header,
  .modal__body {
    padding: 1.5rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .whatsapp-button {
    bottom: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-button i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .delivery-card {
    padding: 2rem;
  }
  
  .delivery-card__icon {
    width: 60px;
    height: 60px;
  }
  
  .delivery-card__icon i {
    font-size: 1.5rem;
  }
}/* Impac
t Page Styling */
.skills-development {
  padding: 4rem 0;
}

.skills-journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44, 58, 143, 0.1);
  border: 2px solid var(--color-gray-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(44, 58, 143, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-blue-600), var(--color-navy-900));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

.training-programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.program-highlight {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
}

.program-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-green-500), var(--color-blue-600));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.program-icon i {
  color: white;
  font-size: 1.8rem;
}

.program-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 1rem;
}

.program-content p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.program-outcomes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.outcome-badge {
  background: var(--color-green-500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Economic Impact Section */
.economic-impact {
  padding: 4rem 0;
}

.economic-impact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.economic-impact__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.economic-impact__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
}

.economic-highlights {
  display: grid;
  gap: 1.5rem;
}

.economic-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(52, 161, 219, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--color-blue-600);
}

.economic-highlight .highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--color-blue-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.economic-highlight .highlight-icon i {
  color: white;
  font-size: 1.2rem;
}

.economic-highlight .highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.25rem;
}

.economic-highlight .highlight-content p {
  color: var(--color-gray-600);
  margin: 0;
  font-size: 0.9rem;
}

.economic-impact__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(44, 58, 143, 0.2);
}

/* Green Practices Section */
.green-practices {
  padding: 4rem 0;
}

.green-practices__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.green-practices__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-navy-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.green-practices__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
}

.green-initiatives {
  display: grid;
  gap: 1.5rem;
}

.green-initiative {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(8, 166, 78, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--color-green-500);
}

.green-initiative i {
  color: var(--color-green-500);
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.green-initiative h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-900);
  margin-bottom: 0.25rem;
}

.green-initiative p {
  color: var(--color-gray-600);
  margin: 0;
  font-size: 0.9rem;
}

.green-practices__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(44, 58, 143, 0.2);
}

/* Responsive Design for Impact Page */
@media (max-width: 768px) {
  .skills-journey {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .journey-step {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .training-programs {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .program-highlight {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .economic-impact__content,
  .green-practices__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .economic-impact__title,
  .green-practices__title {
    font-size: 2rem;
  }
  
  .economic-highlight,
  .green-initiative {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .skills-development {
    padding: 3rem 0;
  }
  
  .economic-impact,
  .green-practices {
    padding: 3rem 0;
  }
  
  .economic-impact__title,
  .green-practices__title {
    font-size: 1.75rem;
  }
  
  .program-outcomes {
    justify-content: center;
  }
}/* Impact Areas - 4 Cards in 2x2 Grid */
.impact-areas__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem !important;
  margin-top: 3rem;
  width: 100%;
}

.impact-card {
  background: var(--neutral-white) !important;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(181, 76, 49, 0.2) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

.impact-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--mavuni-primary-red), var(--mavuni-secondary-brown));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.impact-card__icon i {
  color: var(--neutral-white);
  font-size: 1.8rem;
}

.impact-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-sm);
  width: 100%;
  text-align: left;
}

.impact-card__description {
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
  width: 100%;
  text-align: left;
}

.impact-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.impact-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  color: var(--neutral-dark-gray);
  font-weight: var(--font-weight-medium);
  text-align: left;
}

.impact-card__features li i {
  color: var(--mavuni-primary-red);
  font-size: var(--text-sm);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Skills Title with Half Button Background */
.skills-title-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.skills-title {
  background: linear-gradient(90deg, var(--mavuni-primary-red) 0%, var(--mavuni-primary-red) 50%, var(--mavuni-secondary-brown) 50%, var(--mavuni-secondary-brown) 100%);
  color: var(--neutral-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
  box-shadow: 0 8px 25px rgba(181, 76, 49, 0.3);
  position: relative;
  display: inline-block;
}

/* Responsive Design Updates */
@media (max-width: 767px) {
  .impact-areas__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .impact-card {
    padding: 1.5rem;
  }
  
  .impact-card__icon {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 768px) {
  .impact-areas__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}

@media (min-width: 1024px) {
  .impact-areas__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }

  
  .impact-card {
    padding: 2rem;
  }
  
  .impact-card__icon {
    width: 60px;
    height: 60px;
  }
  
  .impact-card__icon i {
    font-size: 1.5rem;
  }
  
  .skills-title {
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .impact-card {
    padding: 1.5rem;
  }
  
  .skills-title {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
  }
}
/* Fix Hero Secondary Button - White Background */
.hero__cta .btn--secondary {
  background-color: var(--neutral-white) !important;
  color: var(--mavuni-primary-red) !important;
  border: 2px solid var(--neutral-white) !important;
}

.hero__cta .btn--secondary:hover {
  background-color: var(--mavuni-primary-red) !important;
  border-color: var(--mavuni-primary-red) !important;
  color: var(--neutral-white) !important;
}

/* Ensure all cards have proper white background and contrast */
.brick-card,
.impact-card,
.product-card,
.value-card {
  background-color: var(--neutral-white) !important;
  border: 1px solid rgba(181, 76, 49, 0.1) !important;
}

/* Fix any remaining white-on-white text issues */
.section--alt .brick-card,
.section--alt .impact-card,
.section--alt .product-card {
  background-color: var(--neutral-white) !important;
  box-shadow: var(--shadow-md) !important;
}/*
 ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: var(--z-fixed);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  color: var(--neutral-white);
  font-size: 1.5rem;
}

/* ===== MODAL SYSTEM ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(181, 76, 49, 0.1);
}

.modal__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--neutral-charcoal);
  margin: 0;
}

.modal__close {
  background: none;
  border: none;
  font-size: var(--text-xl);
  color: var(--neutral-medium-gray);
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.modal__close:hover {
  background-color: rgba(181, 76, 49, 0.1);
  color: var(--mavuni-primary-red);
}

.modal__body {
  margin-bottom: var(--space-lg);
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  color: var(--neutral-charcoal);
  font-size: var(--text-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-sm);
  border: 2px solid rgba(181, 76, 49, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--mavuni-primary-red);
}

.form-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
  margin-top: var(--space-lg);
}

/* WhatsApp Button Styling */
.btn--whatsapp {
  background-color: #25d366;
  color: var(--neutral-white);
  border: 2px solid #25d366;
}

.btn--whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

/* Quote Button Styling */
.btn--quote {
  background-color: var(--mavuni-primary-red);
  color: var(--neutral-white);
  border: 2px solid var(--mavuni-primary-red);
}

.btn--quote:hover {
  background-color: #a04329;
  border-color: #a04329;
}
/* CRITIC
AL FIX: Override why-choose grid for impact areas */
.why-choose .impact-areas__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem !important;
}

@media (max-width: 767px) {
  .why-choose .impact-areas__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 768px) {
  .why-choose .impact-areas__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .why-choose .impact-areas__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }
}

/* Ensure impact cards don't inherit value-card styles */
.impact-areas__grid .impact-card {
  text-align: left !important;
}

.impact-areas__grid .impact-card__icon {
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* ===== LAZY LOADING STYLES ===== */
img[loading="lazy"] {
  /* opacity: 0; */
  transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Gallery masonry grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-hero__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--neutral-charcoal);
  margin-bottom: var(--space-md);
}

.gallery-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--mavuni-primary-red);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
}

.gallery-hero__description {
  font-size: var(--text-lg);
  color: var(--neutral-dark-gray);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
  
  .gallery-hero__title {
    font-size: var(--text-3xl);
  }
}

/* CRITICAL: Ensure all cards have visible backgrounds and shadows */
.brick-card,
.product-card,
.value-card {
  background: var(--neutral-white) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(181, 76, 49, 0.15) !important;
}

.brick-card:hover,
.product-card:hover,
.value-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure section--alt has proper background */
.section--alt {
  background-color: #f8f9fa !important;
}

/* About Page Specific Styles */

/* Hero Section for About Page */
.hero--about {
  min-height: 60vh;
}

/* Our Story Section Responsive */
@media (max-width: 768px) {
  .our-story__content {
    grid-template-columns: 1fr !important;
  }
  
  .our-story__images {
    order: -1;
  }
}

/* What We Do Hover Effects */
.what-we-do__item:hover {
  transform: translateY(-5px);
}

/* Local Partnership Responsive */
.local-partnership__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 968px) {
  .local-partnership__content {
    grid-template-columns: 1fr;
  }
  
  .local-partnership__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .local-partnership__images {
    grid-template-columns: 1fr;
  }
}

/* Our Values Responsive */
.our-values__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 968px) {
  .our-values__content {
    grid-template-columns: 1fr;
  }
  
  .our-values__image {
    order: -1;
  }
}

/* Kenfore Partnership Responsive */
@media (max-width: 968px) {
  .kenfore-partnership__content {
    grid-template-columns: 1fr !important;
  }
}

/* CTA Button Hover Effects */
.cta__buttons a:hover {
  transform: scale(1.05);
}

/* Quick Facts Responsive */
.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.fact-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  border: 2px solid #8B4513;
}

.fact-card__number {
  font-size: 3rem;
  font-weight: 800;
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.fact-card__label {
  color: #4a5568;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .quick-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Our Story Version A & B Responsive Styles */

/* Version A - Side by Side with Logo */
.our-story--version-a .our-story__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.our-story--version-a .our-story__logo-side {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-height: 400px;
}

@media (max-width: 968px) {
  .our-story--version-a .our-story__content {
    grid-template-columns: 1fr !important;
  }
  
  .our-story--version-a .our-story__logo-side {
    min-height: 300px;
    padding: 2rem;
  }
  
  .our-story--version-a .our-story__items {
    grid-template-columns: 1fr;
  }
}

/* Version B - Full Width Image */
.our-story--version-b .our-story__hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.our-story--version-b .our-story__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 968px) {
  .our-story--version-b .our-story__hero-image img {
    height: 350px;
  }
  
  .our-story--version-b .our-story__items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .our-story--version-b .our-story__hero-image img {
    height: 250px;
  }
}

/* Toggle between versions */
.our-story--version-a {
  display: block;
}

.our-story--version-b {
  /* display: none; */
}

/* When you want to switch to Version B, add this class to body or use JavaScript */
body.use-version-b .our-story--version-a {
  display: none;
}

body.use-version-b .our-story--version-b {
  display: block;
}


/* ===== ABOUT PAGE GRID LAYOUTS ===== */

/* Our Story Items Grid */
.our-story__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .our-story__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .our-story__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* What We Do Grid */
.what-we-do__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .what-we-do__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .what-we-do__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

/* Values Grid - 2x2 on Desktop, 1 Column on Mobile */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Empowering Cards Grid - 2x2 on Desktop, 1 Column on Mobile */
.empowering__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .empowering__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ===== GALLERY PAGE GRID LAYOUT ===== */

/* Gallery Masonry Grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery-masonry {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
