/* ==========================================================================
   Bistarwala.com — Responsive Stylesheet (Full Desktop + Single-Screen Mobile Fit)
   ========================================================================== */
:root {
  --navy: #16225c;
  --navy-2: #1c2e78;
  --navy-3: #243a94;
  --navy-dark: #0d163d;

  --orange: #f26522;
  --orange-dark: #d9531a;

  --green: #25a244;
  --green-dark: #1e8a3a;

  --ink: #1f2530;
  --muted: #5b6472;
  --line: #e7e9ef;
  --line-grid: #cbd5e1;
  --border-box: #bcc7dc;

  --cream: #faf3ea;
  --cream-line: #e6dcca;
  --bg: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow: 0 6px 24px rgba(22, 34, 92, 0.08);
  --shadow-sm: 0 2px 8px rgba(22, 34, 92, 0.04);
  --shadow-lg: 0 10px 28px rgba(0, 0, 0, 0.16);

  --maxw: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

/* Visibility Helpers */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none !important;
}

/* ==========================================================================
   DESKTOP HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  position: relative;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.brand-dot {
  color: var(--orange);
}

.brand-tag {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: 2px;
}

/* Desktop Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav+.header-actions {
  margin-left: 0;
}

.site-nav a {
  font-weight: 600;
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.site-nav a:hover {
  color: var(--orange);
}

.site-nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.15s, filter 0.15s;
}

.icon-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.icon-btn.wa {
  background: var(--green);
}

.icon-btn.call {
  background: var(--orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0 10px;
}

.nav-toggle span {
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-wa {
  background: var(--green);
  color: #fff;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   DESKTOP HERO BANNER
   ========================================================================== */
.hero {
  background: linear-gradient(115deg, #141f52 0%, #1c2e78 55%, #243a94 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 52px 0 84px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.22), transparent 62%);
  pointer-events: none;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
  min-height: 340px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #ffd9c2;
  background: rgba(242, 101, 34, 0.18);
  border: 1px solid rgba(242, 101, 34, 0.5);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.7rem;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.hero-title .o {
  color: var(--orange);
}

.hero-sub {
  color: #d5dcf7;
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-free {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(37, 162, 68, 0.9);
  background: rgba(37, 162, 68, 0.16);
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 24px;
}

.hero-free .free-truck-icon {
  color: #54e07d;
  display: flex;
  align-items: center;
}

.hero-free .free-text-head {
  color: #ffffff;
  font-size: 0.95rem;
}

.hero-free .free-text-head b,
.hero-free .free-text-head .green-b {
  color: #8ef0a9;
}

.hero-free .free-text-sub {
  color: #eaf0ff;
  font-size: 0.85rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-decor {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.hero-decor .blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 68%);
  border-radius: 50%;
}

.hero-decor .ic {
  position: absolute;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.hero-decor .ic svg {
  width: 104px;
  height: 86px;
}

.hero-decor .ic.big {
  color: #fff;
}

.hero-decor .ic.big svg {
  width: 140px;
  height: 116px;
}

.hero-decor .i1 {
  top: 6%;
  left: 20%;
}

.hero-decor .i2 {
  top: 34%;
  right: 6%;
}

.hero-decor .i3 {
  bottom: 6%;
  left: 8%;
}

.hero-decor .i4 {
  bottom: 14%;
  right: 20%;
}

/* ==========================================================================
   DESKTOP USP STRIP (FLOATING)
   ========================================================================== */
.usp-wrap {
  position: relative;
}

.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
  margin-top: -52px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.usp {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-left: 1.5px solid var(--line);
}

.usp:first-child {
  border-left: 0;
}

.usp svg {
  color: var(--navy);
  flex-shrink: 0;
}

.usp-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.25;
}

.usp-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

.usp .free-txt {
  color: var(--green-dark);
}

/* ==========================================================================
   OUR RENTAL ITEMS SECTION (4-COLUMN GRID)
   ========================================================================== */
.section {
  padding: 38px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.section-title-underline {
  width: 64px;
  height: 4px;
  background: var(--orange);
  border-radius: 3px;
  display: inline-block;
  margin: 0;
}

.items-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.item-card {
  border: 1.8px solid #c8d3e6;
  border-radius: var(--radius);
  padding: 18px 12px 14px;
  text-align: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  min-height: 145px;
}

.item-card:hover {
  box-shadow: var(--shadow);
  border-color: #94a3b8;
  transform: translateY(-2px);
}

.item-icon-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 10px;
}

.item-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.2;
}

.item-price {
  color: var(--orange);
  font-weight: 700;
  margin-top: 4px;
  font-size: 0.98rem;
}

/* Green WhatsApp Button below 16 Items Grid */
.item-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.btn-wa-wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00a859;
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 28px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 168, 89, 0.28);
  transition: transform 0.15s ease, filter 0.15s ease;
  cursor: pointer;
}

.btn-wa-wide:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.btn-wa-wide svg {
  color: #ffffff;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-wa-wide .btn-wa-text {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  font-size: 0.98rem;
  white-space: nowrap;
}



/* ==========================================================================
   OUR WAREHOUSES SECTION
   ========================================================================== */
.section-warehouses {
  padding: 10px 0 34px;
}

.warehouses-card {
  background: var(--cream);
  border: 1.5px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 30px 16px;
}

.wh-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.wh-item {
  text-align: center;
  padding: 6px 12px;
  border-left: 1.5px solid var(--cream-line);
}

.wh-item:first-child {
  border-left: 0;
}

.wh-icon-pin {
  color: var(--orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wh-sec-title {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}

.wh-city-title {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #ffffff;
  text-align: center;
  padding: 34px 0;
  margin-top: 20px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-tag {
  color: #c9d1f0;
  margin: 4px 0 16px;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.footer-nav a {
  color: #dfe4fa;
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact {
  margin: 6px 0;
}

.footer-contact-link {
  color: #ffffff;
  font-weight: 500;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}

.footer-copy {
  color: #aab3e0;
  font-size: 0.85rem;
  margin-top: 12px;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP + CALL STACK)
   ========================================================================== */
.floating-actions-stack {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-circle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.floating-circle-btn:hover {
  transform: scale(1.08);
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.floating-circle-btn.floating-wa {
  background: #00a859;
}

.floating-circle-btn.floating-call {
  background: var(--orange);
}

.floating-circle-btn svg {
  color: #ffffff;
  display: block;
}

/* ==========================================================================
   CONTENT PAGES (About, Contact, Privacy, Terms)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 40px 0;
}

.page-hero h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
}

.page-hero p {
  margin: 8px 0 0;
  color: #cfd6f7;
}

.content {
  padding: 34px 0;
}

.content h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 26px 0 8px;
}

.content p {
  margin: 16px;
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.info-card,
.form-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-row:last-child {
  border-bottom: 0;
}

.map-wrap {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  height: 350px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
}

.input-affix {
  display: flex;
}

.input-affix .prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #f4f6fb;
  border: 1.5px solid var(--line);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  font-weight: 600;
  color: var(--navy);
}

.input-affix input {
  border-radius: 0 10px 10px 0;
}

/* --- ABOUT PAGE COMPONENTS (Desktop layout) --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.svc-card {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(22, 34, 92, 0.07);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-circle.orange {
  background: rgba(242, 101, 34, 0.08);
  color: var(--orange);
}

.icon-circle.green {
  background: rgba(37, 162, 68, 0.08);
  color: var(--green);
}

.svc-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.svc-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.why-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-card .ic {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f4f9;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}

.chip svg {
  color: var(--green);
  flex-shrink: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 20px;
}

.panel {
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  border: 1.5px solid var(--line);
}

.panel.cream {
  background: var(--cream);
  border-color: var(--cream-line);
}

.panel.navy {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.panel h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--navy);
}

.panel.navy h3 {
  color: #ffffff;
}

.panel p {
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0 0 10px;
}

.panel p:last-child {
  margin-bottom: 0;
}

.panel.navy p {
  color: #cfd6f7;
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  margin-top: 26px;
}

.cta-band h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff;
}

.cta-band p {
  font-size: 0.95rem;
  color: #cfd6f7;
  margin: 0 0 20px;
}

.cta-band .hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   MOBILE VIEW (FITS ENTIRE SCREEN WITHOUT SCROLLING + INCREASED BORDERS)
   ========================================================================== */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  /* Full-height dynamic viewport container (only on screens with height >= 700px) */
  @media (min-height: 700px) {

    html,
    body {
      height: 100%;
      min-height: 100dvh;
      overflow-y: auto;
    }

    body {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100dvh;
      line-height: 1.25;
      background: #ffffff;
    }

    main {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 0;
    }
  }

  /* Fallback scroll settings for small mobile screen heights (< 700px) */
  @media (max-height: 699px) {

    html,
    body {
      height: auto;
      min-height: 100%;
      overflow-y: auto;
    }

    body {
      display: block;
      line-height: 1.25;
      background: #ffffff;
    }

    main {
      display: block;
    }

    .section-items {
      padding: 10px 0;
    }

    .section-warehouses {
      padding: 10px 0;
    }

    .warehouses-card {
      padding: 10px 8px;
    }
  }

  .container {
    padding: 0 8px;
  }

  /* Compact Header */
  .site-header {
    background: #ffffff;
    border-bottom: 1.5px solid #dbe2ef;
    flex-shrink: 0;
  }

  .header-inner {
    padding: clamp(4px, 0.8vh, 8px) 8px;
    gap: 6px;
  }

  .brand-name {
    font-size: 1.35rem;
    letter-spacing: -0.4px;
  }

  .brand-tag {
    font-size: 0.66rem;
    margin-top: 0;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 34px;
    height: 34px;
    padding: 0 6px;
  }

  .nav-toggle span {
    height: 2.5px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 12px 20px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.25s ease;
    z-index: 95;
    margin: 0;
  }

  .site-nav.open {
    right: 0;
  }

  .nav-drawer-head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px 10px;
    border-bottom: 1.5px solid var(--line);
    margin-bottom: 4px;
  }

  .nav-drawer-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
  }

  .nav-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f4f9;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    cursor: pointer;
    transition: transform 0.15s, background-color 0.15s;
  }

  .nav-close:hover,
  .nav-close:active {
    background: #e2e8f0;
    transform: scale(1.05);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 92;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  /* --- COMPACT HERO & 2x2 USP (INCREASED BORDERS) --- */
  .hero {
    background: #ffffff;
    color: var(--ink);
    padding: clamp(3px, 0.8vh, 8px) 0;
    border-bottom: 1.5px solid #dbe2ef;
    flex-shrink: 0;
  }

  .hero::before {
    display: none;
  }

  .hero-banner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 6px;
    align-items: stretch;
    min-height: 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-title {
    color: var(--navy);
    font-size: clamp(0.88rem, 2.8vw, 1.15rem);
    font-weight: 800;
    line-height: 1.16;
    margin-bottom: 3px;
    letter-spacing: -0.3px;
  }

  .hero-title .o {
    color: var(--orange);
  }

  /* Free Delivery Box with Increased 1.8px Green Border */
  .hero-free {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1.8px solid #25a244;
    background: #f2fbf4;
    border-radius: 8px;
    padding: clamp(3px, 0.6vh, 6px) 6px;
    margin-bottom: 0;
  }

  .hero-free .free-truck-icon svg {
    width: clamp(18px, 4.5vw, 22px);
    height: clamp(18px, 4.5vw, 22px);
    color: var(--green);
  }

  .hero-free .free-text-head {
    color: var(--ink);
    font-size: clamp(0.6rem, 1.8vw, 0.7rem);
    font-weight: 700;
    line-height: 1.15;
  }

  .hero-free .free-text-head b,
  .hero-free .free-text-head .green-b {
    color: var(--green-dark);
    font-weight: 800;
  }

  .hero-free .free-text-sub {
    color: var(--muted);
    font-size: clamp(0.55rem, 1.6vw, 0.65rem);
    line-height: 1.1;
  }

  /* 2x2 USP Box with Clean Borders */
  .hero-usp-mobile {
    display: block !important;
  }

  .usp-2x2-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    border: 1.8px solid #cfcfcf;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
  }

  .usp-cell {
    padding: clamp(2px, 0.6vh, 6px) 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1.5px solid #bcc7dc;
    border-top: 1.5px solid #bcc7dc;
  }

  .usp-cell:nth-child(odd) {
    border-left: 0;
  }

  .usp-cell:nth-child(-n+2) {
    border-top: 0;
  }

  .usp-cell svg {
    color: var(--navy);
    margin-bottom: 2px;
    width: clamp(16px, 4vw, 20px);
    height: clamp(16px, 4vw, 20px);
  }

  .usp-cell .usp-head {
    font-size: clamp(0.54rem, 1.6vw, 0.64rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
  }

  .usp-cell .usp-sub {
    font-size: clamp(0.48rem, 1.4vw, 0.58rem);
    color: var(--muted);
    line-height: 1.1;
  }

  .usp-cell .green-txt {
    color: var(--green-dark);
    font-weight: 800;
  }

  /* --- OUR RENTAL ITEMS SECTION --- */
  .section-items {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 3px 0;
  }

  .section-items .container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .section-head {
    margin-bottom: 3px;
    flex-shrink: 0;
  }

  .section-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 2px;
  }

  .section-title-underline {
    width: 36px;
    height: 2.5px;
    display: inline-block;
    margin: 0;
  }

  /* 4-Column Items Grid for Small Mobile */
  .items-grid-4col {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    min-height: 0;
  }

  .item-card {
    border: 1.6px solid #cfcfcf;
    border-radius: 8px;
    padding: 3px 2px 2px;
    min-height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(22, 34, 92, 0.04);
  }

  .item-icon-wrap {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
  }

  .item-icon-wrap svg {
    width: 36px;
    height: 24px;
    stroke-width: 2.2;
  }

  .item-name {
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1px;
  }

  .item-price {
    font-size: 0.62rem;
    font-weight: 800;
    margin-top: 0;
  }

  /* Green WhatsApp Button on Mobile below 16 Items Grid */
  .item-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .btn-wa-wide {
    width: auto;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 6px 20px;
    border-radius: 30px;
    background: #00a859;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 168, 89, 0.28);
    text-decoration: none;
  }

  .btn-wa-wide svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .btn-wa-wide .btn-wa-text {
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #ffffff;
    white-space: nowrap;
  }



  /* --- WAREHOUSES SECTION (WHITE BACKGROUND, NO ORANGE, CLEAN BORDER) --- */
  .section-warehouses {
    flex-shrink: 0;
    padding: 3px 0;
  }

  .warehouses-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px;
    padding: 4px 4px;
    box-shadow: 0 1px 3px rgba(22, 34, 92, 0.04);
  }

  .warehouses-card .section-head {
    margin-bottom: 2px;
  }

  .warehouses-card .section-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy);
  }

  .warehouses-card .section-title-underline {
    width: 28px;
    height: 2px;
    background: var(--navy);
    display: inline-block;
    margin: 2px 0 3px;
  }

  .wh-grid-4col {
    gap: 0;
  }

  .wh-item {
    padding: 2px 2px;
    border-left: 1.2px solid #cfcfcf;
  }

  .wh-icon-pin {
    color: var(--navy);
    margin-bottom: 2px;
  }

  .wh-icon-pin svg {
    width: 15px;
    height: 15px;
  }

  .wh-sec-title {
    font-size: 0.62rem;
    font-weight: 800;
    color: var(--navy);
  }

  .wh-city-title {
    font-size: 0.54rem;
    color: var(--muted);
    margin-top: 0;
  }

  /* --- FOOTER ON MOBILE --- */
  .site-footer {
    flex-shrink: 0;
    padding: 5px 0 4px;
    margin-top: 0;
  }

  .footer-brand {
    font-size: 0.95rem;
  }

  .footer-tag {
    font-size: 0.62rem;
    margin: 1px 0 2px;
  }

  .footer-nav {
    gap: 3px 8px;
    margin-bottom: 2px;
  }

  .footer-nav a {
    font-size: 0.58rem;
  }

  .footer-contact {
    font-size: 0.62rem;
    margin: 1px 0;
  }

  .footer-copy {
    font-size: 0.54rem;
    margin-top: 1px;
  }

  /* Floating WhatsApp Button on Mobile (Call is desktop-only) */
  .floating-actions-stack {
    position: fixed;
    right: 14px;
    bottom: 16px;
    z-index: 999;
    display: none !important;
    flex-direction: column;
    align-items: center;
  }

  .floating-circle-btn {
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px rgba(0, 168, 89, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .floating-circle-btn.floating-wa svg {
    width: 25px;
    height: 25px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* --- ABOUT & CONTACT PAGE SPACING (mobile py-10) --- */
  body:not(.page-home) .page-hero {
    padding: 10px 0;
  }

  body:not(.page-home) .page-hero h1 {
    font-size: 1.35rem;
  }

  body:not(.page-home) .section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  body:not(.page-home) .content {
    padding: 10px 0;
  }

  /* --- FIX FOOTER POSITION ON MOBILE CONTENT PAGES --- */
  body:not(.page-home) {
    display: block !important;
    height: auto !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
  }

  body:not(.page-home) main {
    display: block !important;
    height: auto !important;
    min-height: auto !important;
  }

  /* --- ABOUT PAGE MOBILE OVERRIDES --- */
  .grid-3,
  .why-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .svc-card,
  .why-card,
  .panel {
    padding: 16px;
  }

  .cta-band {
    padding: 24px 16px;
    margin-top: 16px;
  }

  .cta-band h2 {
    font-size: 1.2rem;
  }

  .cta-band p {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  /* --- CONTACT PAGE MOBILE OVERRIDES --- */
  .info-card,
  .form-card {
    padding: 16px;
  }

  .map-wrap {
    margin-top: 16px;
    height: 250px;
  }
}

/* ==========================================================================
   TALL / LONG HEIGHT MOBILE SCREENS (HEIGHT >= 750px e.g. iPhone 11/12/13/14/15)
   ========================================================================== */
@media (max-width: 768px) and (min-height: 750px) {
  .header-inner {
    padding: 8px 10px;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand-tag {
    font-size: 0.72rem;
  }

  .hero {
    padding: 8px 0;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .hero-free {
    padding: 6px 8px;
  }

  .hero-free .free-truck-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-free .free-text-head {
    font-size: 0.7rem;
  }

  .usp-cell {
    padding: 6px 3px;
  }

  .usp-cell svg {
    width: 22px;
    height: 22px;
  }

  .usp-cell .usp-head {
    font-size: 0.64rem;
  }

  .section-items {
    padding: 6px 0;
  }

  .section-head {
    margin-bottom: 6px;
  }

  .section-title {
    font-size: 1.05rem;
  }

  .items-grid-4col {
    gap: 7px;
  }

  .item-card {
    padding: 8px 4px 6px;
    justify-content: space-evenly;
  }

  .item-icon-wrap {
    min-height: 36px;
  }

  .item-icon-wrap svg {
    width: 48px;
    height: 38px;
    stroke-width: 2.2;
  }

  .item-name {
    font-size: 0.72rem;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .item-price {
    font-size: 0.78rem;
  }

  /* Green WhatsApp Button on Tall Screens */
  .item-cta-wrap {
    margin-top: 8px;
  }

  .btn-wa-wide {
    padding: 8px 24px;
    gap: 8px;
  }

  .btn-wa-wide svg {
    width: 18px;
    height: 18px;
  }

  .btn-wa-wide .btn-wa-text {
    font-size: 12px;
    font-weight: 700;
  }



  .section-warehouses {
    padding: 6px 0;
  }

  .warehouses-card {
    padding: 7px 6px 5px;
  }

  .warehouses-card .section-title {
    font-size: 0.95rem;
  }

  .wh-sec-title {
    font-size: 0.72rem;
  }

  .wh-city-title {
    font-size: 0.64rem;
  }

  .site-footer {
    padding: 8px 0 6px;
  }

  .footer-brand {
    font-size: 1.05rem;
  }
}