/* Sunrise Traders - Premium Military & Tactical Goods Website Styles */
:root {
  --bg-dark: #0A0D0E;
  --bg-surface: #101518;
  --bg-card: #151B1F;
  --bg-card-hover: #1C242A;
  --gold-primary: #D4AF37;
  --gold-light: #F5D365;
  --gold-dark: #B38E26;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5D365 50%, #C59B27 100%);
  --accent-green: #1E3A27;
  --accent-green-hover: #264D34;
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-dark: #0A0D0E;
  --border-color: #232D33;
  --border-gold: rgba(212, 175, 55, 0.35);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Helper Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  outline: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-call {
  background-color: var(--accent-green);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.btn-call:hover {
  background-color: var(--accent-green-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: rgba(212, 175, 55, 0.08);
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
}

.btn-outline:hover {
  background-color: var(--gold-primary);
  color: var(--text-dark);
}

/* Top Announcement Bar */
.top-bar {
  background-color: #050708;
  border-bottom: 1px solid var(--border-color);
  font-size: 12px;
  padding: 6px 0;
  color: var(--text-muted);
}

.top-bar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-features {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #D1D5DB;
}

.top-bar-feature i {
  color: var(--gold-primary);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #E5E7EB;
  transition: color 0.2s;
}

.top-bar-contact a:hover {
  color: var(--gold-primary);
}

/* Header & Navigation */
.header {
  background-color: var(--bg-surface);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

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

.logo-container img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.search-box {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 9px 40px 9px 14px;
  background-color: #0A0D0E;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 13px;
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.search-btn {
  position: absolute;
  right: 3px;
  top: 3px;
  bottom: 3px;
  width: 36px;
  background: var(--gold-gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background-color: rgba(35, 99, 59, 0.2);
  border: 1px solid rgba(35, 99, 59, 0.5);
  border-radius: var(--radius-sm);
  color: #34D399;
  font-size: 12px;
  font-weight: 600;
}

/* Navigation Bar */
.nav-bar {
  background-color: #090C0E;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #D1D5DB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.05);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* Hero Banner Slider Section */
.hero-slider-section {
  position: relative;
  width: 100%;
  background-color: #000000;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.slide picture {
  display: block;
  width: 100%;
}

.slide picture img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(10, 13, 14, 0.75);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.slider-btn:hover {
  background-color: var(--gold-primary);
  color: var(--text-dark);
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--gold-primary);
  width: 20px;
  border-radius: 5px;
}

/* 10-COLUMN CATEGORY STRIP (EXACT MATCH TO DESIGN.PNG) */
.category-strip-section {
  background-color: #06090A;
  border-top: 2px solid var(--border-gold);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  overflow-x: auto;
}

.category-strip-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(110px, 1fr));
  width: 100%;
  max-width: 100%;
}

.strip-item {
  border-right: 1px solid #1A2226;
  padding: 14px 6px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background-color: #06090A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 100px;
}

.strip-item:last-child {
  border-right: none;
}

.strip-item:hover {
  background-color: #11181C;
}

.strip-thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.strip-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.strip-thumb.icon-only {
  background-color: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 20px;
}

.strip-item h4 {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  text-transform: uppercase;
}

.strip-item:hover h4 {
  color: var(--gold-primary);
}

/* FEATURED PRODUCTS SECTION */
.products-section {
  padding: 40px 0;
  background-color: var(--bg-dark);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  flex-wrap: wrap;
  gap: 15px;
}

.featured-header h2 {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 800;
  position: relative;
}

.featured-header h2::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold-gradient);
}

.featured-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 5px 12px;
  background-color: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}

.tab-btn:hover, .tab-btn.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

.arrow-nav {
  display: flex;
  gap: 5px;
}

.arrow-btn {
  width: 30px;
  height: 30px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 80%;
  background-color: #FFFFFF;
  overflow: hidden;
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-title a:hover {
  color: var(--gold-primary);
}

.product-price-box {
  background-color: rgba(10, 13, 14, 0.7);
  border: 1px dashed var(--border-color);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.total-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gst-inc {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
}

.gst-breakeven {
  font-size: 10px;
  color: #9CA3AF;
  margin-top: 2px;
  font-weight: 500;
}

.product-actions-3 {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.product-actions-3 .btn {
  padding: 8px 5px;
  font-size: 11px;
}

/* 4-BLOCK VALUE PROPOSITION BAR (EXACT MATCH TO DESIGN.PNG) */
.value-prop-bar {
  background-color: #06090A;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.prop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  border-right: 1px solid #1E272C;
}

.prop-item:last-child {
  border-right: none;
}

.prop-icon {
  font-size: 26px;
  color: var(--gold-primary);
}

.prop-info h3 {
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.prop-info p {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

/* EQUIPPING REAL HEROES MISSION SECTION (EXACT MATCH TO DESIGN.PNG) */
.heroes-mission-section {
  width: 100%;
  background-color: #080B0C;
  border-bottom: 1px solid var(--border-color);
}

.heroes-banner-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  width: 100%;
}

.heroes-left-box {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('laptop_slider/slider-1.png') center/cover no-repeat;
  padding: 50px 35px;
  display: flex;
  align-items: center;
}

.heroes-overlay-content h2 {
  font-size: 26px;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 6px;
}

.heroes-sub {
  font-size: 12px;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.heroes-right-box {
  background-color: #0B0E10;
  padding: 50px 35px;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border-color);
}

.heroes-quote-content h3 {
  font-size: 22px;
  color: #FFFFFF;
  font-style: italic;
  margin-bottom: 12px;
  font-weight: 700;
}

.heroes-quote-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Government Quote / Bulk Enquiry Form */
.enquiry-section {
  padding: 50px 0;
  background-color: var(--bg-surface);
}

.enquiry-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.enquiry-info h3 {
  font-size: 20px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.enquiry-info p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.enquiry-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.enquiry-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-main);
}

.enquiry-bullets i {
  color: var(--gold-primary);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 10px;
  background-color: #0A0D0E;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 13px;
  font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 15px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  padding: 24px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--gold-primary);
}

.modal-header h3 {
  color: var(--gold-primary);
  font-size: 18px;
  margin-bottom: 4px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 16px;
}

/* Floating Quick Action Widget */
.floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  color: #FFFFFF;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-phone {
  background-color: var(--gold-primary);
  color: var(--text-dark);
}

/* Footer */
.footer {
  background-color: #050708;
  border-top: 1px solid var(--border-color);
  padding: 45px 0 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--gold-primary);
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 12px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--gold-primary);
  margin-top: 2px;
}

.developer-credit {
  font-size: 12px;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--gold-primary);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3000;
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ========================================================= */
/* STRICT COMPACT MOBILE HEADER FIX (EXACT USER REQUEST) */
/* ========================================================= */

@media (max-width: 992px) {
  .header-main {
    padding: 8px 15px;
  }
  .logo-container img {
    height: 42px;
  }
  .search-box {
    max-width: 320px;
  }
  .heroes-banner-container {
    grid-template-columns: 1fr;
  }
  .heroes-right-box {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
  .enquiry-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* 1. REMOVE TOP ANNOUNCEMENT BAR ON MOBILE */
  .top-bar {
    display: none !important;
  }

  /* 2. REMOVE SEARCH BAR ON MOBILE HEADER */
  .search-box {
    display: none !important;
  }

  /* 3. REMOVE ENQUIRY NOW BUTTON & HELPLINE BOX ON MOBILE HEADER */
  #headerEnquiryBtn, .header-phone-link {
    display: none !important;
  }

  /* Ultra-Clean Single-Row Mobile Header: Logo on Left, Hamburger Button on Right */
  .header-main {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .logo-container img {
    height: 36px;
  }

  /* Show Hamburger Menu Button on Mobile Header */
  .mobile-menu-btn {
    display: block !important;
    font-size: 24px;
  }

  .nav-bar {
    position: relative;
  }

  .nav-container {
    padding: 0 15px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.9);
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }

  /* Mobile Slider Navigation Buttons */
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .slider-btn.prev { left: 6px; }
  .slider-btn.next { right: 6px; }

  /* 10-Column Category Strip Horizontal Scroll */
  .category-strip-grid {
    grid-template-columns: repeat(10, minmax(90px, 1fr));
    overflow-x: auto;
  }

  .strip-item {
    padding: 10px 4px;
    min-width: 90px;
  }

  .strip-thumb {
    width: 44px;
    height: 44px;
  }

  .strip-item h4 {
    font-size: 9px;
  }

  /* Value Proposition Bar on Mobile */
  .value-prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prop-item {
    padding: 15px 10px;
    border-right: none;
    border-bottom: 1px solid #1E272C;
  }

  .prop-icon {
    font-size: 22px;
  }

  .prop-info h3 {
    font-size: 11px;
  }

  .prop-info p {
    font-size: 9px;
  }

  /* Products Grid on Mobile */
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .value-prop-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .heroes-left-box, .heroes-right-box {
    padding: 35px 20px;
  }
  .enquiry-card {
    padding: 18px;
  }
}
