/* ==========================================================================
   MONIPACK LANDING PAGE STYLESHEET
   Brand Colors:
   - MoniPack Red: #D62026 / #B81D24
   - MoniClean Cyan: #009FE3
   - MoniFood Green: #008751
   - Dark Slate / Espresso: #1A0505 / #111827
   - Crisp White & Light Gray: #FFFFFF / #F9FAFB / #F3F4F6
   ========================================================================== */

:root {
  --primary: #D62026;
  --primary-hover: #b8161c;
  --primary-light: #fef2f2;
  --primary-glow: rgba(214, 32, 38, 0.25);
  
  --dark-bg: #1A0505;
  --dark-surface: #111827;
  --dark-card: #1f2937;
  
  --clean-blue: #009FE3;
  --clean-blue-light: #e0f2fe;
  --food-green: #008751;
  --food-green-light: #dcfce7;
  
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border-color: #e5e7eb;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 25px rgba(214, 32, 38, 0.35);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Signature MoniPack Wordmark Typography (Exact match to official brand logo) */
.monipack-font,
.brand-font {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  color: #111827;
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* 1. TOP BAR: OUR EXCLUSIVE BRANDS (Moving Logo Ribbon) */
.top-bar {
  background: #140303;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 32, 38, 0.25);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  font-weight: 500;
}

.top-brand-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #fca5a5;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-brand-track-wrapper {
  display: flex;
  overflow: hidden;
  flex: 1;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent 100%);
  margin: 0 16px;
}

.top-brand-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  animation: topBrandScroll 20s linear infinite;
  -webkit-animation: topBrandScroll 20s linear infinite;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .top-brand-track-wrapper:hover .top-brand-track {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
  }
}

.top-brand-item {
  background: #ffffff;
  border-radius: 6px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.top-brand-item:hover {
  transform: scale(1.06);
}

.top-brand-item img {
  height: 18px;
  width: auto;
  max-width: 75px;
  object-fit: contain;
}

@keyframes topBrandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@-webkit-keyframes topBrandScroll {
  0% { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-100%); }
}

.top-bar-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
  flex-shrink: 0;
}

.top-bar-links a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-links a:hover {
  color: #ffffff;
}

/* 2. HEADER & NAVIGATION */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #f3f4f6;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-title span.arabic {
  font-family: 'Amiri', 'Segoe UI', serif;
  font-size: 17px;
  font-weight: 700;
  color: #374151;
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  font-weight: 600;
  margin-top: 2px;
}

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

.nav-menu a {
  font-size: 14.5px;
  font-weight: 600;
  color: #374151;
  position: relative;
  padding: 6px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

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

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  background: #f9fafb;
}

.btn-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-quote-header {
  background: var(--primary);
  color: #ffffff;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px var(--primary-glow);
  transition: var(--transition);
}

.btn-quote-header:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--primary-glow);
}

/* 3. HERO & FORM SECTION */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #1A0505 0%, #2b0b0b 45%, #180808 100%);
  color: #ffffff;
  padding: 50px 0 60px;
  overflow: hidden;
}

.hero-overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(214, 32, 38, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 159, 227, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(214, 32, 38, 0.25);
  border: 1px solid rgba(214, 32, 38, 0.6);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-sub-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-title .text-gradient {
  background: linear-gradient(90deg, #ff6b6b, #ffffff, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 580px;
}

/* 4 Core Pillars Badges */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

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

.pillar-text h4 {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
}

.pillar-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.5px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-item span.icon {
  color: #22c55e;
  font-size: 16px;
}

/* FORM CARD */
.inquiry-card-wrapper {
  position: relative;
}

.inquiry-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(214, 32, 38, 0.15);
  animation: cardEntranceGlow 3s ease-in-out infinite alternate;
}

@keyframes cardEntranceGlow {
  0% { box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4), 0 0 15px rgba(214, 32, 38, 0.12); }
  100% { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(214, 32, 38, 0.28); }
}

.inquiry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #D62026, #ff7675, #009FE3, #25D366, #D62026);
  background-size: 300% 100%;
  animation: flowGradientBar 5s linear infinite;
}

@keyframes flowGradientBar {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.card-header {
  margin-bottom: 20px;
}

.card-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.card-tag.pulse-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fef2f2;
  color: #D62026;
  border: 1px solid #fecaca;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(214, 32, 38, 0.12);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  position: relative;
}

.live-dot-ping {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.75;
  animation: livePing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes livePing {
  0% { transform: translateY(-50%) scale(1); opacity: 0.8; }
  75%, 100% { transform: translateY(-50%) scale(2.8); opacity: 0; }
}

.free-quote-badge {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.2px;
}

.free-quote-badge i {
  color: #eab308;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 6px;
}

.text-highlight-animated {
  background: linear-gradient(120deg, #111827 0%, #D62026 40%, #ea580c 60%, #111827 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShineAnim 4s linear infinite;
  font-weight: 900;
}

@keyframes textShineAnim {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.card-subtitle {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  color: #475569;
  font-weight: 600;
  width: 100%;
  box-sizing: border-box;
}

.trust-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trust-pill-item i {
  color: var(--primary);
  font-size: 12px;
}

.trust-pill-divider {
  color: #cbd5e1;
}

/* FORM CONTROLS */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--primary);
}

.form-label .optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 4px;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 16px;
  pointer-events: none;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  color: #111827;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-md);
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.input-with-icon .form-input {
  padding-left: 42px;
}

.input-with-icon:focus-within .input-icon {
  color: var(--primary);
  transform: translateY(-50%) scale(1.15);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214, 32, 38, 0.15);
}

/* Phone input with country code */
.phone-input-group {
  display: flex;
  gap: 8px;
}

.country-code-select {
  width: 115px;
  flex-shrink: 0;
  padding: 11px 8px;
  font-size: 13px;
  font-weight: 600;
  background: #f3f4f6;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-md);
  color: #374151;
  cursor: pointer;
  outline: none;
}

.phone-input-group .form-input {
  flex: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #D62026 0%, #b8161c 100%);
  color: #ffffff;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(214, 32, 38, 0.4);
  transition: var(--transition);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(214, 32, 38, 0.55);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Shimmer on submit button */
.btn-submit .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btn-shimmer 3s infinite;
}

@keyframes btn-shimmer {
  0% { left: -100%; }
  40% { left: 150%; }
  100% { left: 150%; }
}

.form-privacy-note {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   3.5 AUTO-MOVING BRAND BANNERS CAROUSEL (Mobile & PC Friendly)
   ========================================================================== */
.brand-banners-section {
  background: linear-gradient(180deg, #180606 0%, #110303 50%, #180606 100%);
  padding: 46px 0 36px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(214, 32, 38, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.banners-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.banners-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.banner-card {
  border-radius: 20px;
  padding: 34px 44px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

/* Color-Coded Themes */
.banner-monipack {
  background: linear-gradient(135deg, rgba(214, 32, 38, 0.2) 0%, rgba(26, 5, 5, 0.95) 100%);
  border: 1px solid rgba(214, 32, 38, 0.4);
  box-shadow: 0 14px 35px rgba(214, 32, 38, 0.2);
}

.banner-moniclean {
  background: linear-gradient(135deg, rgba(0, 159, 227, 0.2) 0%, rgba(5, 20, 30, 0.95) 100%);
  border: 1px solid rgba(0, 159, 227, 0.4);
  box-shadow: 0 14px 35px rgba(0, 159, 227, 0.2);
}

.banner-monifood {
  background: linear-gradient(135deg, rgba(0, 135, 81, 0.2) 0%, rgba(5, 25, 15, 0.95) 100%);
  border: 1px solid rgba(0, 135, 81, 0.4);
  box-shadow: 0 14px 35px rgba(0, 135, 81, 0.2);
}

.banner-kohe {
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.18) 0%, rgba(18, 28, 5, 0.95) 100%);
  border: 1px solid rgba(132, 204, 22, 0.4);
  box-shadow: 0 14px 35px rgba(132, 204, 22, 0.2);
}

.banner-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 36px;
  align-items: center;
}

.banner-media-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-brand-badge {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 145px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.banner-brand-badge:hover {
  transform: scale(1.03);
}

.banner-brand-logo {
  max-height: 105px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
}

.banner-tag-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 7px 18px;
  border-radius: 9999px;
  margin-top: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.banner-tag-pill.tag-red {
  background: #D62026 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 14px rgba(214, 32, 38, 0.5);
}

.banner-tag-pill.tag-cyan {
  background: #009FE3 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 14px rgba(0, 159, 227, 0.5);
}

.banner-tag-pill.tag-green {
  background: #008751 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 14px rgba(0, 135, 81, 0.5);
}

.banner-tag-pill.tag-lime {
  background: #65a30d !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 14px rgba(101, 163, 13, 0.5);
}

.banner-subheading {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fca5a5;
  margin-bottom: 6px;
  display: block;
}

.banner-moniclean .banner-subheading { color: #7dd3fc; }
.banner-monifood .banner-subheading { color: #86efac; }
.banner-kohe .banner-subheading { color: #bef264; }

.banner-title {
  font-size: 25px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.banner-description {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.55;
  margin-bottom: 18px;
}

.banner-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 22px;
}

.feat-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #f3f4f6;
}

.feat-item i {
  color: #22c55e;
  font-size: 13px;
}

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

.btn-banner-action {
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 800;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  transition: var(--transition);
}

.btn-banner-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-banner-action.btn-red {
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(214, 32, 38, 0.4);
}

.btn-banner-action.btn-cyan {
  background: var(--clean-blue);
  box-shadow: 0 4px 14px rgba(0, 159, 227, 0.4);
}

.btn-banner-action.btn-green {
  background: var(--food-green);
  box-shadow: 0 4px 14px rgba(0, 135, 81, 0.4);
}

.btn-banner-action.btn-lime {
  background: #65a30d;
  box-shadow: 0 4px 14px rgba(101, 163, 13, 0.4);
}

.btn-banner-outline {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-banner-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
}

/* Nav Buttons */
.banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18, 4, 4, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.banner-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(214, 32, 38, 0.5);
}

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

/* Indicators / Progress Pills */
.banner-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.indicator-pill {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}

.indicator-pill.active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ind-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

.indicator-pill.active .ind-progress {
  width: 100%;
  transition: width 4.5s linear;
}

/* Moving Brand Logos Ribbon */
.brand-logos-ribbon {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  margin-top: 32px;
  overflow: hidden;
}

.ribbon-label {
  padding: 0 16px 0 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fca5a5;
  white-space: nowrap;
  flex-shrink: 0;
}

.ribbon-track-wrapper {
  display: flex;
  overflow: hidden;
  flex: 1;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, transparent 100%);
}

.ribbon-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  animation: ribbonScroll 20s linear infinite;
  -webkit-animation: ribbonScroll 20s linear infinite;
  will-change: transform;
}

.brand-logos-ribbon:hover .ribbon-track {
  animation-play-state: paused;
}

.ribbon-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.ribbon-item:hover {
  transform: scale(1.06);
}

.ribbon-item img {
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

@keyframes ribbonScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@-webkit-keyframes ribbonScroll {
  0% { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-100%); }
}

/* ==========================================================================
   3.7 HOMEPAGE INFINITE MARQUEE (Mobile & PC Friendly)
   ========================================================================== */
.homepage-marquee {
  background: #140303;
  background: linear-gradient(180deg, #180606 0%, #110303 50%, #180606 100%);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(214, 32, 38, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #140303 0%, rgba(20, 3, 3, 0) 100%);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #140303 0%, rgba(20, 3, 3, 0) 100%);
}

.marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  user-select: none;
}

.marquee-track {
  display: flex !important;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  width: max-content !important;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  will-change: transform;
}

/* Smooth continuous hardware-accelerated animations */
.marquee-row-left .marquee-track {
  animation: marqueeLeft 28s linear infinite;
  -webkit-animation: marqueeLeft 28s linear infinite;
}

.marquee-row-right .marquee-track {
  animation: marqueeRight 32s linear infinite;
  -webkit-animation: marqueeRight 32s linear infinite;
}

/* Pause ONLY when hovered by an actual desktop mouse (never stick on touch screens) */
@media (hover: hover) and (pointer: fine) {
  .marquee-row:hover .marquee-track {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
  }
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}

@-webkit-keyframes marqueeLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}

@-webkit-keyframes marqueeRight {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

/* Marquee Pill Card Design */
.marquee-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 8px 16px;
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.marquee-pill:hover {
  background: rgba(214, 32, 38, 0.25);
  border-color: rgba(214, 32, 38, 0.8);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(214, 32, 38, 0.4);
}

.marquee-pill .pill-icon {
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.marquee-pill .pill-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #f9fafb;
  letter-spacing: 0.1px;
}

.marquee-pill .pill-tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 9999px;
}

/* Badge Color Themes */
.pill-tag.tag-red {
  background: rgba(214, 32, 38, 0.3);
  color: #fca5a5;
  border: 1px solid rgba(214, 32, 38, 0.6);
}

.pill-tag.tag-blue {
  background: rgba(0, 159, 227, 0.25);
  color: #7dd3fc;
  border: 1px solid rgba(0, 159, 227, 0.6);
}

.pill-tag.tag-cyan {
  background: rgba(6, 182, 212, 0.25);
  color: #a5f3fc;
  border: 1px solid rgba(6, 182, 212, 0.6);
}

.pill-tag.tag-green {
  background: rgba(16, 185, 129, 0.25);
  color: #86efac;
  border: 1px solid rgba(16, 185, 129, 0.6);
}

.pill-tag.tag-amber {
  background: rgba(245, 158, 11, 0.25);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.6);
}

/* Top Bar Ticker Marquee */
.top-bar-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  margin-right: 15px;
}

.top-bar-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  animation: topBarScroll 24s linear infinite;
  -webkit-animation: topBarScroll 24s linear infinite;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .top-bar-marquee:hover .top-bar-track {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
  }
}

.top-bar-sep {
  color: #fca5a5;
  font-size: 10px;
  opacity: 0.7;
}

@keyframes topBarScroll {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}

@-webkit-keyframes topBarScroll {
  0% {
    -webkit-transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}

/* 4. PRODUCT CATEGORIES STRIP & SHOWCASE */
.categories-section {
  padding: 70px 0 50px;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* Category 4 Main Cards */
.division-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.division-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.div-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.div-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.div-icon-wrap.pack { background: #fee2e2; color: #D62026; }
.div-icon-wrap.disp { background: #ffedd5; color: #ea580c; }
.div-icon-wrap.clean { background: #e0f2fe; color: #0284c7; }
.div-icon-wrap.food { background: #dcfce7; color: #16a34a; }

.div-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.div-badge.pack { background: #fef2f2; color: #D62026; }
.div-badge.disp { background: #fff7ed; color: #ea580c; }
.div-badge.clean { background: #f0f9ff; color: #0284c7; }
.div-badge.food { background: #f0fdf4; color: #16a34a; }

.div-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}

.div-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.div-items-list {
  list-style: none;
  font-size: 12.5px;
  color: #4b5563;
  margin-bottom: 16px;
}

.div-items-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.div-items-list li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 800;
}

.btn-select-div {
  display: block;
  text-align: center;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-select-div:hover {
  background: var(--primary);
  color: #ffffff;
}

/* 5. WHY CHOOSE MONIPACK */
.features-section {
  padding: 70px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-box {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid #f3f4f6;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.feature-box:hover {
  border-color: #fca5a5;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 6. CALL TO ACTION STRIP */
.cta-banner {
  background: linear-gradient(135deg, #D62026 0%, #991b1b 100%);
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 24px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  font-weight: 800;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}

.btn-whatsapp-cta {
  background: #25D366;
  color: #ffffff;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

/* 7. BUSINESS CENTERS & BRANCH LOCATIONS */
.business-centers-section {
  background: #f8fafc;
  padding: 80px 0;
  color: #1e293b;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.business-centers-section .section-header .section-title {
  color: #0f172a;
}

.business-centers-section .section-header .section-desc {
  color: #64748b;
}

.locations-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: var(--transition);
}

.locations-block:hover {
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.08);
}

.locations-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: linear-gradient(to right, #ffffff, #f8fafc);
  border-bottom: 1px solid #e2e8f0;
}

.block-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.block-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #D62026;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-title-group h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
  letter-spacing: -0.3px;
}

.block-title-group p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.location-count-badge {
  background: #f1f5f9;
  color: #334155;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid #cbd5e1;
}

.locations-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.locations-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.locations-table thead th {
  background: #f8fafc;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 24px;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}

.locations-table tbody td {
  padding: 16px 24px;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.locations-table tbody tr:last-child td {
  border-bottom: none;
}

.locations-table tbody tr:hover td {
  background: #fef2f2;
}

.loc-name {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.loc-phone {
  color: #1d4ed8;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.loc-phone:hover {
  color: #D62026;
  text-decoration-style: solid;
}

.loc-hours {
  color: #64748b;
  font-size: 13.5px;
  white-space: nowrap;
}

.btn-map-link {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-map-link:hover {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(29, 78, 216, 0.2);
}

/* 8. FOOTER (Clean White / Slate Theme) */
.site-footer {
  background: #ffffff;
  color: #475569;
  padding: 70px 0 0;
  border-top: 1px solid #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand-title {
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}

.footer-brand-title span {
  color: var(--primary);
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 20px;
}

/* Social links (Instagram, WhatsApp, etc. from backend) */
.footer-social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(214, 32, 38, 0.25);
}

.social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  color: #ffffff;
}

.social-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: #64748b;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
  font-weight: 600;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  margin-bottom: 14px;
}

.footer-contact-item span.icon {
  color: var(--primary);
  font-size: 16px;
  margin-top: 2px;
  width: 20px;
  display: flex;
  justify-content: center;
}

.footer-contact-item a {
  color: #334155;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

/* Bottom Copyright Bar */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 5px;
}

.developer-credit a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.developer-credit a:hover {
  color: #991b1b;
}

/* 7.5 FAQ ACCORDION (AEO / SEO / GEO OPTIMIZED) */
.faq-section {
  padding: 60px 0 70px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.faq-accordion-grid {
  max-width: 860px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-details {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.faq-details[open] {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(214, 32, 38, 0.08);
}

.faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
  gap: 14px;
  transition: color 0.2s;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  color: var(--primary);
}

.faq-chevron {
  font-size: 14px;
  color: #94a3b8;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.faq-answer strong {
  color: #0f172a;
}

/* 8. ANIMATED SUCCESS MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: scale(0.85) translateY(20px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #e5e7eb;
  color: #111827;
}

/* Animated Checkmark */
.success-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
}

.success-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #22c55e;
  fill: #dcfce7;
  animation: circle-draw 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #16a34a;
  stroke-width: 4;
  animation: check-draw 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes circle-draw {
  100% { stroke-dashoffset: 0; }
}

@keyframes check-draw {
  100% { stroke-dashoffset: 0; }
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.modal-inquiry-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 24px;
  text-align: left;
  font-size: 13px;
}

.modal-inquiry-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.modal-inquiry-row:last-child {
  margin-bottom: 0;
}

.modal-inquiry-row span.label {
  color: var(--text-muted);
  font-weight: 500;
}

.modal-inquiry-row span.val {
  color: #111827;
  font-weight: 700;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-modal-catalogue {
  background: linear-gradient(135deg, #D62026 0%, #b8161c 100%);
  color: #ffffff;
  padding: 13px 20px;
  font-size: 14.5px;
  font-weight: 800;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(214, 32, 38, 0.35);
  text-decoration: none;
  transition: var(--transition);
}

.btn-modal-catalogue:hover {
  background: linear-gradient(135deg, #b8161c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 32, 38, 0.45);
  color: #ffffff;
}

.btn-modal-whatsapp {
  background: #25D366;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 800;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.btn-modal-whatsapp:hover {
  background: #20ba5a;
}

.btn-modal-close {
  background: #f3f4f6;
  color: #374151;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
}

.btn-modal-close:hover {
  background: #e5e7eb;
}

/* 9. FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  background: #25D366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .division-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* 1. Top Ribbon on Mobile */
  .top-bar-brands-ribbon {
    padding: 5px 8px;
  }
  .top-brand-label {
    display: none;
  }
  .top-brand-track-wrapper {
    margin: 0;
    width: 100%;
  }
  .top-bar-links {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  
  /* 2. Mobile Header */
  .main-header {
    padding: 2px 0;
  }
  .header-inner {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .brand-logo-img {
    height: 40px;
    width: auto;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .btn-phone {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: var(--primary);
  }
  .btn-phone span {
    display: none;
  }
  .btn-quote-header {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
  }
  
  /* 3. Hero & Quotation Form First on Mobile */
  .hero-section {
    padding: 20px 0 32px;
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .hero-content {
    display: contents;
  }
  .hero-intro {
    order: 1;
    text-align: center;
  }
  .hero-badge-row {
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
    max-width: 100%;
  }
  
  /* Priority: Quotation Form is visible upfront */
  .inquiry-card-wrapper {
    order: 2;
    width: 100%;
  }
  .inquiry-card {
    padding: 18px 14px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    margin-bottom: 6px;
  }
  .card-title {
    font-size: 19px;
  }
  .card-subtitle {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .country-code-select {
    width: 95px !important;
    min-width: 95px !important;
    max-width: 95px !important;
    padding: 10px 6px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
  }
  .btn-submit {
    padding: 13px;
    font-size: 14.5px;
  }
  
  /* Details: Pillars and Trust Badges below Quotation Form */
  .hero-details {
    order: 3;
    width: 100%;
    margin-top: 12px;
  }
  .hero-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }
  
  /* 4. Brand Showcase Carousel Mobile */
  .brand-banners-section {
    padding: 24px 0 20px;
  }
  .banner-card {
    padding: 20px 14px;
    border-radius: 16px;
  }
  .banner-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .banner-media-col {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .banner-brand-badge {
    min-height: 75px !important;
    max-width: 170px !important;
    width: 60% !important;
    padding: 8px 16px !important;
    border-radius: 14px !important;
  }
  .banner-brand-logo {
    max-height: 50px !important;
    width: auto !important;
  }
  .banner-tag-pill {
    margin-top: 8px !important;
    font-size: 10.5px !important;
    padding: 4px 12px !important;
  }
  .banner-content-col {
    width: 100% !important;
    text-align: center !important;
  }
  .banner-subheading {
    font-size: 10.5px !important;
    display: block !important;
    margin-bottom: 4px !important;
  }
  .banner-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  .banner-description {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }
  .banner-features-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 14px;
    border-radius: 10px;
  }
  .feat-item {
    font-size: 12px !important;
    color: #f3f4f6 !important;
  }
  .banner-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }
  .btn-banner-action,
  .btn-banner-outline {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px !important;
    font-size: 13.5px !important;
  }
  .banner-nav-btn {
    display: none !important;
  }
  .banner-indicators {
    margin-top: 12px !important;
    gap: 6px !important;
  }
  .indicator-pill {
    padding: 4px 10px !important;
    font-size: 11px !important;
  }
  
  .division-cards {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* 5. Clean Mobile Cards for Showrooms & Warehouses (No horizontal scrolling!) */
  .locations-table thead {
    display: none !important;
  }
  .locations-table, 
  .locations-table tbody, 
  .locations-table tr, 
  .locations-table td {
    display: block !important;
    width: 100% !important;
  }
  .locations-table tr {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    margin-bottom: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }
  .locations-table tbody td {
    padding: 4px 0 !important;
    border-bottom: none !important;
    font-size: 13.5px !important;
  }
  .locations-table tbody td.loc-name {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding-bottom: 6px !important;
    margin-bottom: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .locations-table tbody td.loc-hours {
    color: #64748b !important;
    font-size: 12.5px !important;
    white-space: normal !important;
  }
  .locations-table tbody td:last-child {
    margin-top: 8px !important;
    padding-top: 8px !important;
    border-top: 1px dashed #e2e8f0 !important;
  }
  .btn-map-link {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #1e293b !important;
    text-decoration: none !important;
  }
  .btn-map-link:hover {
    background: #fee2e2 !important;
    border-color: #fca5a5 !important;
    color: var(--primary) !important;
  }
  .locations-table-responsive {
    overflow-x: visible !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  /* 6. Modal Mobile Friendly */
  .modal-card {
    padding: 24px 16px;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  /* 7. Floating WhatsApp Mobile Sizing & Placement */
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 24px;
    z-index: 9999;
  }
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 36px;
  }
  .banner-brand-badge {
    max-width: 150px !important;
    min-height: 70px !important;
  }
  .banner-brand-logo {
    max-height: 44px !important;
  }
  .banner-title {
    font-size: 17px !important;
  }
  .homepage-marquee {
    padding: 12px 0;
  }
  .marquee-wrapper {
    gap: 8px;
  }
  .marquee-track {
    gap: 8px;
    padding-right: 8px;
  }
  .marquee-pill {
    padding: 5px 10px;
    gap: 6px;
  }
  .marquee-pill .pill-title {
    font-size: 11.5px;
  }
  .marquee-pill .pill-icon {
    font-size: 13px;
  }
  .marquee-pill .pill-tag {
    font-size: 9px;
    padding: 1px 5px;
  }
}


