/* =========================================================
   Gati KWE Delhi — Landing Page Styles
   Premium, corporate, logistics-focused design system
   ========================================================= */

:root {
  --navy: #0B2545;
  --navy-dark: #081A34;
  --navy-light: #13345E;
  --orange: #F2802B;
  --orange-dark: #D66A18;
  --bg-light: #F7F8FA;
  --charcoal: #23272E;
  --grey-text: #5B6270;
  --border-soft: #E4E7EC;
  --white: #FFFFFF;
  --whatsapp: #25A25A;
  --whatsapp-dark: #1E8A4B;

  --font-heading: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', 'Manrope', sans-serif;

  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 16px 40px rgba(11, 37, 69, 0.14);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

p { color: var(--grey-text); line-height: 1.7; }

a { text-decoration: none; }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; }

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}
.btn i { margin-right: 0.4rem; }
.btn:active { transform: translateY(1px); }

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
  background-color: var(--whatsapp-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-call {
  background-color: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-call:hover, .btn-call:focus {
  background-color: var(--orange-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover, .btn-outline-navy:focus {
  background-color: var(--navy);
  color: #fff;
}

.btn-outline-light {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background-color: #fff;
  color: var(--navy);
}

.btn-lg { padding: 0.85rem 1.9rem; font-size: 1.02rem; }
.btn-sm-nav { padding: 0.5rem 1.1rem; font-size: 0.88rem; white-space: nowrap; }

/* =========================================================
   Top Trust Bar
   ========================================================= */
.top-bar {
  background-color: var(--navy-dark);
  color: #cdd6e4;
  font-size: 0.85rem;
  padding: 6px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left i { color: var(--orange); margin-right: 4px; }
.top-bar-right {
  color: #fff;
  font-weight: 600;
}
.top-bar-right i { color: var(--orange); margin-right: 4px; }
.top-bar-right:hover { color: var(--orange); }
.top-bar-mobile { padding: 7px 0; }
.top-bar-mobile .top-bar-right { display: block; }

/* =========================================================
   Navbar
   ========================================================= */
.main-navbar {
  background-color: #fff;
  padding: 0.7rem 0;
  transition: box-shadow 0.25s ease, padding 0.25s ease;
  border-bottom: 1px solid var(--border-soft);
}
.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
}
.brand-accent { color: var(--orange); }
.brand-sub {
  font-size: 0.68rem;
  color: var(--grey-text);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-link {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.nav-link:hover { color: var(--orange); }
.nav-cta-group { align-items: center; }

/* =========================================================
   Section spacing / heading helpers
   ========================================================= */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.section-heading h2 {
  font-size: 2.1rem;
  margin-bottom: 0.6rem;
}
.section-eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-eyebrow-light { color: #ffb377; }
.section-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  background-color: var(--bg-light);
  padding: 3.5rem 0 3rem;
  position: relative;
}
.hero-eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: var(--navy);
}
.hero-text {
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
  max-width: 540px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.hero-location-line {
  font-size: 0.92rem;
  color: var(--navy-light);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.hero-location-line i { color: var(--orange); margin-right: 4px; }

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-soft);
}
.hero-trust-points li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-trust-points i { color: var(--whatsapp); margin-right: 5px; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,37,69,0.02) 40%, rgba(11,37,69,0.55) 100%);
}
.hero-visual-caption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-visual-caption i { color: var(--orange); font-size: 1.2rem; }

/* =========================================================
   Quick Enquiry Strip
   ========================================================= */
.quick-strip { padding: 0 0 3.5rem; }
.quick-strip-box {
  background-color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}
.quick-strip-text h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.quick-strip-text p {
  color: #c7d0dd;
  margin-bottom: 0;
  max-width: 480px;
}
.quick-strip-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.quick-strip-actions .btn-outline-navy {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: transparent;
}
.quick-strip-actions .btn-outline-navy:hover {
  background-color: #fff;
  color: var(--navy);
}

/* =========================================================
   Services
   ========================================================= */
.services-section { background-color: #fff; }
.service-card {
  background-color: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background-color: rgba(242, 128, 43, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.94rem; margin-bottom: 0; }

.service-card-cta {
  background-color: var(--navy);
  border-color: var(--navy);
}
.service-card-cta .service-icon {
  background-color: rgba(255,255,255,0.12);
  color: var(--orange);
}
.service-card-cta h3, .service-card-cta p { color: #fff; }
.service-card-cta p { color: #c7d0dd; }
.service-card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.service-card-link:hover { color: #fff; }

.service-cta-band {
  margin-top: 3rem;
  background-color: var(--bg-light);
  border: 1px dashed var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.service-cta-band h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.service-cta-band p { margin-bottom: 0; }

/* =========================================================
   Why Us
   ========================================================= */
.why-us-section { background-color: var(--bg-light); }
.rounded-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.feature-list {
  margin: 1.3rem 0 1.6rem;
  display: grid;
  gap: 0.75rem;
}
.feature-list li {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}
.feature-list i { color: var(--whatsapp); margin-right: 8px; }

/* =========================================================
   How It Works
   ========================================================= */
.how-it-works-section { background-color: #fff; }
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.step-item {
  flex: 1;
  text-align: center;
  padding: 0 0.6rem;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.step-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.93rem; margin-bottom: 0; }
.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background-color: var(--border-soft);
  margin-top: 28px;
}

@media (max-width: 991.98px) {
  .steps-row { flex-direction: column; gap: 2rem; }
  .step-connector { display: none; }
}

/* =========================================================
   WhatsApp Enquiry Section (Dark)
   ========================================================= */
.whatsapp-enquiry-section {
  background-color: var(--navy);
  background-image: none;
}
.text-white-70 { color: #c7d0dd; }
.whatsapp-bullet-list { margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.whatsapp-bullet-list li {
  color: #e3e8f0;
  font-weight: 500;
  font-size: 0.97rem;
}
.whatsapp-bullet-list i {
  color: var(--orange);
  margin-right: 8px;
  font-weight: 700;
}

.enquiry-form-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.enquiry-form-card h3 { color: var(--navy); font-size: 1.3rem; }
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.req { color: var(--orange); }
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,128,43,0.15);
}
.invalid-feedback { font-size: 0.82rem; }
.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2rem;
}
.form-status.status-success { color: var(--whatsapp-dark); }
.form-status.status-error { color: #C62828; }
.call-alt-line { font-size: 0.9rem; color: var(--grey-text); }
.call-alt-line a { color: var(--orange); font-weight: 700; }

/* =========================================================
   Location Section
   ========================================================= */
.location-section { background-color: #fff; }
.location-info-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.location-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.location-info-card h3 i { color: var(--orange); }
.location-address { font-size: 1rem; color: var(--charcoal); margin-bottom: 1.6rem; }
.location-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.map-placeholder {
  background-color: var(--navy);
  border-radius: var(--radius-md);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-placeholder-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}
.map-placeholder-inner i { font-size: 2.6rem; color: var(--orange); margin-bottom: 0.8rem; display: block; }
.map-placeholder-inner h4 { color: #fff; font-size: 1.25rem; margin-bottom: 0.2rem; }
.map-placeholder-inner p { color: #c7d0dd; margin-bottom: 1.2rem; }
.map-placeholder-inner .btn-outline-navy { color: #fff; border-color: rgba(255,255,255,0.5); }
.map-placeholder-inner .btn-outline-navy:hover { background-color: #fff; color: var(--navy); }

/* =========================================================
   Local Area Section
   ========================================================= */
.local-area-section { background-color: var(--bg-light); }
.local-area-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  background-color: #fff;
}
.local-area-box h2 { font-size: 1.5rem; }

/* =========================================================
   Conversion Band
   ========================================================= */
.conversion-band {
  background-color: var(--navy-dark);
  padding: 3rem 0;
}
.conversion-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.conversion-band-inner h2 { color: #fff; font-size: 1.7rem; margin-bottom: 0.3rem; }
.conversion-band-inner p { color: #c7d0dd; margin-bottom: 0; }
.conversion-band-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background-color: #fff; }
.faq-accordion { max-width: 800px; margin: 2rem auto 0; }
.accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  background-color: #fff;
}
.accordion-button:not(.collapsed) {
  color: var(--navy);
  background-color: rgba(242,128,43,0.06);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(242,128,43,0.15); }
.accordion-body { color: var(--grey-text); font-size: 0.95rem; }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta-section { background-color: var(--bg-light); }
.final-cta-section h2 { font-size: 2rem; margin-bottom: 0.6rem; }
.final-cta-section p { max-width: 480px; margin: 0 auto 1.6rem; }
.final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.final-cta-phone {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background-color: var(--navy-dark);
  color: #c7d0dd;
  padding: 3.5rem 0 1.5rem;
  margin-bottom: 66px; /* space for mobile sticky bar */
}
.footer-brand { color: #fff; font-size: 1.3rem; margin-bottom: 0.6rem; }
.footer-text { color: #a9b4c5; font-size: 0.92rem; }
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.1rem;
}
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { color: #a9b4c5; font-size: 0.92rem; }
.footer-links a:hover { color: var(--orange); }
.footer-address { color: #a9b4c5; font-size: 0.92rem; line-height: 1.6; }
.footer-divider { border-color: rgba(255,255,255,0.12); margin: 2.2rem 0 1.2rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; color: #8b96a8; }
.footer-privacy { color: #8b96a8; }
.footer-privacy:hover { color: var(--orange); }

@media (min-width: 992px) {
  .site-footer { margin-bottom: 0; }
}

/* =========================================================
   Mobile Sticky CTA
   ========================================================= */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 0.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #fff;
}
.mobile-sticky-call { background-color: var(--orange); }
.mobile-sticky-whatsapp { background-color: var(--whatsapp); }

/* =========================================================
   Floating WhatsApp (desktop)
   ========================================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 1040;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  color: #fff;
  transform: scale(1.06);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   Back to top
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--navy);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 1039;
  transition: opacity 0.25s ease, transform 0.2s ease;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { transform: translateY(-2px); }

@media (max-width: 991.98px) {
  .floating-whatsapp { display: none !important; }
  .back-to-top { bottom: 84px; right: 16px; }
}

/* =========================================================
   Reveal animation (IntersectionObserver driven)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive breakpoints
   ========================================================= */

/* Desktop large */
@media (min-width: 1440px) {
  .hero-title { font-size: 3.4rem; }
}

/* Tablet / small desktop */
@media (max-width: 1199.98px) {
  .hero-title { font-size: 2.6rem; }
}

@media (max-width: 991.98px) {
  .hero-title { font-size: 2.25rem; }
  .section-heading h2 { font-size: 1.8rem; }
  .hero-img { height: 360px; }
  .why-us-section .order-lg-1 { order: 2; }
  .why-us-section .order-lg-2 { order: 1; }
}

/* Mobile */
@media (max-width: 767.98px) {
  body { padding-bottom: 0; }
  .section-pad { padding: 3rem 0; }
  .section-pad-sm { padding: 2rem 0; }
  .hero-section { padding: 2rem 0 1.5rem; }
  .hero-title { font-size: 2.1rem; line-height: 1.2; }
  .hero-text { font-size: 1rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }
  .hero-img { height: 260px; }
  .quick-strip-box { flex-direction: column; align-items: flex-start; padding: 1.6rem; }
  .quick-strip-actions { width: 100%; flex-direction: column; }
  .quick-strip-actions .btn { width: 100%; }
  .service-cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .service-cta-band .btn { width: 100%; }
  .conversion-band-inner { text-align: center; justify-content: center; }
  .conversion-band-actions { width: 100%; justify-content: center; }
  .conversion-band-actions .btn { width: 100%; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions .btn { width: 100%; }
  .location-actions { flex-direction: column; }
  .location-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  main { padding-bottom: 66px; }
}

@media (max-width: 425px) {
  .hero-title { font-size: 1.9rem; }
  .brand-text { font-size: 1.2rem; }
}

@media (max-width: 375px) {
  .hero-title { font-size: 1.75rem; }
  .section-heading h2 { font-size: 1.5rem; }
}

/* Prevent horizontal scroll safety net */
html, body { max-width: 100%; overflow-x: hidden; }
