/* ============================================
   ELITE PLUS PHARMACY · style.css
   Brand: Emerald Green · Satin Gold · Mist White
   Fonts: Satoshi (EN) · DIN Arabic (AR)
   ============================================ */

/* --- GOOGLE FONTS & FONTSHARE --- */
@import url('https://fonts.googleapis.com/css2?family=DIN+Next+Arabic:wght@300;400;500;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --emerald:        #174D3B;
  --emerald-dark:   #0f3328;
  --emerald-mid:    #2a6b53;
  --emerald-light:  #eaf2ee;
  --gold:           #CBAF7C;
  --gold-dark:      #a8905a;
  --gold-light:     #f5efe3;
  --mist-white:     #FAF9F7;
  --porcelain:      #F6F0ED;
  --charcoal:       #2B2B2B;
  --gray-100:       #f1ede9;
  --gray-200:       #e5dfd9;
  --gray-400:       #b0a89f;
  --gray-600:       #7a7068;
  --white:          #ffffff;

  /* Typography */
  --font-en:  'Satoshi', 'Segoe UI', system-ui, sans-serif;
  --font-ar:  'DIN Next Arabic', 'DIN Arabic', 'Tahoma', sans-serif;

  /* Spacing & Shape */
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --shadow:     0 4px 28px rgba(23,77,59,0.10);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.06);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-en);
  color: var(--charcoal);
  background: var(--mist-white);
  line-height: 1.65;
  font-size: 16px;
}

html[dir="rtl"] body { font-family: var(--font-ar); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.bg-light { background: var(--porcelain); }
.bg-mist  { background: var(--mist-white); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23,77,59,0.28);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn-outline-dark:hover {
  background: var(--emerald-light);
}

.btn-sm   { padding: 9px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px;
}
.btn-whatsapp:hover { background: #1fad56; border-color: #1fad56; }

/* --- SECTION LABELS --- */
.section-label {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-top: 8px; color: var(--emerald); }
.section-header p { color: var(--gray-600); max-width: 560px; margin: 12px auto 0; }

/* --- NAVBAR --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(23,77,59,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-wordmark {
  font-size: 18px;
  font-weight: 900;
  color: var(--emerald);
  letter-spacing: -0.5px;
}

.logo-wordmark span {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-400);
}

.logo-ar-text { display: none; }
html[dir="rtl"] .logo-en-text { display: none; }
html[dir="rtl"] .logo-ar-text { display: flex; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
html[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }

.nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--emerald-light);
  color: var(--emerald);
  font-weight: 600;
}

.lang-toggle {
  background: var(--emerald);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.lang-toggle:hover { background: var(--emerald-dark); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--emerald);
  overflow: hidden;
}

/* Subtle leaf pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(203,175,124,0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Gold accent bar on bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 28px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {}
html[dir="rtl"] .hero-content { text-align: right; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(203,175,124,0.2);
  border: 1px solid rgba(203,175,124,0.4);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.hero-logo-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.hero-logo-card .brand-name-en {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
}
.hero-logo-card .brand-name-en span { color: var(--gold); }

.hero-logo-card .brand-name-ar {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  direction: rtl;
}

.hero-logo-card .hero-tagline {
  font-size: 12px;
  color: var(--gold);
  background: rgba(203,175,124,0.12);
  border: 1px solid rgba(203,175,124,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* --- INFO BAR --- */
.info-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(23,77,59,0.06);
}

.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 24px;
  border-right: 1px solid var(--gray-200);
  transition: background var(--transition);
}
html[dir="rtl"] .info-item { border-right: none; border-left: 1px solid var(--gray-200); }
.info-item:last-child { border: none; }
.info-item:hover { background: var(--mist-white); }

.info-icon {
  width: 38px;
  height: 38px;
  background: var(--emerald-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-item strong {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 3px;
}

.info-item p { font-size: 14px; color: var(--charcoal); font-weight: 500; }
.info-item a { color: var(--emerald); font-weight: 600; }
.info-item a:hover { text-decoration: underline; }

/* --- ABOUT --- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 8px 0 20px;
  color: var(--emerald);
  font-weight: 800;
  line-height: 1.2;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 15px;
}

.about-text .btn { margin-top: 10px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  border-top: 3px solid var(--gold);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.feature-icon {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--emerald); }
.feature-card p  { font-size: 13px; color: var(--gray-600); line-height: 1.55; }

/* --- WHY --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card:hover::after { transform: scaleX(1); }

.why-card > span { font-size: 38px; display: block; margin-bottom: 16px; }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--emerald); }
.why-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* --- MAP --- */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  border: 1px solid var(--gray-200);
}

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

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: var(--emerald);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

html[dir="rtl"] .page-hero { text-align: right; }
html[dir="rtl"] .page-hero .container { text-align: right; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); }

/* --- PRODUCTS --- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 24px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--charcoal);
  font-family: inherit;
}
.filter-btn:hover  { border-color: var(--emerald); color: var(--emerald); }
.filter-btn.active { background: var(--emerald); border-color: var(--emerald); color: white; }

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

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card.hidden { display: none; }

.product-icon { font-size: 36px; }
.product-card h3 { font-size: 16px; font-weight: 700; color: var(--emerald); }
.product-card p  { font-size: 14px; color: var(--gray-600); flex: 1; line-height: 1.65; }

.product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  width: fit-content;
  letter-spacing: 0.5px;
  background: #fff3cd;
  color: #856404;
}
.product-tag.otc      { background: var(--emerald-light); color: var(--emerald); }
.product-tag.vitamins { background: #d4edda; color: #155724; }
.product-tag.skincare { background: var(--gold-light); color: var(--gold-dark); }
.product-tag.baby     { background: #e2d9f3; color: #4a235a; }
.product-tag.medical  { background: var(--porcelain); color: var(--charcoal); }

.products-cta-banner {
  background: var(--emerald);
  color: white;
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.products-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(203,175,124,0.15), transparent 60%);
}
.products-cta-banner h2 { font-size: 1.9rem; margin-bottom: 12px; position: relative; }
.products-cta-banner p  { opacity: 0.85; margin-bottom: 28px; position: relative; }
.products-cta-banner .btn-gold { position: relative; }

/* --- CONTACT --- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: var(--emerald);
  font-weight: 800;
}

.contact-info > p { color: var(--gray-600); margin-bottom: 36px; line-height: 1.75; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.contact-detail-item { display: flex; gap: 14px; align-items: flex-start; }

.detail-icon {
  width: 42px;
  height: 42px;
  background: var(--emerald-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  margin-bottom: 3px;
  font-weight: 700;
}

.contact-detail-item p,
.contact-detail-item a { font-size: 15px; color: var(--charcoal); font-weight: 500; }
.contact-detail-item a:hover { color: var(--emerald); }

/* --- FORM --- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group    { display: flex; flex-direction: column; gap: 7px; }

.form-group label { font-size: 13px; font-weight: 700; color: var(--charcoal); letter-spacing: 0.3px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(23,77,59,0.1);
}

html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group select,
html[dir="rtl"] .form-group textarea { text-align: right; direction: rtl; }

.form-note { font-size: 13px; color: var(--gray-600); text-align: center; margin-top: 4px; }

.form-success {
  text-align: center;
  padding: 48px;
  background: var(--emerald-light);
  border-radius: var(--radius);
  border: 2px solid var(--emerald);
}
.form-success span { font-size: 48px; display: block; margin-bottom: 16px; }
.form-success h3   { font-size: 1.4rem; color: var(--emerald); margin-bottom: 8px; }
.form-success p    { color: var(--emerald-mid); }

/* --- FOOTER --- */
.footer {
  background: var(--emerald-dark);
  color: rgba(255,255,255,0.82);
  padding-top: 64px;
  border-top: 4px solid var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 44px;
}

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

.footer-brand .footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand .footer-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: white;
}
.footer-brand .footer-logo-text span { color: var(--gold); }

.footer-brand p { font-size: 14px; opacity: 0.7; line-height: 1.6; max-width: 260px; }

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-links ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-links a   { font-size: 14px; opacity: 0.75; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; color: white; }

.footer-contact p   { font-size: 14px; margin-bottom: 10px; opacity: 0.78; line-height: 1.5; }
.footer-contact a   { color: var(--gold); opacity: 1; }
.footer-contact a:hover { color: white; }

.footer-social { margin-top: 20px; }
.footer-social h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  color: white;
  transform: translateY(-2px);
}
.social-link svg { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; opacity: 0.5; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-inner           { grid-template-columns: 1fr; }
  .hero-visual          { display: none; }
  .info-bar-inner       { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2)          { border-right: none; }
  html[dir="rtl"] .info-item:nth-child(2) { border-left: none; }
  .why-grid             { grid-template-columns: repeat(2, 1fr); }
  .products-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .footer-brand         { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }
  html[dir="rtl"] .nav-links { text-align: right; }
  .nav-links.open        { display: flex; }
  .nav-links li          { width: 100%; }
  .nav-links a           { display: block; padding: 12px 16px; border-radius: var(--radius-sm); }
  .hamburger             { display: block; margin-left: auto; }
  html[dir="rtl"] .hamburger { margin-left: 0; margin-right: auto; }

  .hero-inner            { padding: 48px 24px; }
  .about-inner           { grid-template-columns: 1fr; gap: 44px; }
  .about-features        { grid-template-columns: 1fr 1fr; }
  .why-grid              { grid-template-columns: 1fr 1fr; }
  .products-grid         { grid-template-columns: 1fr; }
  .contact-inner         { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner          { grid-template-columns: 1fr; gap: 32px; }
  .products-cta-banner   { padding: 40px 28px; }
  .section               { padding: 60px 0; }
}

@media (max-width: 480px) {
  .info-bar-inner        { grid-template-columns: 1fr; }
  .info-item             { border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--gray-200); }
  .info-item:last-child  { border-bottom: none; }
  .about-features        { grid-template-columns: 1fr; }
  .why-grid              { grid-template-columns: 1fr; }
  .hero-ctas             { flex-direction: column; }
  .hero-ctas .btn        { width: 100%; justify-content: center; }
  .map-cta               { flex-direction: column; }
  .map-cta .btn          { width: 100%; justify-content: center; }
}
