@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Poppins:wght@400;500;600&family=Inter:wght@400;700;900&display=swap');

/*
Metro & Pen Printing Press - Global Design System
Version: 1.0
*/

/* ------------------- */
/* 1. Root Variables  */
/* ------------------- */
:root {
  /* Primary Colors */
  --primary-blue: #3B6BC7;      /* Primary brand blue - lighter for better logo contrast */
  --primary-green: #10b981;     /* Accent green */
  
  /* Neutral Colors */
  --neutral-white: #FFFFFF;
  --neutral-light: #F8F9FA;
  --neutral-gray-50: #F9FAFB;
  --neutral-gray-100: #F3F4F6;
  --neutral-gray-200: #E5E7EB;
  --neutral-gray-300: #D1D5DB;
  --neutral-gray-400: #9CA3AF;
  --neutral-gray-500: #6B7280;
  --neutral-gray-600: #4B5563;
  --neutral-gray-700: #374151;
  --neutral-gray-800: #1F2937;
  --neutral-gray-900: #111827;
  --neutral-black: #000000;
  
  /* Text Colors */
  --text-primary: #1F2937;      /* Primary text color */
  --text-secondary: #6B7280;    /* Secondary text color */
  --text-muted: #9CA3AF;        /* Muted text color */
  --text-light: #FFFFFF;        /* Light text for dark backgrounds */
  --text-dark: #111827;         /* Dark text for light backgrounds */
  
  /* Background Colors */
  --bg-primary: #FFFFFF;        /* Primary background */
  --bg-secondary: #F8F9FA;      /* Secondary background */
  --bg-accent: #F3F4F6;         /* Accent background */
  --bg-cream: #F8F5F0;          /* Cream background */
  
  /* Brand Colors */
  --brand-blue: var(--primary-blue);
  --brand-green: var(--primary-green);
  --brand-cream: var(--bg-cream);
  
  /* Typography */
  --font-family-heading: 'Montserrat', 'Inter', Arial, sans-serif;
  --font-family-body: 'Poppins', Arial, sans-serif;
  --font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  --font-size-5xl: 3rem;        /* 48px */
  --font-size-6xl: 3.75rem;     /* 60px */
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  
  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;
  
  /* Spacing */
  --spacing-0: 0;
  --spacing-1: 0.25rem;         /* 4px */
  --spacing-2: 0.5rem;          /* 8px */
  --spacing-3: 0.75rem;         /* 12px */
  --spacing-4: 1rem;            /* 16px */
  --spacing-5: 1.25rem;         /* 20px */
  --spacing-6: 1.5rem;          /* 24px */
  --spacing-8: 2rem;            /* 32px */
  --spacing-10: 2.5rem;         /* 40px */
  --spacing-12: 3rem;           /* 48px */
  --spacing-16: 4rem;           /* 64px */
  --spacing-20: 5rem;           /* 80px */
  --spacing-24: 6rem;           /* 96px */
  
  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.125rem;        /* 2px */
  --radius-base: 0.25rem;       /* 4px */
  --radius-md: 0.375rem;        /* 6px */
  --radius-lg: 0.5rem;          /* 8px */
  --radius-xl: 0.75rem;         /* 12px */
  --radius-2xl: 1rem;           /* 16px */
  --radius-3xl: 1.5rem;         /* 24px */
  --radius-full: 9999px;
  
  /* Box Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  
  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
  
  /* Container Max Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  
  /* Legacy Support - Keep existing variable names for backward compatibility */
  --accent-black: var(--neutral-gray-900);
  --accent-cream: var(--bg-cream);
  --accent-red: #e63946;
  --heading-font: var(--font-family-heading);
  --body-font: var(--font-family-body);
  --shadow: var(--shadow-lg);
  --card-shadow: var(--shadow-md);
}

/* ------------------- */
/* 2. General Styles  */
/* ------------------- */
html, body { 
    max-width: 100%; 
    overflow-x: hidden; 
}
body {
  font-family: var(--font-family-body);
  font-size: var(--font-size-base); /* 16px */
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal); /* 1.5 */
  color: var(--text-primary);
  background: var(--bg-cream);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  text-rendering: optimizeLegibility;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin: 0 0 var(--spacing-4) 0;
  letter-spacing: -0.025em;
}

/* Heading Hierarchy */
h1 {
  font-size: var(--font-size-5xl); /* 3rem - 48px */
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-6);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-4xl); /* 2.25rem - 36px */
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  margin-bottom: var(--spacing-5);
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--font-size-3xl); /* 1.875rem - 30px */
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  margin-bottom: var(--spacing-4);
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--font-size-2xl); /* 1.5rem - 24px */
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-3);
}

h5 {
  font-size: var(--font-size-xl); /* 1.25rem - 20px */
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-2);
}

h6 {
  font-size: var(--font-size-lg); /* 1.125rem - 18px */
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-2);
}

/* Paragraph Styles */
p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin: 0 0 var(--spacing-4) 0;
}

p:last-child {
  margin-bottom: 0;
}

/* Link Styles */
a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

/* Text Utility Classes */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }
.text-6xl { font-size: var(--font-size-6xl); }

/* Font Weight Utilities */
.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-extrabold { font-weight: var(--font-weight-extrabold); }
.font-black { font-weight: var(--font-weight-black); }

/* Line Height Utilities */
.leading-tight { line-height: var(--line-height-tight); }
.leading-snug { line-height: var(--line-height-snug); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }
.leading-loose { line-height: var(--line-height-loose); }

/* Text Color Utilities */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }
.text-brand-blue { color: var(--primary-blue); }
.text-brand-green { color: var(--primary-green); }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-4xl); /* 2.25rem - 36px */
    margin-bottom: var(--spacing-5);
  }
  
  h2 {
    font-size: var(--font-size-3xl); /* 1.875rem - 30px */
    margin-bottom: var(--spacing-4);
  }
  
  h3 {
    font-size: var(--font-size-2xl); /* 1.5rem - 24px */
    margin-bottom: var(--spacing-3);
  }
  
  h4 {
    font-size: var(--font-size-xl); /* 1.25rem - 20px */
    margin-bottom: var(--spacing-2);
  }
  
  h5 {
    font-size: var(--font-size-lg); /* 1.125rem - 18px */
    margin-bottom: var(--spacing-2);
  }
  
  h6 {
    font-size: var(--font-size-base); /* 1rem - 16px */
    margin-bottom: var(--spacing-2);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: var(--font-size-3xl); /* 1.875rem - 30px */
    margin-bottom: var(--spacing-4);
  }
  
  h2 {
    font-size: var(--font-size-2xl); /* 1.5rem - 24px */
    margin-bottom: var(--spacing-3);
  }
  
  h3 {
    font-size: var(--font-size-xl); /* 1.25rem - 20px */
    margin-bottom: var(--spacing-2);
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}
.section-title {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 24px;
}
/* Old hero styles removed - replaced with new hero structure */
@media (max-width: 900px) {
  .section-title {
    margin-bottom: 12px;
  }
  /* Old hero styles removed - replaced with new hero structure */
}

/* ------------------- */
/* 3. Section Styling  */
/* ------------------- */
.section {
  position: relative;
  padding: 80px 0 60px 0;
  z-index: 1;
}
.section.bg-blue {
  background: var(--primary-blue);
  color: var(--text-light);
}
.section.bg-green {
  background: var(--primary-green);
  color: var(--text-light);
}
.section.bg-black {
  background: var(--primary-blue);
  color: var(--text-light);
}
.section.bg-cream {
  background: var(--accent-cream);
  color: var(--text-dark);
}

/* Angled/Curved Section Separators */
.section-separator {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.section-separator.top {
  top: 0;
  transform: translateY(-100%);
}
.section-separator.bottom {
  bottom: 0;
  transform: translateY(100%);
}

/* Example SVG for angled/curved separator */
.section-separator svg {
  display: block;
  width: 100%;
  height: 100%;
  /* Use blue or cream for separators, not black */
  fill: var(--primary-blue);
}

/* ------------------- */
/* 4. Global Button Styles */
/* ------------------- */

/* Base Button Class */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2);
  padding: var(--spacing-3) var(--spacing-6);
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  user-select: none;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  min-height: 44px; /* Accessibility: minimum touch target */
}

/* Button Focus States */
.btn:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.btn:focus:not(:focus-visible) {
  outline: none;
}

/* Button Disabled State */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Button */
.btn-primary {
  background-color: var(--primary-green);
  color: var(--text-light);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #059669; /* Slightly darker green */
      border-color: #059669;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
  border-color: var(--primary-blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Ghost Button */
.btn-ghost {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: transparent;
  box-shadow: none;
}

.btn-ghost:hover {
  background-color: var(--neutral-gray-100);
  color: var(--primary-blue);
  border-color: var(--neutral-gray-200);
}

/* Button Sizes */
.btn-sm {
  padding: var(--spacing-2) var(--spacing-4);
  font-size: var(--font-size-sm);
  min-height: 36px;
}

.btn-lg {
  padding: var(--spacing-4) var(--spacing-8);
  font-size: var(--font-size-lg);
  min-height: 52px;
}

/* Button with Icon */
.btn-icon {
  padding: var(--spacing-3);
  min-width: 44px;
  width: 44px;
  height: 44px;
}

.btn-icon.btn-sm {
  min-width: 36px;
  width: 36px;
  height: 36px;
}

.btn-icon.btn-lg {
  min-width: 52px;
  width: 52px;
  height: 52px;
}

/* Legacy Support - Keep existing .cta-btn for backward compatibility */
.cta-btn {
  display: inline-block;
  background: var(--primary-green);
  color: var(--text-light);
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  padding: var(--spacing-3) var(--spacing-8);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  min-height: 44px;
}

.cta-btn:hover {
  background: var(--primary-blue);
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* ------------------- */
/* 5. Hero Section     */
/* ------------------- */
/* Old hero styles removed - replaced with new hero structure */

/* Old hero styles removed - replaced with new hero structure */

.company-logo {
  width: 200px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.company-logo:hover {
  transform: scale(1.05);
}
/* Old hero styles removed - replaced with new hero structure */

/* Ensure company logos inside About page cards are centered above tagline */
.companies-showcase .company-card .company-logo {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto 2rem auto !important;
  text-align: center !important;
}

.companies-showcase .company-card .company-logo img {
  max-width: 280px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Example for angled bottom separator in hero */
.hero .section-separator.bottom {
  height: 80px;
}

/* --- Product Slideshow Styles --- */
.product-slideshow-section {
  background: var(--accent-cream);
  padding: 48px 0;
}
.product-slideshow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.slide-img-wrapper {
  width: 100%;
  max-width: 420px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 1 1 100%;
  z-index: 1;
}
.slide-figure {
  width: 100%;
  min-height: 220px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.slide-figure[style*='display:flex'], .slide-figure[style*='display: flex'] {
  display: flex !important;
}
.slide-img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px #181c5a11;
  background: #fff;
  transition: box-shadow 0.22s, transform 0.22s;
  display: block;
}
.slide-img:hover {
  box-shadow: 0 8px 32px rgba(16,185,129,0.2);
  transform: scale(1.03);
  z-index: 2;
}
.slide-btn {
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5em;
  cursor: pointer;
  box-shadow: 0 2px 12px #181c5a22;
  margin: 0 12px;
  transition: background 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-btn:hover {
  background: var(--primary-green);
}

/* --- Services Grid & Cards --- */
.services-section {
  padding: 48px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 4px 24px rgba(16,185,129,0.27);
  transform: translateY(-2px) scale(1.03);
}
.service-card i {
  display: none;
}
.service-card h4 {
  font-size: var(--font-size-xl);
  margin: 0 0 0.5rem 0;
  color: var(--primary-blue);
  font-family: var(--font-family-heading);
  font-weight: 700;
}
.service-card p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  margin: 0;
  line-height: var(--line-height-relaxed);
}
/* Improved Image Display */
.service-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: #f8f9fa;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: block;
  padding: 12px;
}

.company-image img {
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

/* Unified blue/green halo hover for service, product, and company images */
.service-img:hover,
.product-image:hover,
.company-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 3px rgba(59,107,199,0.20), 0 0 0 6px rgba(16,185,129,0.18), var(--shadow-md);
  border-color: var(--primary-blue);
}

/* Product Image Improvements */
.product-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: #f8f9fa;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: block;
  padding: 12px;
}

/* product-image hover covered by unified rule above */

/* Location Logo Improvements */
.location-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

.product-card h3 {
  font-size: var(--font-size-xl);
  margin: 0 0 0.5rem 0;
  color: var(--primary-blue);
  font-family: var(--font-family-heading);
  font-weight: 700;
}

.product-card p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

/* ------------------- */
/* 6. Responsive      */
/* ------------------- */
@media (max-width: 900px) {
  .container {
    padding: 12px 4vw;
  }
  .section {
    padding: 28px 0 18px 0;
  }
  .section-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  /* Old hero styles removed - replaced with new hero structure */
  /* Old hero styles removed - replaced with new hero structure */
  .product-slideshow-section {
    padding: 12px 0;
  }
  .slide-img-wrapper {
    max-width: 98vw;
    min-height: 120px;
  }
  .slide-img {
    max-width: 90vw;
    border-radius: 10px;
  }
  .slide-btn {
    width: 32px;
    height: 32px;
    font-size: 1em;
    margin: 0 2px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card {
    padding: 10px 4px;
    border-radius: 10px;
  }
  .service-img {
    max-width: 90vw;
    border-radius: 8px;
  }
  .impact-section {
    padding: 18px 0 10px 0;
    border-radius: 0 0 18px 18px;
  }
  .impact-grid {
    gap: 10px;
  }
  .impact-card {
    padding: 12px 4px 10px 4px;
    min-width: 90px;
    border-radius: 10px;
  }
  .impact-number {
    font-size: 1.1em;
    min-height: 24px;
  }
  .impact-label {
    font-size: 0.9em;
  }
  .footer-main, .footer-cta-section, .footer-social-section, .footer-bottom {
    border-radius: 0 !important;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-cta-section {
    padding: 14px 0 8px 0;
  }
  .footer-cta-title {
    font-size: 1em;
    margin-bottom: 6px;
  }
  .footer-cta-btn {
    font-size: 0.95em;
    padding: 8px 16px;
    border-radius: 16px;
  }
  .footer-social-section {
    gap: 10px;
    padding: 8px 0 4px 0;
  }
  .footer-social-icon {
    width: 28px;
    height: 28px;
    font-size: 1em;
  }
  .footer-divider-main {
    margin: 0.6em 0 0.6em 0;
  }
  .footer-quicklinks {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    margin: 10px 0 0 0;
  }
  .footer-col {
    min-width: 0;
  }
  .footer-bottom {
    font-size: 0.9em;
    padding: 8px 0 4px 0;
  }
}

/* ------------------- */
/* 7. Utility         */
/* ------------------- */
.text-center { text-align: center; }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }
.bg-blue { background: var(--primary-blue) !important; color: var(--text-light) !important; }
.bg-green { background: var(--primary-green) !important; color: var(--text-light) !important; }
.bg-black { background: var(--accent-black) !important; color: var(--text-light) !important; }
.bg-cream { background: var(--accent-cream) !important; color: var(--text-dark) !important; }

/* --- Flomodia-style Header --- */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: 0 2px 12px rgba(24, 28, 90, 0.08);
  border-bottom: none;
  transition: box-shadow 0.3s, background 0.3s;
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: 64px;
  position: relative;
  overflow: visible;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

#main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link, .dropdown-toggle {
  color: var(--primary-blue);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.08rem;
  background: none;
  border: none;
  text-decoration: none;
  padding: 0 0 4px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover, .dropdown-toggle:hover, .nav-link.active {
  color: var(--primary-green);
}

.nav-link::after, .dropdown-toggle::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: 0;
}

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

/* Enhanced Desktop Dropdown Styles */
@media (min-width: 1101px) {
  .dropdown {
    position: relative;
    overflow: visible;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateY(-10px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: max-content;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .dropdown:hover .dropdown-menu,
  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.8em;
}

.dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}



.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-radius: 0;
  position: relative;
  margin: 0;
  box-sizing: border-box;
}

.dropdown-menu li a:hover {
  background: var(--primary-green);
  color: var(--text-light);
  transform: translateX(3px);
  border-radius: 0;
}

.dropdown-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-green);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.dropdown-menu li a:hover::before {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-left: 18px;
  z-index: 200;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 1100px) {
  .nav-list {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-container {
    padding: 0;
    min-height: 56px;
  }
  .logo img {
    height: 32px;
  }
}

/* --- Mobile Drawer --- */
@media (max-width: 1100px) {
    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(255,255,255,0.97);
        box-shadow: 0 8px 32px #181c5a22;
        border-radius: 0 0 18px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 18px 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity 0.3s, transform 0.3s;
    }
    .nav-list.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-link, .dropdown-toggle {
        width: 100%;
        text-align: left;
        padding: 12px 24px;
        font-size: 1.1rem;
        box-sizing: border-box;
    }
    .nav-link::after {
      display: none;
    }
    .hamburger {
        display: flex;
    }
    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f0f4f8;
        padding: 0;
        border: none;
        animation: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .dropdown-menu li a {
        padding: 12px 24px 12px 40px;
        white-space: normal;
        word-break: break-word;
        line-height: 1.4;
    }
}
@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-us-title {
    letter-spacing: 0.02em;
    font-size: 2.5em;
}

.privacy-policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy-content h3 {
    margin-bottom: 16px;
}

.privacy-policy-content p,
.privacy-policy-content ul {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 32px;
}

.privacy-policy-content ul {
    padding-left: 20px;
}

.privacy-policy-content .last-updated {
    margin-top: 24px;
    color: #64748b;
    font-size: 0.95em;
}

/* --- Footer Styles --- */
.footer-main {
  background: var(--primary-blue);
  color: var(--text-light);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 -2px 16px #181c5a11;
  padding: 0 0 0 0;
  margin-top: 0;
}

.footer-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 0 18px 0;
  background: var(--primary-blue);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 16px #181c5a08;
  margin-bottom: 0;
}

.footer-cta-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  text-align: center;
}

.footer-cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0.9;
  text-align: center;
}

.footer-cta-btn {
  display: inline-block;
  background: var(--primary-green);
  color: var(--text-light);
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: none;
}

.footer-cta-btn:hover, .footer-cta-btn:focus {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 24px rgba(16,185,129,0.2);
}

.footer-social-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 24px 0 12px 0;
  background: var(--primary-blue);
  border-radius: 0 0 18px 18px;
  margin-bottom: 0;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-icon:hover, .footer-social-icon:focus {
  background: var(--primary-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,0.2);
}

.footer-divider-main {
  border: none;
  border-top: 2px solid var(--primary-green);
  margin: 2.2em 0 2em 0;
}

/* Simple Footer with Dropdowns */
.footer-simple {
  padding: 2rem 0;
}

.footer-dropdowns {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  flex-wrap: nowrap;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .footer-dropdowns {
    flex-wrap: wrap;
    max-width: 800px;
  }
}

.footer-dropdown {
  min-width: 200px;
  flex: 1 1 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.footer-dropdown-toggle {
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: #fff;
  border: none;
  padding: 14px 0 14px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}

.footer-dropdown-toggle:focus, .footer-dropdown-toggle:hover {
  background: var(--primary-blue);
  color: #fff;
}

.footer-dropdown-toggle i {
  font-size: 1.1em;
  vertical-align: middle;
  margin: 0 4px;
}

.footer-dropdown-menu {
  font-family: var(--font-family-body);
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 16px rgba(59,107,199,0.08);
  margin: 0;
  padding: 8px 10px;
  min-width: 180px;
  width: 100%;
  text-align: left;
  list-style: none;
  transition: max-height 0.3s ease;
}

.footer-dropdown-menu li a {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.footer-dropdown-menu li a:hover {
  background: var(--primary-green);
  color: #fff;
}

@media (max-width: 700px) {
  .footer-dropdowns {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 100%;
  }
  .footer-dropdown {
    min-width: 0;
    width: 100%;
  }
}

.footer-bottom {
  text-align: center;
  padding: 18px 0 8px 0;
  font-size: 1em;
  border-radius: 0 0 18px 18px;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-dropdowns {
    gap: 1.5rem;
  }
  
  .footer-dropdown {
    min-width: 150px;
  }
}

@media (max-width: 600px) {
  .footer-dropdowns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-dropdown {
    min-width: 100%;
  }
}

/* New Footer Design - Option 7 */
.footer-demo-7 {
  background: transparent !important;
  color: #333;
  padding: 50px 0 30px 0;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.footer-demo-7 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-demo-7 .footer-main-content {
  margin-bottom: 40px;
}

.footer-demo-7 .footer-cta-combined {
  text-align: center;
  margin-bottom: 30px;
}

.footer-demo-7 .footer-heading {
  font-size: 2em;
  font-weight: 700;
  color: #181c5a;
  margin-bottom: 12px;
  text-align: center;
}

.footer-demo-7 .footer-subheading {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}

.footer-demo-7 .footer-cta-button {
  background: #10b981;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(16,185,129,0.3);
}

.footer-demo-7 .footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.4);
  background: #059669;
}

.footer-demo-7 .footer-info-boxes { display: grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); align-items: center; justify-content: center; gap: 25px; margin: 0 auto 40px auto; max-width: 720px; }

.footer-demo-7 .footer-info-box {
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1.5px solid rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  min-height: 170px;
  min-width: 320px;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.footer-demo-7 .footer-info-box:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.footer-demo-7 .footer-info-icon {
  font-size: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #e11d48;
  margin-bottom: 6px;
}

.footer-demo-7 .footer-info-text {
  font-size: 1.15em;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.5;
  text-align: center;
}

.footer-demo-7 .footer-time-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.footer-demo-7 .footer-time-main {
  font-size: 1.1em;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

.footer-demo-7 .footer-time-break {
  font-size: 1em;
  font-weight: 400;
  color: #666;
  line-height: 1.3;
}

.footer-demo-7 .footer-company-info {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 30px;
}

.footer-demo-7 .footer-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 35px;
  padding: 15px 0;
}

.footer-demo-7 .footer-logo-section img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-demo-7 .footer-logo-section img:hover {
  transform: scale(1.05);
}

.footer-demo-7 .footer-logo-section .qr-code {
  height: 100px;
  width: 100px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  background: #fff;
  padding: 8px;
  border: 2px solid rgba(16,185,129,0.2);
}

.footer-demo-7 .footer-logo-section .qr-code:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  border-color: rgba(16,185,129,0.4);
}

/* Dropdown Styles - Matching Existing Footer */
.footer-demo-7 .footer-dropdowns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-demo-7 .footer-dropdown {
  text-align: center;
}

.footer-demo-7 .footer-dropdown-toggle {
  background: none;
  border: none;
  color: #181c5a;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 10px;
}

.footer-demo-7 .footer-dropdown-toggle:hover {
  background: rgba(16,185,129,0.1);
  color: #10b981;
}

.footer-demo-7 .footer-dropdown-toggle[aria-expanded="true"] {
  background: rgba(16,185,129,0.1);
  color: #10b981;
}

.footer-demo-7 .footer-dropdown-toggle[aria-expanded="false"] {
  background: none;
  color: #181c5a;
}

.footer-demo-7 .footer-dropdown-toggle i:first-child {
  margin-right: 5px;
}

.footer-demo-7 .footer-dropdown-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.footer-demo-7 .footer-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  text-align: left;
}

.footer-demo-7 .footer-dropdown-menu li {
  margin-bottom: 8px;
  padding: 5px 0;
}

.footer-demo-7 .footer-dropdown-menu a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 10px;
  border-radius: 4px;
}

.footer-demo-7 .footer-dropdown-menu a:hover {
  color: #10b981;
  background: rgba(16,185,129,0.1);
  transform: translateX(5px);
}

.footer-demo-7 .footer-dropdown-menu li i {
  margin-right: 8px;
  color: #10b981;
  width: 16px;
}


/* Footer copyright row: force neutral text and no blue background */
.footer-demo-7 .footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 25px;
  text-align: center;
  background: transparent !important;
  color: #111827 !important;
  font-size: 0.9em;
}

.footer-demo-7 .footer-bottom p {
  color: #000 !important;
}

/* Ensure footer copyright links are not blue (desktop + mobile) */
.footer-demo-7 .footer-bottom a,
.footer-bottom a {
  color: #111827 !important; /* neutral dark */
  text-decoration: underline;
}
.footer-demo-7 .footer-bottom a:visited,
.footer-bottom a:visited { color: #111827 !important; }
.footer-demo-7 .footer-bottom a:hover,
.footer-demo-7 .footer-bottom a:focus,
.footer-demo-7 .footer-bottom a:active,
.footer-bottom a:hover,
.footer-bottom a:focus,
.footer-bottom a:active { color: #111827 !important; text-decoration: underline; }

/* Override any global footer coloring that forced blue on the bottom row */
.footer-main, .footer-cta-section, .footer-social-section { background: var(--primary-blue) !important; }
.footer-bottom { background: transparent !important; }

/* Mobile-specific dropdown behavior */
@media (max-width: 768px) {
  .footer-demo-7 .footer-dropdowns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-demo-7 .footer-dropdown-toggle {
    font-size: 1em;
    padding: 8px 12px;
  }
  
  .footer-demo-7 .footer-heading {
    font-size: 1.8em;
  }
  
  .footer-demo-7 .footer-subheading {
    font-size: 1.1em;
  }
  
  .footer-demo-7 .footer-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  
  .footer-demo-7 .footer-info-box {
    padding: 16px 20px;
    min-height: 56px;
    gap: 12px;
  }
  
  .footer-demo-7 .footer-info-boxes { grid-template-columns: 1fr; gap: 16px; max-width: 520px; }
  
  .footer-demo-7 .footer-time-details {
    min-width: auto;
    text-align: center;
    gap: 5px;
  }
  
  .footer-demo-7 .footer-time-main {
    font-size: 1em;
  }
  
  .footer-demo-7 .footer-time-break {
    font-size: 0.85em;
  }
  
  .footer-demo-7 .footer-info-icon {
    font-size: 1.5em;
    min-width: 25px;
  }
  
  .footer-demo-7 .footer-logo-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .footer-cta-section {
    padding: 28px 0 12px 0;
    border-radius: 0;
    box-shadow: none;
  }
  .footer-cta-title {
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  .footer-cta-btn {
    font-size: 1em;
    padding: 12px 24px;
    border-radius: 24px;
  }
  .footer-social-section {
    gap: 18px;
    padding: 16px 0 8px 0;
    border-radius: 0;
  }
  .footer-social-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1em;
  }
  .footer-divider-main {
    margin: 1.2em 0 1.2em 0;
  }
  .footer-quicklinks {
  flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-col {
    min-width: 0;
  }
}

/* --- Impact Section Graphics --- */
.impact-section {
  padding: 4rem 0;
  margin: 0;
}
.impact-section .section-title {
  text-align: center;
  font-family: var(--font-family-heading);
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.impact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.impact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #181c5a11;
  padding: 38px 32px 28px 32px;
  min-width: 180px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.impact-card:hover {
  box-shadow: 0 4px 32px rgba(16,185,129,0.2);
  transform: translateY(-4px) scale(1.04);
}
.impact-number {
  font-size: 3.5em;
  font-family: var(--font-family-heading);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  letter-spacing: -0.02em;
}
.impact-card .fa-truck {
  font-size: 2.2em;
  color: var(--primary-blue);
  margin-bottom: 0;
}
.impact-label {
  font-size: 1.1em;
  color: var(--text-light);
  font-family: var(--font-family-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .impact-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .impact-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .impact-section .section-title {
    margin-bottom: 18px;
  }
  .impact-number {
    font-size: 1.5em;
  }
  .impact-label {
    font-size: 0.98em;
  }
}

/* --- Our Impact section: text only blue or white --- */
.impact-section, .impact-section .section-title {
  color: var(--primary-blue) !important;
}
.impact-label, .impact-card {
  color: var(--primary-blue) !important;
}
.impact-number {
  color: var(--primary-blue) !important;
}
.impact-card .fa-truck {
  color: var(--primary-blue) !important;
}
@media (max-width: 900px) {
  .impact-label, .impact-card, .impact-number {
    color: var(--primary-blue) !important;
  }
}

/* --- Footer: text only blue or white --- */
.footer-main, .footer-cta-section, .footer-social-section { background: var(--primary-blue) !important; color: var(--text-light) !important; }
.footer-bottom { background: transparent !important; color: var(--text-dark) !important; }
.footer-cta-title, .footer-cta-btn {
  color: var(--text-light) !important;
}
.footer-cta-btn {
  background: var(--primary-green);
}
.footer-cta-btn:hover, .footer-cta-btn:focus {
  background: var(--primary-blue);
  color: var(--text-light) !important;
}
.footer-social-icon {
  color: var(--text-light) !important;
  background: var(--primary-blue);
}
.footer-social-icon:hover, .footer-social-icon:focus {
  background: var(--primary-green);
  color: var(--text-light) !important;
}
.footer-divider-main {
  border-top: 2px solid var(--primary-green);
}
.footer-quicklinks, .footer-col, .footer-accordion-toggle, .footer-accordion-list, .footer-link-icon {
  color: var(--text-light) !important;
}
.footer-accordion-toggle {
  color: var(--primary-green) !important;
}
.footer-link-icon {
  color: var(--primary-green) !important;
}
.footer-accordion-list a {
  color: var(--text-light) !important;
}

@media (min-width: 901px) {
  .mobile-drawer, .drawer-overlay {
    display: none !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
}

/* --- Modernized, Balanced Color Scheme --- */

/* Old hero styles removed - replaced with new hero structure */
/* Old hero styles removed - replaced with new hero structure */

/* Content Sections: cream or white backgrounds */
.section.bg-cream, .product-slideshow-section, .locations-section {
  background: var(--accent-cream);
  color: var(--primary-blue);
}
.section.bg-white {
    background: #fff;
  color: var(--primary-blue);
}

/* Remove black section backgrounds */
.section.bg-black {
  background: var(--primary-blue);
  color: var(--text-light);
}

/* Impact Section: blue to cream gradient, blue text */
.impact-section {
  background: linear-gradient(120deg, var(--primary-blue) 60%, var(--accent-cream) 100%);
  color: var(--primary-blue);
}
.impact-card, .impact-label, .impact-number {
  background: #fff;
  color: var(--primary-blue) !important;
}
.impact-card .fa-truck {
  color: var(--primary-blue) !important;
}

/* Footer: blue background, white text */
.footer-main, .footer-cta-section, .footer-social-section, .footer-bottom {
  color: var(--text-light) !important;
}
.footer-cta-title, .footer-cta-btn {
  color: var(--text-light) !important;
}
.footer-cta-btn {
  background: var(--primary-green);
}
.footer-cta-btn:hover, .footer-cta-btn:focus {
  background: var(--primary-blue);
  color: var(--text-light) !important;
}
.footer-social-icon {
  color: var(--text-light) !important;
  background: var(--primary-blue);
}
.footer-social-icon:hover, .footer-social-icon:focus {
  background: var(--primary-green);
  color: var(--text-light) !important;
}
.footer-divider-main {
  border-top: 2px solid var(--primary-green);
}
.footer-quicklinks, .footer-col, .footer-accordion-toggle, .footer-accordion-list, .footer-link-icon {
  color: var(--text-light) !important;
}
.footer-accordion-toggle {
  color: var(--primary-green) !important;
}
.footer-link-icon {
  color: var(--primary-green) !important;
}
.footer-accordion-list a {
  color: var(--text-light) !important;
}

/* Remove harsh black/white alternation */
.section-separator svg {
  /* Use blue or cream for separators, not black */
  fill: var(--primary-blue);
}

/* Buttons & Accents */
.btn, .cta-btn {
  background: var(--primary-green);
  color: var(--text-light);
}
.btn:hover, .cta-btn:hover {
  background: var(--primary-blue);
  color: var(--text-light);
}

/* Headings and links: blue */
h1, h2, h3, h4, h5, h6, a, .section-title {
  color: var(--primary-blue);
}

/* Responsive: ensure all text is blue or white on mobile */
@media (max-width: 900px) {
  .impact-label, .impact-card, .impact-number {
    color: var(--primary-blue) !important;
  }
  .footer-main, .footer-cta-section, .footer-social-section, .footer-bottom {
    color: var(--text-light) !important;
    background: var(--primary-blue) !important;
  }
}

/* --- Rounded Edges for Sections and Cards --- */
.section, .product-slideshow-section, .services-section, .impact-section, .locations-section, .footer-main, .container {
  border-radius: 32px;
}
.impact-card, .service-card {
  border-radius: 24px;
}
@media (max-width: 900px) {
  .section, .product-slideshow-section, .services-section, .impact-section, .locations-section, .footer-main, .container {
    border-radius: 14px;
  }
  .impact-card, .service-card {
    border-radius: 10px;
  }
}

/* --- Wavy Pattern for Section Separators --- */
.section-separator svg {
  display: block;
  width: 100%;
  height: 100%;
}
.section-separator svg path {
  /* Wavy pattern: gentle sine wave */
  d: path('M0,30 Q360,60 720,30 T1440,30 L1440,60 L0,60 Z');
  /* fallback for browsers that don't support d property */
}
/* For browsers that don't support d property, use the SVG below in HTML:
<svg viewBox="0 0 1440 60" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,30 Q360,60 720,30 T1440,30 L1440,60 L0,60 Z" fill="currentColor"/></svg>
*/

@media (max-width: 900px) {
  .mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-blue);
    box-shadow: -8px 0 32px #181c5a22;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.77,0,.18,1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overscroll-behavior: contain;
    border-radius: 0;
  }
  .drawer-container {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .mobile-drawer.open {
    transform: translateX(0);
  }
  .drawer-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,28,90,0.28);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
  .drawer-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.2rem;
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
    cursor: pointer;
    padding: 0;
    line-height: 1;
  }
  .drawer-list {
    list-style: none;
    margin: 0;
    padding: 80px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-items: flex-start;
    width: 100%;
  }
  .drawer-link, .drawer-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 22px 32px;
    font-size: 1.18rem;
    color: var(--text-light);
    background: none;
    border: none;
    text-align: left;
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: 0.01em;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
  }
  .drawer-link:active, .drawer-link:hover, .drawer-dropdown-toggle:active, .drawer-dropdown-toggle:hover {
    background: var(--primary-green);
    color: var(--text-light);
  }
  .drawer-dropdown {
    width: 100%;
  }
  .drawer-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
    font-size: 1.18rem;
    font-weight: 800;
    padding: 22px 32px;
  }
  .drawer-dropdown-menu {
    display: none;
    flex-direction: column;
    background: var(--primary-blue);
    padding: 0 0 0 24px;
    border-left: 3px solid var(--primary-green);
    margin: 0;
    gap: 0;
  }
  .drawer-dropdown.open > .drawer-dropdown-menu {
    display: flex;
  }
  .drawer-dropdown-menu li a {
    padding: 16px 24px 16px 0;
    font-size: 1.08rem;
    color: var(--text-light);
    border-radius: 0;
    background: none;
    transition: background 0.2s, color 0.2s;
    white-space: normal;
    word-break: break-word;
    font-weight: 600;
  }
  .drawer-dropdown-menu li a:active, .drawer-dropdown-menu li a:hover {
    background: var(--primary-green);
    color: var(--text-light);
  }
  /* Hide old nav-list on mobile when drawer is open */
  .mobile-drawer.open ~ .container .nav-list,
  .mobile-drawer.open ~ .container .hamburger {
    display: none !important;
  }
  .drawer-list {
    gap: 2.5em;
  }
  .drawer-link, .drawer-dropdown-toggle {
    margin-bottom: 0.7em;
  }
  .drawer-dropdown-menu li a {
    margin-bottom: 0.7em;
  }
  .drawer-dropdown-menu li:last-child a {
  margin-bottom: 0;
}
  .drawer-dropdown-menu {
    gap: 1.2em;
  }
  .drawer-dropdown-menu li {
    margin-bottom: 1.2em;
  }
  .drawer-dropdown-menu li:last-child {
    margin-bottom: 0;
  }
}


/* Old hero styles removed - replaced with new hero structure */

/* --- Section titles and descriptions: blue by default --- */
.section-title,
h2,
.section-desc,
.section-intro {
  color: var(--primary-blue) !important;
}
/* Old hero styles removed - replaced with new hero structure */

@media (max-width: 900px) {
  .section-title,
  h2,
  .section-desc,
  .section-intro {
    color: var(--primary-blue) !important;
  }
  /* Old hero styles removed - replaced with new hero structure */
}


/* Old hero styles removed - replaced with new hero structure */

@media (max-width: 900px) {
  .services-section {
    padding: 18px 0 10px 0;
    border-radius: 10px;
    font-size: 1rem;
  }
}

@media (min-width: 1101px) {
    display: flex !important;
  }
  .hamburger {
    display: none !important;
  }
  .logo img {
    height: 80px;
    width: 160px;
    object-fit: contain;
  }
}

@media (max-width: 900px) {
  .impact-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .impact-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  /* For all card-like boxes */
  .testimonial-bg, .info-card, .about-testimonial, .product-slideshow-section, .slide-img-wrapper {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
  }
  /* For the quote/testimonial box specifically */
  .testimonial-bg, .info-card, .about-testimonial {
    margin-top: 16px;
    margin-bottom: 16px;
    background: #fff;
    border-left: 4px solid var(--primary-blue);
    padding: 16px 12px;
  }
  /* For the product card slider */
  .slide-img-wrapper {
    padding: 0 10px;
  }
}

/* New Hero Section Styles (Option 8) */
.hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  color: #333;
  padding-right: 40px;
}

.hero-brand {
  font-size: 1.1em;
  font-weight: 600;
  color: #181c5a;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-brand span {
  color: #10b981;
}

.hero-headline {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  background: linear-gradient(135deg, #3B6BC7 0%, #10b981 50%, #3B6BC7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #666;
  line-height: 1.7;
  max-width: 550px;
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0 18px 0;
}
.hero-logos .hero-logo {
  display: block;
  width: auto;
  height: 80px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
@media (max-width: 900px) {
  .hero-logos .hero-logo {
    width: auto;
    height: 70px;
    padding: 0;
    border-radius: 0;
  }
}

.hero-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.hero-cta {
  background: #10b981;
  color: white;
  padding: 20px 45px;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

.hero-cta:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.4);
}

.start-project {
  transition: all 0.3s ease;
}

.start-project:hover {
  background: #10b981 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.4);
}

.hero-right {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-hexagon {
  position: relative;
  width: 450px;
  height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 25px;
}

.hero-hex-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid rgba(255,255,255,0.8);
  margin: 5px;
}

.hero-hex-item:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border-color: #10b981;
}

.hero-hex-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-hex-item:hover img {
  transform: scale(1.1);
}

.hero-hex-item.central {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  z-index: 5;
}

.hero-hex-item.top-left {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  z-index: 4;
}

.hero-hex-item.top-right {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  z-index: 4;
}

.hero-hex-item.bottom-left {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  z-index: 4;
  /* Remove any transform or scaling */
}

.hero-hex-item.bottom-right {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  z-index: 4;
}

.hero-hex-item:nth-child(3) {
  /* Remove transform and scaling for focal point */
  transform: none !important;
  z-index: 4 !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

/* Make the third item (bottom-left) larger as focal point */
.hero-hex-item:nth-child(3) {
  transform: scale(1.1);
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-hex-item:nth-child(3):hover {
  transform: scale(1.15);
  z-index: 10;
}

/* Hero overlay styles removed - no longer needed since text overlays were removed */

/* Old responsive adjustments removed - replaced with comprehensive mobile optimizations */

/* Enhanced Section Separators and Visual Improvements */

/* Modern Wave Separators */
.section-separator {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin: 0;
}

.section-separator.top {
  margin-bottom: -1px;
}

.section-separator.bottom {
  margin-top: -1px;
}

.section-separator svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Enhanced section backgrounds and spacing */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1px 0 32px 0;
}

.product-slideshow-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.product-slideshow-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.services-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
}

.impact-section {
  background: linear-gradient(120deg, var(--primary-blue) 60%, var(--accent-cream) 100%);
  padding: 100px 0;
  position: relative;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

.locations-section {
  background: var(--accent-cream);
  padding: 100px 0;
  position: relative;
}

.locations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d1d5db 50%, transparent 100%);
}

/* Enhanced container spacing */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Improved section titles with better spacing */
.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, #3B6BC7 0%, #10b981 50%, #3B6BC7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3B6BC7 0%, #10b981 100%);
  border-radius: 2px;
}

.section-intro {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

/* Hero typography defaults to match Offset page across all pages */
.optimized-hero .section-title {
  font-size: 2.5em;
  letter-spacing: 0.02em;
}

.optimized-hero .hero-desc {
  font-size: 1.15em;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Enhanced card shadows and spacing */
.product-card, .service-card, .impact-card {
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-card:hover, .service-card:hover, .impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Grid spacing improvements */
.products-grid, .services-grid {
  gap: 30px;
  margin-top: 40px;
}

.impact-grid {
  gap: 25px;
  margin-top: 40px;
}

/* Old responsive adjustments removed - replaced with comprehensive mobile optimizations */

/* Mobile Hero Section Optimizations */

@media (max-width: 768px) {
  /* Reduced section spacing for mobile */
  .hero {
    padding: 60px 0 40px 0;
  }
  
  .product-slideshow-section {
    padding: 60px 0;
  }
  
  .services-section {
    padding: 60px 0;
  }
  
  .impact-section {
    padding: 60px 0;
  }
  
  .locations-section {
    padding: 60px 0;
  }
  
  /* Reduced section separator height */
  .section-separator {
    height: 40px;
  }
  
  /* Reduced container padding */
  .container {
    padding: 0 20px;
  }
  
  /* Reduced section title spacing */
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .section-title::after {
    width: 60px;
    height: 3px;
    bottom: -8px;
  }
  
  /* Reduced section intro spacing */
  .section-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  /* Reduced grid spacing */
  .products-grid, .services-grid {
    gap: 20px;
    margin-top: 30px;
  }
  
  .impact-grid {
    gap: 15px;
    margin-top: 30px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-left {
    padding-right: 0;
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .hero-brand {
    font-size: 0.9em;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .hero-headline {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-logos {
    justify-content: center;
    gap: 2rem;
    margin-bottom: 25px;
  }

  .hero-logo {
    height: 70px;
  }

  .hero-cta {
    padding: 16px 35px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  /* Mobile Hexagon Layout */
  .hero-hexagon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-hex-item {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    margin: 0;
  }

  .hero-hex-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Reposition hex items for mobile */
  .hero-hex-item.top-left {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-hex-item.top-right {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-hex-item.central {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 140px;
  }

  .hero-hex-item.bottom-left {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-hex-item.bottom-right {
    grid-column: 2;
    grid-row: 3;
  }

  /* Remove focal point scaling on mobile */
  .hero-hex-item:nth-child(3) {
    transform: none;
  }

  .hero-hex-item:nth-child(3):hover {
    transform: scale(1.02);
  }

  /* Reduce hover effects for better mobile performance */
  .hero-hex-item:hover {
    transform: scale(1.02);
  }

  .hero-hex-item:hover img {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  /* Further reduced section spacing for small mobile */
  .hero {
    padding: 40px 0 30px 0;
  }
  
  .product-slideshow-section {
    padding: 40px 0;
  }
  
  .services-section {
    padding: 40px 0;
  }
  
  .impact-section {
    padding: 40px 0;
  }
  
  .locations-section {
    padding: 40px 0;
  }
  
  /* Further reduced section separator height */
  .section-separator {
    height: 30px;
  }
  
  /* Further reduced container padding */
  .container {
    padding: 0 15px;
  }
  
  /* Further reduced section title spacing */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .section-title::after {
    width: 50px;
    height: 2px;
    bottom: -6px;
  }
  
  /* Further reduced section intro spacing */
  .section-intro {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  /* Further reduced grid spacing */
  .products-grid, .services-grid {
    gap: 15px;
    margin-top: 25px;
  }
  
  .impact-grid {
    gap: 12px;
    margin-top: 25px;
  }

  .hero-container {
    padding: 30px 15px;
    gap: 25px;
  }

  .hero-brand {
    font-size: 0.8em;
    margin-bottom: 15px;
  }

  .hero-headline {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .hero-logos {
    gap: 1.5rem;
    margin-bottom: 20px;
  }

  .hero-logo {
    height: 60px;
  }

  .hero-cta {
    padding: 14px 30px;
    font-size: 0.95rem;
    max-width: 250px;
  }

  /* Smaller hexagon layout for very small screens */
  .hero-hexagon {
    gap: 12px;
    max-width: 350px;
  }

  .hero-hex-item {
    height: 100px;
  }

  .hero-hex-item.central {
    height: 120px;
  }
}

@media (max-width: 360px) {
  /* Minimal section spacing for very small mobile */
  .hero {
    padding: 30px 0 20px 0;
  }
  
  .product-slideshow-section {
    padding: 30px 0;
  }
  
  .services-section {
    padding: 30px 0;
  }
  
  .impact-section {
    padding: 30px 0;
  }
  
  .locations-section {
    padding: 30px 0;
  }
  
  /* Minimal section separator height */
  .section-separator {
    height: 20px;
  }
  
  /* Minimal container padding */
  .container {
    padding: 0 10px;
  }
  
  /* Minimal section title spacing */
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .section-title::after {
    width: 40px;
    height: 2px;
    bottom: -5px;
  }
  
  /* Minimal section intro spacing */
  .section-intro {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  /* Minimal grid spacing */
  .products-grid, .services-grid {
    gap: 12px;
    margin-top: 20px;
  }
  
  .impact-grid {
    gap: 10px;
    margin-top: 20px;
  }

  .hero-container {
    padding: 25px 10px;
    gap: 20px;
  }

  .hero-headline {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-logos {
    gap: 0.8rem;
  }

  .hero-logo {
    height: 40px;
  }

  .hero-cta {
    padding: 12px 25px;
    font-size: 0.9rem;
    max-width: 220px;
  }

  .hero-hexagon {
    gap: 10px;
    max-width: 300px;
  }

  .hero-hex-item {
    height: 90px;
  }

  .hero-hex-item.central {
    height: 110px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .hero-hex-item:hover {
    transform: none;
  }

  .hero-hex-item:hover img {
    transform: none;
  }

  .hero-logo:hover {
    transform: none;
  }

  .hero-cta:hover {
    transform: none;
  }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-container {
    padding: 30px 20px;
    gap: 20px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-hexagon {
    max-width: 300px;
  }

  .hero-hex-item {
    height: 100px;
  }

  .hero-hex-item.central {
    height: 120px;
  }
}

/* ENHANCED MOBILE SPACING & SECTION DIVIDERS - ALL PAGES */
@media (max-width: 768px) {
  /* Enhanced Section Separators for Mobile */
  .section-separator {
    height: 40px !important;
    margin: 0 !important;
  }
  
  .section-separator svg {
    height: 40px !important;
  }
  
  /* Global Container & Spacing Fixes */
  .container {
    padding: 0 20px;
    max-width: 100%;
  }
  
  /* Enhanced Section Spacing - Based on Index Page */
  .hero, .service-hero {
    padding: 60px 0 40px 0 !important;
    position: relative !important;
  }
  
  .hero-content, .service-hero .hero-content {
    padding: 0 15px !important;
    gap: 25px !important;
    text-align: center !important;
  }
  
  .section-title, .service-hero .section-title {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    position: relative !important;
  }
  
  .section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: var(--primary-green) !important;
    border-radius: 2px !important;
  }
  
  .hero-desc, .service-hero .hero-desc {
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    line-height: 1.6 !important;
  }
  
  .hero-cta, .service-hero .hero-cta {
    font-size: 1rem !important;
    padding: 15px 30px !important;
    display: inline-block !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
  }
  
  /* Content Sections - All Pages with Enhanced Spacing */
  .content, .about, .contact {
    padding: 60px 0 !important;
    position: relative !important;
  }
  
  .content .container, .about .container, .contact .container {
    padding: 0 20px;
  }
  
  .content .section-title, .about h3, .contact h3 {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  
  .content .section-intro, .about p, .contact p {
    font-size: 1rem !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    line-height: 1.6 !important;
  }
  
  /* About Page Specific with Enhanced Spacing */
  .about-content {
    gap: 30px !important;
    margin-top: 25px !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .about-text {
    text-align: center !important;
    margin-bottom: 25px !important;
  }
  
  .about-text h3 {
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
    text-align: center !important;
  }
  
  .about-text p {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
    text-align: left !important;
    line-height: 1.6 !important;
  }
  
  .about-services-list, .about-why-list {
    font-size: 1rem !important;
    margin-bottom: 25px !important;
    text-align: left !important;
    padding-left: 20px !important;
  }
  
  .about-services-list li, .about-why-list li {
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
  }
  
  .about-testimonials {
    margin: 30px 0 !important;
  }
  
  .about-testimonial {
    font-size: 1rem !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(10px) !important;
  }
  
  .about-images {
    gap: 20px !important;
    justify-content: center !important;
    flex-direction: row !important;
    margin: 25px 0 !important;
  }
  
  .about-images img {
    max-width: 220px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  }
  
  .about-qr-social {
    margin: 30px 0 0 0 !important;
    text-align: center !important;
    padding: 20px !important;
    background: rgba(255,255,255,0.6) !important;
    border-radius: 12px !important;
  }
  
  .about-qr-social img {
    height: 90px !important;
    width: 90px !important;
    border-radius: 8px !important;
    margin: 0 10px !important;
  }
  
  /* Contact Page Specific with Enhanced Spacing */
  .contact-forms-wrapper {
    gap: 30px !important;
    flex-direction: column !important;
  }
  
  .contact-form-block {
    padding: 25px !important;
    text-align: center !important;
    background: rgba(255,255,255,0.8) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  }
  
  .contact-logo {
    height: 70px !important;
    margin-bottom: 20px !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .contact-form {
    text-align: left !important;
  }
  
  .contact-form label {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    text-align: left !important;
    font-weight: 600 !important;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 12px !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    border-radius: 8px !important;
    border: 2px solid #e2e8f0 !important;
  }
  
  .contact-form button {
    font-size: 1rem !important;
    padding: 15px 25px !important;
    width: 100% !important;
    text-align: center !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
  }
  
  .contact-info {
    margin-top: 25px !important;
    text-align: center !important;
    padding: 20px !important;
    background: rgba(255,255,255,0.6) !important;
    border-radius: 12px !important;
  }
  
  .contact-info p {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }
  
  .contact-map iframe {
    height: 200px !important;
    margin-top: 15px !important;
    width: 100% !important;
    border-radius: 8px !important;
  }
  
  .directions-btn {
    font-size: 0.9rem !important;
    padding: 10px 18px !important;
    margin-top: 10px !important;
    display: inline-block !important;
    border-radius: 20px !important;
  }
  
  /* Enhanced Services Grid */
  .services-grid {
    gap: 25px !important;
    margin-top: 30px !important;
    grid-template-columns: 1fr !important;
  }
  
  .service-card {
    padding: 25px 20px !important;
    text-align: center !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
  }
  
  .service-card:hover {
    transform: translateY(-5px) !important;
  }
  
  .service-card i {
    font-size: 2em !important;
    margin-bottom: 10px !important;
    color: var(--primary-green) !important;
  }
  
  .service-card h4 {
    font-size: 1.2em !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
  }
  
  .service-card p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  
  /* Enhanced Form Messages */
  .contact-form, .contact-form-block {
    margin-bottom: 25px !important;
  }
  
  .success, .error {
    font-size: 1rem !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    border-radius: 8px !important;
  }
  
  /* Enhanced Hero Alignment */
  .hero-container {
    text-align: center !important;
    gap: 30px !important;
  }
  
  .hero-left {
    text-align: center !important;
    padding: 0 15px !important;
  }
  
  .hero-logos {
    justify-content: center !important;
    gap: 20px !important;
    margin: 25px 0 !important;
  }
  
  .hero-logo {
    height: 60px !important;
    border-radius: 8px !important;
  }
  
  .hero-cta {
    margin: 0 auto !important;
    display: inline-block !important;
  }
  
  /* Enhanced Section Backgrounds */
  .hero, .service-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
  }
  
  .content, .about, .contact {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  }
  
  /* Enhanced Card Spacing */
  .product-card, .service-card, .impact-card {
    margin-bottom: 20px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  
  /* Enhanced Grid Spacing */
  .products-grid, .services-grid {
    gap: 25px !important;
    margin-top: 30px !important;
  }
  
  .impact-grid {
    gap: 20px !important;
    margin-top: 30px !important;
  }
}

@media (max-width: 480px) {
  /* Enhanced spacing for small mobile */
  .section-separator {
    height: 30px !important;
  }
  
  .section-separator svg {
    height: 30px !important;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .hero, .service-hero {
    padding: 50px 0 30px 0 !important;
  }
  
  .section-title, .service-hero .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 18px !important;
  }
  
  .section-title::after {
    width: 50px !important;
    height: 2px !important;
  }
  
  .hero-desc, .service-hero .hero-desc {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
  }
  
  .hero-cta, .service-hero .hero-cta {
    font-size: 0.95rem !important;
    padding: 12px 25px !important;
  }
  
  .content, .about, .contact {
    padding: 50px 0 !important;
  }
  
  .content .section-title, .about h3, .contact h3 {
    font-size: 1.6rem !important;
    margin-bottom: 18px !important;
  }
  
  .content .section-intro, .about p, .contact p {
    font-size: 0.95rem !important;
    margin-bottom: 22px !important;
  }
  
  .about-content {
    gap: 25px !important;
    margin-top: 20px !important;
  }
  
  .about-text h3 {
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
  }
  
  .about-text p {
    font-size: 0.95rem !important;
    margin-bottom: 18px !important;
  }
  
  .about-services-list, .about-why-list {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
    padding-left: 18px !important;
  }
  
  .about-services-list li, .about-why-list li {
    margin-bottom: 8px !important;
  }
  
  .about-testimonials {
    margin: 25px 0 !important;
  }
  
  .about-testimonial {
    font-size: 0.9rem !important;
    padding: 18px !important;
    margin-bottom: 18px !important;
  }
  
  .about-images {
    gap: 15px !important;
    margin: 20px 0 !important;
  }
  
  .about-images img {
    max-width: 180px !important;
  }
  
  .about-qr-social {
    margin: 25px 0 0 0 !important;
    padding: 18px !important;
  }
  
  .about-qr-social img {
    height: 80px !important;
    width: 80px !important;
  }
  
  .contact-forms-wrapper {
    gap: 25px !important;
  }
  
  .contact-form-block {
    padding: 20px !important;
  }
  
  .contact-logo {
    height: 60px !important;
    margin-bottom: 18px !important;
  }
  
  .contact-form label {
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 10px !important;
    font-size: 0.9rem !important;
    margin-bottom: 18px !important;
  }
  
  .contact-form button {
    font-size: 0.9rem !important;
    padding: 12px 20px !important;
  }
  
  .contact-info {
    margin-top: 20px !important;
    padding: 18px !important;
  }
  
  .contact-info p {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }
  
  .contact-map iframe {
    height: 180px !important;
    margin-top: 12px !important;
  }
  
  .directions-btn {
    font-size: 0.85rem !important;
    padding: 8px 15px !important;
    margin-top: 8px !important;
  }
  
  .services-grid {
    gap: 20px !important;
    margin-top: 25px !important;
  }
  
  .service-card {
    padding: 20px 15px !important;
  }
  
  .service-card i {
    font-size: 1.8em !important;
    margin-bottom: 8px !important;
  }
  
  .service-card h4 {
    font-size: 1.1em !important;
    margin-bottom: 8px !important;
  }
  
  .service-card p {
    font-size: 0.9rem !important;
  }
  
  .contact-form, .contact-form-block {
    margin-bottom: 20px !important;
  }
  
  .success, .error {
    font-size: 0.9rem !important;
    padding: 12px !important;
    margin-bottom: 18px !important;
  }
  
  /* Enhanced card spacing */
  .product-card, .service-card, .impact-card {
    margin-bottom: 18px !important;
  }
  
  .products-grid, .services-grid {
    gap: 20px !important;
    margin-top: 25px !important;
  }
  
  .impact-grid {
    gap: 18px !important;
    margin-top: 25px !important;
  }
  
  /* Business Cards Page Specific Mobile Fixes - 480px */
  .bc-flex {
    flex-direction: column !important;
    gap: 25px !important;
    align-items: stretch !important;
  }
  
  .bc-info {
    flex: none !important;
    min-width: auto !important;
    width: 100% !important;
    order: 1 !important;
  }
  
  .product-slideshow {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  .slide-img-wrapper {
    max-width: 100% !important;
    min-height: 180px !important;
    margin: 0 8px !important;
  }
  
  .slide-img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3 !important;
  }
  
  .slide-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.1em !important;
    margin: 0 6px !important;
  }
  
  .slide-caption {
    font-size: 0.85rem !important;
    margin-top: 8px !important;
    text-align: center !important;
  }
  
  /* Prevent text overlapping */
  .bc-info h3,
  .bc-info h4 {
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
  }
  
  .bc-info ul {
    margin-bottom: 18px !important;
    padding-left: 18px !important;
  }
  
  .bc-info li {
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
  }
  
  .bc-info blockquote {
    margin: 18px 0 !important;
    padding: 12px !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  
  .bc-info p {
    margin-bottom: 12px !important;
    line-height: 1.5 !important;
  }
  
  .bc-info .btn {
    display: inline-block !important;
    margin: 8px 8px 8px 0 !important;
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
  }
}

@media (max-width: 360px) {
  /* Enhanced minimal spacing for very small mobile */
  .section-separator {
    height: 25px !important;
  }
  
  .section-separator svg {
    height: 25px !important;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .hero, .service-hero {
    padding: 40px 0 25px 0 !important;
  }
  
  .section-title, .service-hero .section-title {
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
  }
  
  .section-title::after {
    width: 40px !important;
    height: 2px !important;
  }
  
  .hero-desc, .service-hero .hero-desc {
    font-size: 0.9rem !important;
    margin-bottom: 18px !important;
  }
  
  .hero-cta, .service-hero .hero-cta {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
  }
  
  .content, .about, .contact {
    padding: 40px 0 !important;
  }
  
  .content .section-title, .about h3, .contact h3 {
    font-size: 1.4rem !important;
    margin-bottom: 15px !important;
  }
  
  .content .section-intro, .about p, .contact p {
    font-size: 0.9rem !important;
    margin-bottom: 18px !important;
  }
  
  .about-content {
    gap: 20px !important;
    margin-top: 15px !important;
  }
  
  .about-text h3 {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
  }
  
  .about-text p {
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
  }
  
  .about-services-list, .about-why-list {
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
    padding-left: 15px !important;
  }
  
  .about-services-list li, .about-why-list li {
    margin-bottom: 6px !important;
  }
  
  .about-testimonials {
    margin: 20px 0 !important;
  }
  
  .about-testimonial {
    font-size: 0.85rem !important;
    padding: 15px !important;
    margin-bottom: 15px !important;
  }
  
  .about-images {
    gap: 12px !important;
    margin: 15px 0 !important;
  }
  
  .about-images img {
    max-width: 150px !important;
  }
  
  .about-qr-social {
    margin: 20px 0 0 0 !important;
    padding: 15px !important;
  }
  
  .about-qr-social img {
    height: 70px !important;
    width: 70px !important;
  }
  
  .contact-forms-wrapper {
    gap: 20px !important;
  }
  
  .contact-form-block {
    padding: 15px !important;
  }
  
  .contact-logo {
    height: 50px !important;
    margin-bottom: 15px !important;
  }
  
  .contact-form label {
    font-size: 0.85rem !important;
    margin-bottom: 5px !important;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 8px !important;
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
  }
  
  .contact-form button {
    font-size: 0.85rem !important;
    padding: 10px 18px !important;
  }
  
  .contact-info {
    margin-top: 15px !important;
    padding: 15px !important;
  }
  
  .contact-info p {
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
  }
  
  .contact-map iframe {
    height: 150px !important;
    margin-top: 10px !important;
  }
  
  .directions-btn {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    margin-top: 6px !important;
  }
  
  .services-grid {
    gap: 15px !important;
    margin-top: 20px !important;
  }
  
  .service-card {
    padding: 15px 12px !important;
  }
  
  .service-card i {
    font-size: 1.6em !important;
    margin-bottom: 6px !important;
  }
  
  .service-card h4 {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }
  
  .service-card p {
    font-size: 0.85rem !important;
  }
  
  .contact-form, .contact-form-block {
    margin-bottom: 15px !important;
  }
  
  .success, .error {
    font-size: 0.85rem !important;
    padding: 10px !important;
    margin-bottom: 15px !important;
  }
  
  /* Enhanced card spacing */
  .product-card, .service-card, .impact-card {
    margin-bottom: 15px !important;
  }
  
  .products-grid, .services-grid {
    gap: 15px !important;
    margin-top: 20px !important;
  }
  
  .impact-grid {
    gap: 15px !important;
    margin-top: 20px !important;
  }
  
  /* Business Cards Page Specific Mobile Fixes */
  .bc-flex {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: stretch !important;
  }
  
  .bc-info {
    flex: none !important;
    min-width: auto !important;
    width: 100% !important;
    order: 1 !important;
  }
  
  .product-slideshow {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  
  .slide-img-wrapper {
    max-width: 100% !important;
    min-height: 200px !important;
    margin: 0 10px !important;
  }
  
  .slide-img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3 !important;
  }
  
  .slide-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2em !important;
    margin: 0 8px !important;
  }
  
  .slide-caption {
    font-size: 0.9rem !important;
    margin-top: 10px !important;
    text-align: center !important;
  }
  
  /* Prevent text overlapping */
  .bc-info h3,
  .bc-info h4 {
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
  }
  
  .bc-info ul {
    margin-bottom: 20px !important;
    padding-left: 20px !important;
  }
  
  .bc-info li {
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
  }
  
  .bc-info blockquote {
    margin: 20px 0 !important;
    padding: 15px !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
  
  .bc-info p {
    margin-bottom: 15px !important;
    line-height: 1.5 !important;
  }
  
  .bc-info .btn {
    display: inline-block !important;
    margin: 10px 10px 10px 0 !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
  
  /* Additional overflow protection for business cards page */
  .content {
    overflow-x: hidden !important;
  }
  
  .bc-flex {
    overflow: hidden !important;
  }
  
  .product-slideshow {
    overflow: hidden !important;
  }
  
  .slide-img-wrapper {
    overflow: hidden !important;
  }
  
  .slide-figure {
    overflow: hidden !important;
  }
}

/* ================= Mobile Optimizations: Hero ================= */
@media (max-width: 700px) {
  .optimized-hero { 
    padding: 32px 0 16px 0 !important; 
    border-radius: 0 0 18px 18px !important; 
  }
  .optimized-hero .hero-content { 
    flex-direction: column !important; 
    gap: 16px !important; 
    padding: 0 16px !important; 
    max-width: 100% !important;
  }
  .optimized-hero .section-title { 
    font-size: 1.8em !important; 
    line-height: 1.2 !important; 
    text-align: center !important;
  }
  .optimized-hero .hero-desc { 
    font-size: 1em !important; 
    line-height: 1.6 !important; 
    max-width: 100% !important; 
    padding: 0 !important; 
    text-align: center !important;
  }
}
@media (max-width: 380px) {
  .optimized-hero .section-title { font-size: 1.6em !important; }
  .optimized-hero .hero-desc { font-size: 0.95em !important; }
}

/* Fix mobile hero overflow/cutoff */
@media (max-width: 700px) {
	.hero { overflow: hidden; }
	.hero-container { padding: 20px 12px !important; box-sizing: border-box; }
	.hero-right { height: auto !important; overflow: visible !important; }
	.hero-hexagon { width: 100% !important; max-width: 320px !important; margin: 0 auto !important; height: auto !important; grid-template-columns: 1fr 1fr !important; }
	.hero-hex-item { margin: 4px !important; }
}

/* Global overflow safety */
html, body { max-width: 100%; overflow-x: hidden; }

/* Additional mobile/tablet safeguards for hero */
@media (max-width: 900px) {
	.hero-container { grid-template-columns: 1fr !important; padding: 24px 16px !important; margin: 0 auto !important; box-sizing: border-box; }
	.hero-right { width: 100% !important; height: auto !important; overflow: visible !important; }
	.hero-hexagon { width: 100% !important; max-width: 360px !important; height: auto !important; margin: 0 auto !important; }
}

/* Mobile Hero Visual Flow Enhancements */
@media (max-width: 700px) {
  .hero-container { display: flex !important; flex-direction: column !important; gap: 16px !important; padding: 20px 14px !important; }
  .hero-left { order: 1 !important; text-align: center !important; padding: 0 !important; }
  .hero-headline { font-size: clamp(2rem, 7vw, 2.6rem) !important; margin-bottom: 12px !important; }
  .hero-description { font-size: 1rem !important; line-height: 1.6 !important; margin-bottom: 16px !important; }
  .hero-logos { justify-content: center !important; gap: 15px !important; margin-bottom: 15px !important; text-align: center !important; }
  .hero-cta { width: 100% !important; max-width: 320px !important; padding: 14px 20px !important; display: inline-flex !important; justify-content: center !important; }
  .hero-right { order: 2 !important; width: 100% !important; height: auto !important; }
  .hero-hexagon { width: 100% !important; max-width: 340px !important; margin: 8px auto 0 !important; height: auto !important; grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; gap: 12px !important; }
  .hero-hex-item { height: 120px !important; border-radius: 14px !important; margin: 4px !important; }
  .hero-hex-item.central { grid-column: 1 / 3 !important; height: 150px !important; }
}
@media (max-width: 380px) {
  .hero-headline { font-size: clamp(1.6rem, 7vw, 2rem) !important; }
  .hero-hex-item { height: 100px !important; }
  .hero-hex-item.central { height: 130px !important; }
}

/* Mobile Hero text + logos refinement */
@media (max-width: 700px) {
  .hero-brand { 
    font-size: 0.9em !important; 
    letter-spacing: 1px !important; 
    margin-bottom: 6px !important; 
    text-align: center !important;
  }
  .hero-headline { 
    font-size: clamp(1.8rem, 6.5vw, 2.2rem) !important; 
    line-height: 1.15 !important; 
    margin-bottom: 10px !important; 
    word-break: break-word !important;
  }
  .hero-description { 
    font-size: 0.98rem !important; 
    line-height: 1.6 !important; 
    margin: 0 auto 12px auto !important; 
    max-width: 100% !important; 
    padding: 0 2px !important;
  }
  .hero-logos { 
    gap: 15px !important; 
    margin: 12px auto 15px auto !important; 
    flex-wrap: wrap !important; 
    justify-content: center !important; 
    width: 100% !important;
    text-align: center !important;
  }
  .hero-logo { 
    height: 50px !important; 
    max-width: 45% !important; 
    width: auto !important; 
    object-fit: contain !important; 
  }
}

/* --- Mobile Contact FAB --- */
.fab-container { position: fixed; right: 16px; bottom: 16px; z-index: 2500; display: flex; flex-direction: column; gap: 10px; }
.fab-btn {
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1.5px 4px rgba(0,0,0,0.12);
  cursor: pointer;
  text-decoration: none;
  font-size: 1.5rem;
  background: var(--primary-green);
  padding: 0; /* No internal padding, icon is centered by flex */
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  outline: none;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
}
.fab-btn:focus {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
}
.fab-btn:active {
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transform: scale(0.96);
}
.fab-btn:hover {
  background: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(16,185,129,0.22);
}
.fab-btn i, .fab-btn svg {
  font-size: 24px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Optional FAB size utilities */
.fab-btn--sm {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  font-size: 1.1rem;
}
.fab-btn--lg {
  width: 72px;
  height: 72px;
  box-sizing: border-box;
  font-size: 2rem;
}
@media (max-width: 600px) {
  .fab-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .fab-btn i, .fab-btn svg {
    font-size: 20px;
    width: 20px;
    height: 20px;
  }
}
.fab-btn:link, .fab-btn:visited, .fab-btn:hover, .fab-btn:active { text-decoration: none; }
.fab-whatsapp { background: #25D366; }
.fab-call { background: #3B6BC7; }
.fab-email { background: #f59e0b; }
@media (prefers-reduced-motion: reduce) { .fab-btn { transition: none; } .fab-btn:hover { transform: none; } }
@media (min-width: 901px) { .fab-container { right: 24px; bottom: 24px; } }

/* --- Utility spacing & layout tokens for demo pages --- */
.section-pad-xl { padding: 80px 0 60px 0; }
.section-pad-lg { padding: 60px 0; }
.section-pad-md { padding: 40px 0; }
.text-center { text-align: center; }
.max-w-760 { max-width: 760px; }
.max-w-900 { max-width: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-18 { margin-top: 18px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-28 { gap: 28px; }
.grid { display: grid; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-center { justify-content: center; align-items: center; }
.flex { display: flex; }
.flex-center { justify-content: center; align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* Cards & shadows */
.card { background: #fff; border-radius: 16px; box-shadow: 0 4px 16px #181c5a11; }
.card-bordered { border: 2px solid transparent; }
.card-pad-lg { padding: 24px; }
.card-pad-md { padding: 24px 16px; }
.shadow-hover:hover { box-shadow: 0 12px 28px rgba(0,0,0,.22); transform: translateY(-2px); }

/* Logo strip */
.logo-strip { display: flex; gap: 28px; justify-content: center; align-items: center; flex-wrap: wrap; }
.logo-muted { height: 56px; filter: grayscale(1); opacity: .8; }
.logo-cover { height: 56px; border-radius: 6px; object-fit: cover; filter: grayscale(1); opacity: .8; }

/* Stats */
.stats-grid { display: grid; gap: 20px; max-width: 1000px; margin: 24px auto 0; }
.stat-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 16px #181c5a11; padding: 24px 16px; text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 900; color: var(--primary-blue); }
.stat-label { font-weight: 600; color: #334155; }

/* Why choose us */
.why-grid { display: grid; gap: 24px; }
.why-title { margin: 0 0 8px 0; color: var(--primary-blue); }
.why-text { margin: 0; color: #475569; }

/* Testimonials */
.testimonials { position: relative; overflow: hidden; border-radius: 16px; box-shadow: 0 4px 16px #181c5a11; background: #fff; }
.testimonial-slides { display: flex; transition: transform .4s ease; }
.testimonial-slide { min-width: 100%; margin: 0; padding: 28px 24px; text-align: center; }
.testimonial-quote { font-size: 1.1rem; line-height: 1.7; color: #334155; margin: 0 auto 10px; max-width: 680px; }
.testimonial-nav { position: absolute; top: 50%; transform: translateY(-50%); background: var(--primary-blue); color: #fff; border: none; border-radius: 50%; width: 40px; height: 40px; cursor: pointer; }
.testimonial-prev { left: 8px; }
.testimonial-next { right: 8px; }

/* FAQ */
.faq details { background: #fff; border-radius: 12px; box-shadow: 0 2px 10px #181c5a0d; padding: 14px 16px; margin: 10px 0; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--primary-blue); }
.faq p { color: #334155; margin: 10px 0 0 0; }

/* Buttons */
.btn-secondary { background: var(--primary-blue); color: #fff; padding: 14px 22px; border-radius: 10px; text-decoration: none; display: inline-block; }
.btn-secondary:hover { background: #2e56a2; }

/* Responsive */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .section-pad-xl { padding: 60px 0 40px 0; }
  .section-pad-lg { padding: 40px 0; }
}

.btn, .fab-btn, .directions-btn, .cta-btn {
  font-family: var(--font-family-body) !important;
  font-size: var(--font-size-base) !important;
  font-weight: var(--font-weight-semibold) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.2 !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  height: auto;
  min-height: 44px;
  padding-top: var(--spacing-3);
  padding-bottom: var(--spacing-3);
}


/* ------------------- */
/* Contact Page Styles */
/* ------------------- */
.contact {
  padding: 60px 0;
}

.contact-forms-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  margin-bottom: 2em;
  flex-wrap: nowrap;
}

.contact-form-block {
  flex: 1 1 520px;
  min-width: 320px;
  max-width: 650px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #181c5a11;
  padding: 40px 40px 28px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
  border: 3px solid transparent;
  transition: border-color 0.2s;
}

.contact-form-block-pen { border-color: var(--primary-blue) !important; }
.contact-form-block-metro { border-color: var(--primary-green) !important; }

.contact-logo {
  max-width: 239px;
  height: 119px;
  object-fit: contain;
  margin-bottom: 32px;
  display: block;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1.15em;
}

.contact-form input,
.contact-form textarea {
  border: 1.5px solid #b0b0b0;
  border-radius: 8px;
  padding: 14px 12px;
  font-size: 1.08em;
  width: 100%;
  box-sizing: border-box;
}

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

.contact-form button {
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 180px;
  margin-top: 18px;
  margin-bottom: 0;
  justify-content: flex-start;
}

.contact-info p { margin: 0 0 6px 0; font-size: 1.05em; }

.contact-map { width: 100%; margin-top: 16px; }
.contact-map iframe { width: 100%; height: 220px; border: 0; border-radius: 12px; display: block; }
.contact-map .btn { margin-top: 12px; display: inline-block; }

.contact-qr-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 0 0;
}

.contact-qr-social .qr-pair {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 12px;
}

.contact-qr-social .qr-item { display: flex; flex-direction: column; align-items: center; }

.contact-qr-social img {
  height: 100px; width: 100px; border-radius: 12px; box-shadow: 0 4px 16px #181c5a22; background: #fff; transition: transform 0.2s;
}

.contact-qr-social img:hover { transform: scale(1.08); }

.contact-qr-social .qr-caption { font-size: 1em; font-weight: 600; margin-top: 8px; }

@media (max-width: 800px) {
  .contact-qr-social img { height: 80px !important; width: 80px !important; }
  .contact-qr-social .qr-pair { gap: 20px !important; }
}

@media (max-width: 700px) {
  .contact-qr-social { display: none !important; }
}

@media (max-width: 900px) {
  .contact-forms-wrapper { flex-direction: column; gap: 18px; align-items: stretch; }
  .contact-form-block { max-width: 100%; padding: 18px 6px 12px 6px; border-width: 2.5px; }
  .contact-logo { max-width: 220px; height: 110px; margin-bottom: 18px; }
  .contact-form { max-width: 100%; }
  .contact-info { min-height: unset; margin-top: 12px; }
  .contact-map { margin-top: 10px; }
}

@media (max-width: 900px) {
  .footer-demo-7 .footer-info-boxes {
    grid-template-columns: 1fr !important;
    max-width: 520px !important;
  }
  .footer-demo-7 .footer-info-box {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 900px) {
  /* Ensure hamburger is always visible on mobile */
  .hamburger {
    display: flex !important;
    z-index: 1100; /* above header content */
    margin-left: auto;
    flex-shrink: 0;
  }
  /* Constrain logos so they don't push the hamburger off-screen */
  .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0; /* allow shrinking */
    flex: 0 1 auto;
  }
  .logo img {
    height: 40px !important;
    width: auto;
    object-fit: contain;
    max-width: 44vw; /* combined logos won't exceed viewport */
  }
  /* Tighten container spacing on mobile */
  .nav-container {
    padding: 0 10px;
    gap: 8px;
  }
}

/* --- Consistent spacing below sticky header for hero sections --- */
#main > .hero.optimized-hero {
  /* Responsive, compact spacing that works under sticky header */
  padding-top: clamp(20px, 3.5vw, 36px) !important;
  padding-bottom: clamp(16px, 2.8vw, 28px) !important;
  margin-top: 0 !important; /* prevent unexpected collapsing/margins */
}
@media (max-width: 900px) {
  #main > .hero.optimized-hero {
    padding-top: clamp(14px, 4vw, 24px) !important;
    padding-bottom: clamp(12px, 3.5vw, 22px) !important;
  }
}
/* Ensure headings inside hero don't add extra gap at the top */
#main > .hero.optimized-hero .section-title { margin-top: 0; }

/* ===== Final Hero Logo Sizing Overrides (wins over earlier rules) ===== */
.hero.optimized-hero .hero-logos .hero-logo {
  height: 100px !important; /* ~40% larger than prior 80px */
  width: auto !important;
  max-width: none !important;
}
@media (max-width: 500px) {
  .hero.optimized-hero .hero-logos .hero-logo {
    height: 98px !important; /* scale down slightly on tablets */
  }
}
@media (max-width: 700px) {
  .hero.optimized-hero .hero-container { padding-left: 14px !important; padding-right: 14px !important; }
  .hero.optimized-hero .hero-logos { gap: 14px !important; justify-content: center !important; align-items: center !important; overflow-x: hidden; }
  .hero.optimized-hero .hero-logos a { display: flex; width: 100%; max-width: 560px; margin: 0 auto; box-sizing: border-box; }
  .hero.optimized-hero .hero-logos .hero-logo {
    width: 100% !important;            /* never exceed container */
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    padding: clamp(10px, 3.5vw, 18px);
    box-sizing: border-box;             /* include padding in width */
  }
}
/* ===================================================================== */

/* ===== Final Hero Logo Sizing (clean, scalable) ===== */
.hero.optimized-hero .hero-logos { gap: clamp(12px, 2.5vw, 24px) !important; justify-content: center !important; flex-wrap: wrap; }
.hero.optimized-hero .hero-logos a { display: inline-flex; background: transparent !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; }
.hero.optimized-hero .hero-logos .hero-logo {
  width: clamp(220px, 32vw, 420px) !important; /* scalable width */
  height: auto !important;                  /* keep aspect ratio */
  background: transparent;                   /* no card color */
  border-radius: 0;                          /* remove card radius */
  padding: 0;                                 /* no inner padding */
  box-shadow: none;                           /* no shadow */
  display: block;                             /* remove inline gaps */
}
@media (max-width: 900px) {
  .hero.optimized-hero .hero-logos .hero-logo {
    width: clamp(240px, 58vw, 520px) !important; /* larger presence on tablet */
  }
}
@media (max-width: 700px) {
  .hero.optimized-hero .hero-container { padding-left: 14px !important; padding-right: 14px !important; }
  .hero.optimized-hero .hero-logos { gap: 14px !important; justify-content: center !important; align-items: center !important; }
  .hero.optimized-hero .hero-logos a { display: block; width: 100%; background: transparent !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; }
  .hero.optimized-hero .hero-logos .hero-logo {
    width: 100% !important;                  /* fill container width */
    max-width: 560px;                         /* avoid over-expansion on large phones */
    margin: 0 auto;                           /* center */
    padding: 0;                               /* no padding behind logos */
    background: transparent;                  /* no card color */
    box-shadow: none;                         /* no shadow */
    display: block;
  }
}
/* ===================================================== */

html { font-synthesis: none; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
strong, b { font-weight: 700; }
.hero-brand { font-weight: 500; }
