/* BBS Cables Nawabpur — Premium local showroom design */
:root {
  --bbs-red: #c8102e;
  --bbs-red-dark: #a30d25;
  --bbs-red-light: #fdf2f4;
  --bbs-charcoal: #1a1a2e;
  --bbs-gray-700: #4a4a5a;
  --bbs-gray-500: #6b7280;
  --bbs-gray-300: #d1d5db;
  --bbs-gray-100: #f3f4f6;
  --bbs-white: #ffffff;
  --bbs-shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  --bbs-shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.12);
  --bbs-radius: 12px;
  --bbs-radius-lg: 16px;
  --bbs-header-h: 72px;
  --bbs-mobile-cta-h: 64px;
  --bbs-font: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body.bbs-nawabpur {
  font-family: var(--bbs-font);
  color: var(--bbs-charcoal);
  background: var(--bbs-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--bbs-mobile-cta-h);
}
@media (min-width: 768px) { body.bbs-nawabpur { padding-bottom: 0; } }
img, svg, iframe, video { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
a { color: var(--bbs-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bbs-red-dark); }
.portfolio-rich p { margin-bottom: 0.75rem; }

.bbs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem; font-size: 0.9375rem; font-weight: 600; border-radius: 8px;
  border: 2px solid transparent; cursor: pointer; transition: all 0.2s ease;
  text-decoration: none; white-space: nowrap; min-height: 48px;
}
.bbs-btn--primary { background: var(--bbs-red); color: var(--bbs-white); border-color: var(--bbs-red); }
.bbs-btn--primary:hover { background: var(--bbs-red-dark); border-color: var(--bbs-red-dark); color: var(--bbs-white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200, 16, 46, 0.3); }
.bbs-btn--outline { background: transparent; color: var(--bbs-charcoal); border-color: var(--bbs-gray-300); }
.bbs-btn--outline:hover { border-color: var(--bbs-red); color: var(--bbs-red); }
.bbs-btn--white { background: var(--bbs-white); color: var(--bbs-red); border-color: var(--bbs-white); }
.bbs-btn--white:hover { background: var(--bbs-gray-100); color: var(--bbs-red-dark); }
.bbs-btn--whatsapp { background: #25d366; color: var(--bbs-white); border-color: #25d366; }
.bbs-btn--whatsapp:hover { background: #1da851; color: var(--bbs-white); }
.bbs-btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; min-height: 40px; }
.bbs-btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.bbs-btn:focus-visible, .bbs-menu-toggle:focus-visible, .bbs-faq__question:focus-visible { outline: 2px solid var(--bbs-red); outline-offset: 2px; }

.bbs-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bbs-gray-100); box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}
.bbs-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--bbs-header-h); gap: 1rem; }
.bbs-logo { display: flex; flex-direction: column; line-height: 1.15; text-decoration: none; }
.bbs-logo__primary { font-size: 0.8125rem; font-weight: 700; color: var(--bbs-red); letter-spacing: 0.04em; text-transform: uppercase; }
.bbs-logo__secondary { font-size: 1.125rem; font-weight: 800; color: var(--bbs-charcoal); }
.bbs-nav { display: none; }
@media (min-width: 1024px) {
  .bbs-nav { display: block; }
  .bbs-nav__list { display: flex; gap: 0.25rem; list-style: none; }
  .bbs-nav__list a { display: block; padding: 0.5rem 0.875rem; color: var(--bbs-gray-700); font-size: 0.9375rem; font-weight: 500; border-radius: 6px; text-decoration: none; }
  .bbs-nav__list a:hover, .bbs-nav__list a.is-active { color: var(--bbs-red); background: var(--bbs-red-light); }
}
.bbs-header__actions { display: none; gap: 0.5rem; }
@media (min-width: 1024px) { .bbs-header__actions { display: flex; } }
.bbs-menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 8px; }
.bbs-menu-toggle span { display: block; height: 2px; background: var(--bbs-charcoal); border-radius: 2px; }
@media (min-width: 1024px) { .bbs-menu-toggle { display: none; } }
.bbs-mobile-nav { background: var(--bbs-white); border-top: 1px solid var(--bbs-gray-100); padding: 1rem 1.25rem 1.5rem; }
.bbs-mobile-nav ul { list-style: none; }
.bbs-mobile-nav a { display: block; padding: 0.75rem 0; color: var(--bbs-charcoal); font-weight: 500; border-bottom: 1px solid var(--bbs-gray-100); text-decoration: none; }
.bbs-main { padding-top: var(--bbs-header-h); }

.bbs-section { padding: 4rem 0; }
@media (min-width: 768px) { .bbs-section { padding: 5rem 0; } }
.bbs-section--gray { background: var(--bbs-gray-100); }
.bbs-section--red-light { background: var(--bbs-red-light); }
.bbs-section__header { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.bbs-eyebrow { display: inline-block; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bbs-red); margin-bottom: 0.75rem; }
.bbs-section__title { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; color: var(--bbs-charcoal); line-height: 1.2; margin-bottom: 0.75rem; }
.bbs-section__subtitle { font-size: 1.0625rem; color: var(--bbs-gray-500); line-height: 1.7; }

.bbs-hero { background: linear-gradient(135deg, var(--bbs-charcoal) 0%, #2a2a40 100%); color: var(--bbs-white); overflow: hidden; }
.bbs-hero__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; min-height: calc(100dvh - var(--bbs-header-h)); padding: 2.5rem 0 3rem; }
@media (min-width: 992px) { .bbs-hero__grid { grid-template-columns: 1fr 1fr; padding: 3rem 0; } }
.bbs-hero__badge { display: inline-block; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bbs-red); background: rgba(200, 16, 46, 0.15); padding: 0.375rem 0.875rem; border-radius: 4px; margin-bottom: 1rem; }
.bbs-hero__title { font-size: clamp(2.25rem, 6vw, 3.25rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.bbs-hero__subtitle { font-size: clamp(1rem, 2.5vw, 1.1875rem); color: rgba(255, 255, 255, 0.85); margin-bottom: 1.5rem; }
.bbs-hero__desc { font-size: 1rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2rem; }
.bbs-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.bbs-hero__location { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.75); }
.bbs-hero__location i { color: var(--bbs-red); }
.bbs-hero__image { border-radius: var(--bbs-radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--bbs-shadow-lg); }
.bbs-hero__image img { width: 100%; height: 100%; object-fit: cover; }

.bbs-trust-strip { background: var(--bbs-white); border-bottom: 1px solid var(--bbs-gray-100); padding: 1.25rem 0; }
.bbs-trust-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .bbs-trust-strip__grid { grid-template-columns: repeat(5, 1fr); } }
.bbs-trust-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8125rem; font-weight: 600; color: var(--bbs-gray-700); }
@media (min-width: 768px) { .bbs-trust-item { font-size: 0.875rem; justify-content: center; text-align: center; flex-direction: column; } }
.bbs-trust-item__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bbs-red-light); color: var(--bbs-red); border-radius: 50%; flex-shrink: 0; }

.bbs-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 576px) { .bbs-cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .bbs-cards--3 { grid-template-columns: repeat(3, 1fr); } .bbs-cards--4 { grid-template-columns: repeat(4, 1fr); } }
.bbs-card { background: var(--bbs-white); border: 1px solid var(--bbs-gray-100); border-radius: var(--bbs-radius); padding: 1.5rem; transition: box-shadow 0.2s, transform 0.2s; height: 100%; }
.bbs-card:hover { box-shadow: var(--bbs-shadow); transform: translateY(-2px); }
.bbs-card__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--bbs-red-light); color: var(--bbs-red); border-radius: 10px; font-size: 1.25rem; margin-bottom: 1rem; }
.bbs-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.bbs-card__text { font-size: 0.9375rem; color: var(--bbs-gray-500); }

.bbs-looking-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; background: var(--bbs-white); border: 2px solid var(--bbs-gray-100); border-radius: var(--bbs-radius); transition: all 0.2s; text-decoration: none; color: inherit; height: 100%; }
.bbs-looking-card:hover { border-color: var(--bbs-red); box-shadow: var(--bbs-shadow); transform: translateY(-2px); color: inherit; }
.bbs-looking-card__icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--bbs-red-light); color: var(--bbs-red); border-radius: 12px; font-size: 1.5rem; margin-bottom: 1rem; }
.bbs-looking-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.375rem; }
.bbs-looking-card__desc { font-size: 0.8125rem; color: var(--bbs-gray-500); }

.bbs-cta-banner { background: linear-gradient(135deg, var(--bbs-red) 0%, var(--bbs-red-dark) 100%); color: var(--bbs-white); border-radius: var(--bbs-radius-lg); padding: 2.5rem 2rem; text-align: center; }
.bbs-cta-banner__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; }
.bbs-cta-banner__text { font-size: 1.0625rem; opacity: 0.9; max-width: 560px; margin: 0 auto 1.5rem; }
.bbs-cta-banner__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.bbs-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .bbs-gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.bbs-gallery__item { position: relative; border-radius: var(--bbs-radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bbs-gray-100); }
.bbs-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.bbs-gallery__item:hover img { transform: scale(1.04); }
.bbs-gallery__caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.75rem; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: var(--bbs-white); font-size: 0.8125rem; }

.bbs-team-card { background: var(--bbs-white); border: 1px solid var(--bbs-gray-100); border-radius: var(--bbs-radius); padding: 1.5rem; text-align: center; height: 100%; }
.bbs-team-card__avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--bbs-red-light); color: var(--bbs-red); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; font-weight: 700; margin: 0 auto 1rem; overflow: hidden; }
.bbs-team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.bbs-team-card__name { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; }
.bbs-team-card__role { font-size: 0.875rem; color: var(--bbs-red); font-weight: 600; margin-bottom: 0.5rem; }
.bbs-team-card__desc { font-size: 0.875rem; color: var(--bbs-gray-500); margin-bottom: 1rem; }
.bbs-team-card__actions { display: flex; gap: 0.5rem; justify-content: center; }

.bbs-location { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 992px) { .bbs-location { grid-template-columns: 1fr 1.2fr; } }
.bbs-location__info { background: var(--bbs-white); border: 1px solid var(--bbs-gray-100); border-radius: var(--bbs-radius-lg); padding: 2rem; }
.bbs-location__item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--bbs-gray-100); }
.bbs-location__item:last-child { border-bottom: none; }
.bbs-location__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--bbs-red-light); color: var(--bbs-red); border-radius: 10px; flex-shrink: 0; }
.bbs-location__label { font-size: 0.8125rem; font-weight: 600; color: var(--bbs-gray-500); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }
.bbs-location__value { font-size: 1rem; font-weight: 500; }
.bbs-location__value a { color: inherit; text-decoration: none; }
.bbs-map { border-radius: var(--bbs-radius-lg); overflow: hidden; border: 1px solid var(--bbs-gray-100); aspect-ratio: 16/11; background: var(--bbs-gray-100); }
.bbs-map iframe { width: 100%; height: 100%; border: 0; min-height: 280px; }
.bbs-map-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; min-height: 280px; color: var(--bbs-gray-500); text-align: center; padding: 2rem; }

.bbs-faq { max-width: 800px; margin: 0 auto; }
.bbs-faq__item { border: 1px solid var(--bbs-gray-100); border-radius: var(--bbs-radius); margin-bottom: 0.75rem; overflow: hidden; background: var(--bbs-white); }
.bbs-faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.125rem 1.25rem; background: none; border: none; cursor: pointer; text-align: left; font-size: 1rem; font-weight: 600; color: var(--bbs-charcoal); font-family: inherit; }
.bbs-faq__question i { color: var(--bbs-red); transition: transform 0.2s; flex-shrink: 0; }
.bbs-faq__item.is-open .bbs-faq__question i { transform: rotate(180deg); }
.bbs-faq__answer { display: none; padding: 0 1.25rem 1.125rem; font-size: 0.9375rem; color: var(--bbs-gray-500); line-height: 1.7; }
.bbs-faq__item.is-open .bbs-faq__answer { display: block; }

.bbs-form { background: var(--bbs-white); border: 1px solid var(--bbs-gray-100); border-radius: var(--bbs-radius-lg); padding: 2rem; }
.bbs-form__group { margin-bottom: 1.25rem; }
.bbs-form__label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.375rem; }
.bbs-form__input, .bbs-form__textarea, .bbs-form__select { width: 100%; padding: 0.75rem 1rem; font-size: 1rem; font-family: inherit; border: 1px solid var(--bbs-gray-300); border-radius: 8px; min-height: 48px; }
.bbs-form__input:focus, .bbs-form__textarea:focus { outline: none; border-color: var(--bbs-red); box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1); }
.bbs-form__textarea { min-height: 120px; resize: vertical; }
.bbs-form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 576px) { .bbs-form__row--2 { grid-template-columns: 1fr 1fr; } }

.bbs-reviews-placeholder { text-align: center; padding: 3rem 2rem; background: var(--bbs-gray-100); border-radius: var(--bbs-radius-lg); border: 2px dashed var(--bbs-gray-300); }
.bbs-contact-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.bbs-two-col { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 992px) { .bbs-two-col { grid-template-columns: 1fr 1fr; } }
.bbs-empty { text-align: center; padding: 2rem; color: var(--bbs-gray-500); background: var(--bbs-gray-100); border-radius: var(--bbs-radius); }
.bbs-hours-list { list-style: none; }
.bbs-hours-list li { display: flex; justify-content: space-between; padding: 0.625rem 0; border-bottom: 1px solid var(--bbs-gray-100); font-size: 0.9375rem; }

.bbs-footer { background: var(--bbs-charcoal); color: rgba(255, 255, 255, 0.8); padding: 3rem 0 1.5rem; margin-bottom: var(--bbs-mobile-cta-h); }
@media (min-width: 768px) { .bbs-footer { margin-bottom: 0; } }
.bbs-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .bbs-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .bbs-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.bbs-footer h3, .bbs-footer h4 { color: var(--bbs-white); font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.bbs-footer ul { list-style: none; }
.bbs-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.bbs-footer a:hover { color: var(--bbs-white); }
.bbs-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; text-align: center; font-size: 0.875rem; }
.bbs-footer__note { font-size: 0.8125rem; opacity: 0.6; margin-top: 0.5rem; }

.bbs-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; display: flex; background: var(--bbs-white); border-top: 1px solid var(--bbs-gray-100); box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08); height: var(--bbs-mobile-cta-h); }
@media (min-width: 768px) { .bbs-mobile-cta { display: none; } }
.bbs-mobile-cta__item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem; color: var(--bbs-charcoal); text-decoration: none; font-size: 0.75rem; font-weight: 600; border-right: 1px solid var(--bbs-gray-100); min-height: 48px; }
.bbs-mobile-cta__item:last-child { border-right: none; }
.bbs-mobile-cta__item i { font-size: 1.25rem; color: var(--bbs-red); }
.bbs-mobile-cta__item:nth-child(2) i { color: #25d366; }

.bbs-page-hero { background: linear-gradient(135deg, var(--bbs-charcoal) 0%, #2a2a40 100%); color: var(--bbs-white); padding: 3rem 0; text-align: center; }
.bbs-page-hero__title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; }
.bbs-page-hero__subtitle { font-size: 1.0625rem; color: rgba(255, 255, 255, 0.8); max-width: 600px; margin: 0 auto; }

.bbs-blog-card { background: var(--bbs-white); border: 1px solid var(--bbs-gray-100); border-radius: var(--bbs-radius); overflow: hidden; height: 100%; }
.bbs-blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--bbs-gray-100); }
.bbs-blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.bbs-blog-card__body { padding: 1.25rem; }
.bbs-blog-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.bbs-blog-card__title a { color: inherit; text-decoration: none; }
.bbs-blog-card__title a:hover { color: var(--bbs-red); }
