.navbar .navbar-brand {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
@media (max-width: 576px) {
  .navbar .navbar-brand {
    font-size: 1rem;
    gap: 0.25em;
    white-space: nowrap;
  }
}
/* Main site CSS extracted from index.html */
:root {
  --orange: #e84c1a;
  --orange-hover: #c73d10;
  --dark-bg: #1a1a1a;
  --card-bg: #2a2a2a;
  --card-bg2: #222222;
  --text-muted-custom: #aaa;
  --border-color: #333;
}
* { box-sizing: border-box; }
body {
  font-family: 'Hind Siliguri', sans-serif;
  background-color: var(--dark-bg);
  color: #fff;
  margin: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #111 !important;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.navbar,
.navbar .navbar-brand,
.navbar .nav-link,
.navbar .navbar-toggler,
.navbar .navbar-nav .nav-link {
  color: #fff !important;
  font-family: 'Hind Siliguri', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.13rem);
  letter-spacing: 0.5px;
}
.navbar .nav-link.active,
.navbar .nav-link:focus,
.navbar .nav-link:hover {
  color: var(--orange) !important;
}
.navbar .navbar-brand {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}
.navbar .fire-icon {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
}
@media (max-width: 576px) {
  .navbar .navbar-brand {
    font-size: 0.8rem;
  }
  .navbar .nav-link {
    font-size: 0.97rem;
  }
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.section-title .orange { color: var(--orange); }

.section-side-images {
  position: relative;
  overflow: hidden;
}

.section-side-img {
  position: absolute;
  width: 14rem;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  transform: translateY(-50%);
  filter: drop-shadow(0 4px 14px rgba(232, 76, 26, 0.28));
  pointer-events: none;
  z-index: 0;
}

.top-1 { top: 10rem; }
.top-2 { top: 6rem; }

.section-side-img.side-left {
  left: 18px;
}

.section-side-img.side-right {
  right: 18px;
  transform: translateY(-50%) scaleX(-1);
}

.section-side-images > :not(.section-side-img) {
  position: relative;
  z-index: 1;
}

.second-hand-side-images {
  padding: 130px 36px 10px 36px;
}

@media (max-width: 992px) {
  .section-side-img {
    top: 82px;
    width: 84px;
    height: 84px;
    opacity: 0.9;
  }

  .section-side-img.side-left {
    left: 10px;
  }

  .section-side-img.side-right {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .section-side-img {
    top: 72px;
    width: 9rem;
    height: auto;
    opacity: 0.9;
  }

  .section-side-img.side-left {
    left: 8px;
  }

  .section-side-img.side-right {
    right: 8px;
  }

  .second-hand-side-images {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ===== ORANGE TEXT ===== */
.orange {
  color: var(--orange) !important;
}

/* ===== HERO SECTION BACKGROUND ===== */
.hero-section {
  background: url('../assets/hero-bg.jpg') center center/cover no-repeat;
  position: relative;
  z-index: 1;
  min-height: 25rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,29,35,0.7);
  z-index: 0;
}
.hero-section > * {
  position: relative;
  z-index: 1;
}

/* ===== ORANGE BUTTON ===== */
.btn-orange {
  background: var(--orange);
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(232,76,26,0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-orange:hover, .btn-orange:focus {
  background: var(--orange-hover);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(232,76,26,0.16);
}
.btn-orange:active {
  background: #a8320c;
  color: #fff !important;
}

/* ===== OUTLINE LIGHT CUSTOM BUTTON ===== */
.btn-outline-light-custom {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-light-custom:hover, .btn-outline-light-custom:focus {
  background: #fff;
  color: var(--orange) !important;
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,76,26,0.16);
}
.btn-outline-light-custom:active {
  background: #eee;
  color: var(--orange) !important;
  border-color: var(--orange-hover);
}

/* ===== SERVICES SECTION ===== */
.services-section { background-color: #1c1c1c; padding: 70px 0; }
.service-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 24px 20px;
  border: 1px solid #333;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.service-icon {
  width: 44px; height: 44px;
  background-color: rgba(232,76,26,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--orange);
}
.service-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.83rem; color: var(--text-muted-custom); line-height: 1.6; margin: 0; }

/* ===== HOME & EMERGENCY ===== */
.home-emergency-section { background-color: var(--dark-bg); padding: 130px 0px 0px 0px; }
.plan-card {
  background-color: var(--card-bg2);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid #333;
  height: 100%;
}
.plan-icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.plan-card h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.plan-card p { font-size: 0.85rem; color: #aaa; line-height: 1.6; margin-bottom: 20px; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #333; padding: 10px 0; font-size: 0.85rem;
}
.price-row .label { color: #aaa; }
.price-row .price { color: var(--orange); font-weight: 700; font-size: 1rem; }

/* ===== PRODUCTS SECTION ===== */
.products-section { background-color: #1c1c1c; padding: 70px 0; }
.tab-btns .tab-btn {
  background: transparent;
  border: none;
  color: #aaa;
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.tab-btns .tab-btn.active, .tab-btns .tab-btn:hover {
  background: var(--orange);
  color: #fff;
}
.product-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid #333;
  display: flex; flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: var(--orange); }
.product-card .prod-name { font-size: 0.95rem; font-weight: 700; }
.product-card .prod-meta { font-size: 0.78rem; color: #888; display: flex; gap: 12px; }
.product-card .prod-tag {
  display: inline-block;
  background: #333;
  color: #aaa;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 3px;
}
.product-card .prod-price { color: var(--orange); font-weight: 700; font-size: 1rem; margin-top: 4px; }

/* ===== FIND US SECTION ===== */
.find-us-section { background-color: var(--dark-bg); padding: 70px 0; }
.info-card {
  text-align: center;
  padding: 20px;
}
.info-card .info-icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.info-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.info-card p, .info-card a { font-size: 0.85rem; color: #aaa; line-height: 1.7; text-decoration: none; }
.info-card a:hover { color: var(--orange); }
.google-maps-link { color: var(--orange) !important; font-size: 0.8rem; }

/* ===== FOOTER ===== */
footer {
  background-color: #111;
  border-top: 1px solid #222;
  padding: 18px 0;
  font-size: 0.8rem;
  color: #777;
}
footer .brand { color: #fff; font-weight: 700; }
footer .brand span { color: var(--orange); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(232,76,26,0.5);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float i{
  padding-top: 4px;
}

.find-us-section .bi-telephone, .find-us-section .bi-geo-alt, .find-us-section .bi-clock{
  width: 44px;
  height: 44px;
  background-color: rgba(232, 76, 26, 0.15);
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--orange);
}

/* ===== MISC ===== */
.section-divider { border-color: #333; }
.text-center-section { text-align: center; margin-bottom: 48px; }
.section-desc { color: #aaa; font-size: 0.88rem; max-width: 520px; margin: 10px auto 0; line-height: 1.6; }
