/* Bajwa Brothers — 2026 Modern UI */

:root {
  --bb-font: 'Poppins', system-ui, -apple-system, sans-serif;
  --bb-black: #0a0a0a;
  --bb-navy: #0c2340;
  --bb-navy-light: #1a3a5c;
  --bb-saffron: #e8751a;
  --bb-saffron-light: #f59e42;
  --bb-gold: #c9a227;
  --bb-gray-900: #141414;
  --bb-gray-700: #3f3f46;
  --bb-gray-500: #71717a;
  --bb-gray-200: #e4e4e7;
  --bb-gray-100: #f4f4f5;
  --bb-gray-50: #fafafa;
  --bb-white: #ffffff;
  --bb-accent: var(--bb-saffron);
  --bb-gradient-brand: linear-gradient(135deg, var(--bb-saffron) 0%, #d4620f 50%, var(--bb-navy) 100%);
  --bb-gradient-hero: linear-gradient(180deg, #fff8f3 0%, #f5f7fb 45%, #ffffff 100%);
  --bb-radius: 20px;
  --bb-radius-sm: 12px;
  --bb-radius-pill: 999px;
  --bb-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
  --bb-shadow-lg: 0 24px 64px rgba(12,35,64,0.14);
  --bb-shadow-glow: 0 0 0 1px rgba(232,117,26,0.08), 0 20px 40px rgba(12,35,64,0.1);
  --bb-container: 1240px;
  --bb-topbar-h: 36px;
  --bb-header-h: 76px;
  --bb-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.bb-modern {
  font-family: var(--bb-font) !important;
  color: var(--bb-gray-900);
  background: var(--bb-white);
  overflow-x: hidden;
  --bs-body-font-family: var(--bb-font);
  --bs-font-sans-serif: var(--bb-font);
}

body.bb-modern :where(
  h1, h2, h3, h4, h5, h6,
  p, a, span, li, label, small, strong,
  input, textarea, select, button,
  .btn, .form-control, .form-select, .form-label,
  .modal-title, .modal-body, .offcanvas-title, .offcanvas-body,
  .bb-btn, .bb-nav, .sec-title, .bb-section-head
) {
  font-family: var(--bb-font) !important;
}

body.bb-modern #smooth-wrapper,
body.bb-modern #smooth-content {
  transform: none !important;
}

/* Hide legacy chrome on modern pages */
body.bb-modern .tj-offcanvas-area,
body.bb-modern .hamburger-area,
body.bb-modern .header-area,
body.bb-modern .tj-footer-section,
body.bb-modern .top-space-15,
body.bb-modern #tj-back-to-top,
body.bb-modern .search-popup-overlay {
  display: none !important;
}

.bb-container {
  width: min(var(--bb-container), 100% - 40px);
  margin-inline: auto;
}

/* ── Header ── */
.bb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--bb-header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bb-gray-200);
  transition: box-shadow 0.25s;
}

.bb-header.is-scrolled {
  box-shadow: var(--bb-shadow);
}

.bb-header-inner {
  height: var(--bb-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bb-logo img {
  height: 48px;
  width: auto;
}

.bb-nav {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 992px) {
  .bb-nav { display: flex; }
}

.bb-nav a {
  color: var(--bb-gray-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--bb-radius-sm);
  transition: 0.2s;
}

.bb-nav a:hover,
.bb-nav a.active {
  color: var(--bb-black);
  background: var(--bb-gray-100);
}

.bb-nav-dropdown {
  position: relative;
}

.bb-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius-sm);
  box-shadow: var(--bb-shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}

.bb-nav-dropdown:hover .bb-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bb-nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
}

.bb-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--bb-gray-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.bb-header-phone i {
  color: var(--bb-saffron);
  font-size: 13px;
}

@media (min-width: 1200px) {
  .bb-header-phone { display: block; }
}

.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--bb-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  line-height: 1.2;
}

.bb-btn-primary {
  background: var(--bb-black);
  color: var(--bb-white);
  border-color: var(--bb-black);
}

.bb-btn-primary:hover {
  background: var(--bb-gray-900);
  color: var(--bb-white);
  transform: translateY(-1px);
  box-shadow: var(--bb-shadow);
}

.bb-btn-outline {
  background: transparent;
  color: var(--bb-black);
  border-color: var(--bb-gray-200);
}

.bb-btn-outline:hover {
  border-color: var(--bb-black);
  background: var(--bb-gray-50);
}

.bb-btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.bb-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .bb-menu-toggle { display: none; }
}

.bb-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bb-black);
  border-radius: 2px;
}

/* Mobile offcanvas */
.bb-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--bb-gray-200);
}

.bb-offcanvas .nav-link {
  font-weight: 500;
  color: var(--bb-gray-900);
  padding: 12px 0;
  border-bottom: 1px solid var(--bb-gray-100);
}

/* ── Hero ── */
.bb-main {
  padding-top: var(--bb-header-h);
}

.bb-hero {
  padding: 88px 0 96px;
  background: var(--bb-white);
  position: relative;
  overflow: hidden;
}

.bb-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0,0,0,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(0,0,0,0.04) 0%, transparent 45%),
    linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  pointer-events: none;
}

.bb-hero .bb-container {
  position: relative;
  z-index: 1;
}

.bb-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .bb-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.bb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-gray-700);
  margin-bottom: 20px;
}

.bb-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.bb-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bb-black);
  margin-bottom: 20px;
}

.bb-hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--bb-gray-500);
  margin-bottom: 32px;
  max-width: 540px;
}

.bb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.bb-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.bb-trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bb-black);
}

.bb-trust-item span {
  font-size: 13px;
  color: var(--bb-gray-500);
}

.bb-hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bb-shadow-lg);
  aspect-ratio: 4/3;
}

.bb-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-hero-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bb-white);
  padding: 14px 18px;
  border-radius: var(--bb-radius-sm);
  box-shadow: var(--bb-shadow);
  font-size: 14px;
  font-weight: 600;
}

/* ── Sections ── */
.bb-section {
  padding: 80px 0;
}

.bb-section-alt {
  background: var(--bb-gray-50);
}

.bb-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.bb-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-gray-500);
  margin-bottom: 12px;
}

.bb-section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.bb-section-head p {
  color: var(--bb-gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Cards grid */
.bb-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bb-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bb-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .bb-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .bb-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .bb-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.bb-card {
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius);
  padding: 28px;
  transition: 0.25s;
  height: 100%;
}

.bb-card:hover {
  border-color: #ccc;
  box-shadow: var(--bb-shadow);
  transform: translateY(-4px);
}

.bb-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bb-gray-100);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 18px;
}

.bb-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bb-card p {
  font-size: 15px;
  color: var(--bb-gray-500);
  line-height: 1.6;
  margin: 0;
}

.bb-card-flag .fi {
  font-size: 36px;
  border-radius: 6px;
  margin-bottom: 16px;
  display: block;
}

/* About split */
.bb-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .bb-split { grid-template-columns: 0.85fr 1.15fr; }
  .bb-split-about { grid-template-columns: 0.75fr 1.25fr; gap: 40px; align-items: center; }
}

.bb-split-media {
  max-width: 400px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .bb-split-media {
    max-width: 100%;
  }
}

.bb-split img {
  width: 100%;
  border-radius: var(--bb-radius);
  box-shadow: var(--bb-shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: 320px;
  display: block;
}

@media (min-width: 992px) {
  .bb-split-about .bb-split-media img {
    max-height: 300px;
  }
}

.bb-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.bb-check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--bb-gray-700);
}

.bb-check-list li i {
  color: var(--bb-black);
  margin-top: 3px;
}

/* Process steps */
.bb-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bb-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius);
  transition: 0.2s;
}

.bb-step:hover {
  border-color: var(--bb-black);
}

.bb-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bb-black);
  color: var(--bb-white);
  font-weight: 700;
  border-radius: 12px;
  font-size: 14px;
}

.bb-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bb-step p {
  font-size: 14px;
  color: var(--bb-gray-500);
  margin: 0;
  line-height: 1.6;
}

/* Portfolio grid */
.bb-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .bb-portfolio-grid { grid-template-columns: repeat(4, 1fr); }
}

.bb-portfolio-item {
  position: relative;
  border-radius: var(--bb-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.bb-portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.bb-portfolio-item:hover img {
  transform: scale(1.05);
}

.bb-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--bb-white);
}

.bb-portfolio-overlay span {
  font-size: 12px;
  opacity: 0.85;
}

.bb-portfolio-overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0 0;
}

/* Testimonials */
.bb-testimonial {
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius);
  padding: 32px;
  height: 100%;
}

.bb-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 16px;
}

.bb-testimonial p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bb-gray-700);
  margin-bottom: 24px;
}

.bb-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bb-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.bb-testimonial-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(232, 117, 26, 0.12);
  color: var(--bb-saffron);
  border: 1px solid rgba(232, 117, 26, 0.2);
}

.bb-testimonial-avatar-navy {
  background: rgba(12, 35, 64, 0.08);
  color: var(--bb-navy);
  border-color: rgba(12, 35, 64, 0.12);
}

.bb-testimonials-grid {
  gap: 20px;
}

@media (min-width: 992px) {
  .bb-testimonials-grid {
    gap: 24px;
  }
}

.bb-testimonial-author strong {
  display: block;
  font-size: 15px;
}

.bb-testimonial-author span {
  font-size: 13px;
  color: var(--bb-gray-500);
}

/* FAQ */
.bb-faq-item {
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bb-white);
}

.bb-faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--bb-black);
}

.bb-faq-q i {
  transition: 0.2s;
  color: var(--bb-gray-500);
}

.bb-faq-item.open .bb-faq-q i {
  transform: rotate(180deg);
}

.bb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bb-faq-a-inner {
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--bb-gray-500);
  line-height: 1.7;
}

.bb-faq-item.open .bb-faq-a {
  max-height: 300px;
}

/* CTA banner */
.bb-cta {
  background: linear-gradient(145deg, var(--bb-navy) 0%, #0a1628 100%);
  color: var(--bb-white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  margin: 0 20px 80px;
  max-width: calc(var(--bb-container) + 40px);
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.bb-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(232,117,26,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.bb-cta > * {
  position: relative;
  z-index: 1;
}

.bb-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--bb-white) !important;
  font-family: var(--bb-font) !important;
}

.bb-cta p {
  color: rgba(255, 255, 255, 0.85) !important;
  opacity: 1;
  margin-bottom: 28px;
  max-width: 520px;
  margin-inline: auto;
}

.bb-cta .bb-btn-primary,
.bb-cta .bb-btn-accent {
  background: var(--bb-saffron);
  color: var(--bb-white) !important;
  border-color: var(--bb-saffron);
}

.bb-cta .bb-btn-primary:hover,
.bb-cta .bb-btn-accent:hover {
  background: var(--bb-saffron-light);
  border-color: var(--bb-saffron-light);
  color: var(--bb-white) !important;
}

/* Footer */
.bb-footer {
  background: var(--bb-gray-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.bb-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .bb-footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.bb-footer-brand img {
  height: 48px;
  width: auto;
  filter: none;
}

.bb-footer-logo {
  display: inline-block;
  padding: 10px 14px;
  background: var(--bb-white);
  border-radius: 14px;
  margin-bottom: 16px;
  line-height: 0;
}

.bb-footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: none;
}

.bb-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.bb-footer h4 {
  color: var(--bb-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.bb-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bb-footer ul li {
  margin-bottom: 10px;
}

.bb-footer ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.bb-footer ul a:hover {
  color: var(--bb-white);
}

.bb-footer-contact p:not(.bb-info-line),
.bb-footer-contact a:not(.bb-info-line) {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.6;
}

.bb-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  font-size: 13px;
}

.bb-footer-social {
  display: flex;
  gap: 12px;
}

.bb-footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--bb-white);
  text-decoration: none;
  transition: 0.2s;
}

.bb-footer-social a:hover {
  background: var(--bb-white);
  color: var(--bb-black);
}

/* Page hero — legacy placeholder removed; see 2026 block below */

/* Contact page cards */
.bb-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .bb-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .bb-contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.bb-contact-card {
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.bb-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bb-shadow);
  border-color: rgba(232,117,26,0.25);
}

.bb-contact-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bb-contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,117,26,0.1);
  border-radius: 12px;
  color: var(--bb-saffron);
  font-size: 18px;
}

.bb-contact-card-head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--bb-navy);
  line-height: 1.3;
}

.bb-contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bb-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--bb-gray-200);
  font-size: 14px;
  color: var(--bb-gray-500);
  line-height: 1.55;
}

.bb-contact-details li a {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.bb-contact-details li a:hover {
  color: var(--bb-navy);
}

.bb-contact-details i {
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--bb-saffron);
  font-size: 13px;
  text-align: center;
}

.bb-contact-card-direct {
  background: linear-gradient(160deg, #fff8f3 0%, #ffffff 100%);
}

@media (min-width: 992px) {
  .bb-contact-card-direct {
    grid-column: span 1;
  }
}

/* Icon + text rows — phone, email, address */
.bb-info-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.bb-info-line:last-child {
  margin-bottom: 0;
}

.bb-info-line > i {
  width: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--bb-saffron);
  font-size: 14px;
  text-align: center;
}

.bb-contact-card .bb-info-line > i,
.bb-footer-contact .bb-info-line > i {
  margin-bottom: 0;
  font-size: 14px;
}

.bb-footer-contact .bb-info-line {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.bb-footer-contact .bb-info-line a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.bb-footer-contact .bb-info-line a:hover {
  color: var(--bb-saffron-light);
}

.bb-offcanvas .bb-info-line {
  margin-bottom: 8px;
  color: var(--bb-navy);
  text-decoration: none;
}

.bb-form-wrap {
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius);
  padding: 32px;
}

.bb-form-wrap input,
.bb-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius-sm);
  font-family: var(--bb-font);
  font-size: 15px;
  margin-bottom: 16px;
  transition: 0.2s;
}

.bb-form-wrap input:focus,
.bb-form-wrap textarea:focus {
  outline: none;
  border-color: var(--bb-black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.bb-map {
  border-radius: var(--bb-radius);
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--bb-gray-200);
}

.bb-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* Floating contacts — keep visible */
body.bb-modern .tj-floating-contact {
  z-index: 999;
}

/* Modal polish */
body.bb-modern .modal-content {
  border-radius: var(--bb-radius);
  border: none;
  overflow: hidden;
}

body.bb-modern .space-for-header,
body.bb-modern .tj-page-header {
  display: none !important;
}

body.bb-modern .section-gap,
body.bb-modern .section-gap-x {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

body.bb-modern .tj-primary-btn,
body.bb-modern .bb-btn-primary {
  background: var(--bb-navy) !important;
  border-radius: var(--bb-radius-pill) !important;
  border: none !important;
  color: #fff !important;
}

body.bb-modern .bb-btn-accent {
  background: var(--bb-gradient-brand) !important;
  color: #fff !important;
}

/* ── 2026: Marquee, Bento, Reveal, Portfolio ── */
.bb-marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--bb-gray-200);
  background: var(--bb-gray-50);
  padding: 18px 0;
}

.bb-marquee-track {
  display: flex;
  width: max-content;
  animation: bbMarquee 28s linear infinite;
  gap: 48px;
}

.bb-marquee-track span {
  font-size: 15px;
  font-weight: 700;
  color: var(--bb-gray-500);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-marquee-track span::after {
  content: '◆';
  font-size: 8px;
  opacity: 0.4;
}

@keyframes bbMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bb-bento {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bb-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }
  .bb-bento .bb-bento-wide { grid-column: span 2; }
  .bb-bento .bb-bento-tall { grid-row: span 2; }
}

@media (min-width: 992px) {
  .bb-bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .bb-bento .bb-bento-wide {
    grid-column: span 1;
  }
}

/* Homepage — strict 3×2 equal grid */
.bb-bento-3 {
  grid-auto-rows: 1fr;
}

@media (min-width: 992px) {
  .bb-bento-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .bb-bento-3 .bb-bento-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .bb-bento-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bb-bento-card {
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--bb-ease), box-shadow 0.35s var(--bb-ease), border-color 0.25s;
}

.bb-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bb-black), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.bb-bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bb-shadow-glow);
  border-color: #d4d4d8;
}

.bb-bento-card:hover::before {
  opacity: 1;
}

.bb-bento-card .bb-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--bb-gray-200);
  margin-bottom: 16px;
}

.bb-bento-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.bb-bento-card p {
  font-size: 15px;
  color: var(--bb-gray-500);
  line-height: 1.65;
  margin: 0;
}

.bb-bento-card .bb-icon-lg {
  font-size: 28px;
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bb-gray-100);
  border-radius: 14px;
}

.bb-bento-dark {
  background: var(--bb-black);
  border-color: var(--bb-black);
  color: var(--bb-white);
}

.bb-bento-dark h3,
.bb-bento-dark .bb-num { color: var(--bb-white); }
.bb-bento-dark p { color: rgba(255,255,255,0.65); }
.bb-bento-dark .bb-icon-lg { background: rgba(255,255,255,0.1); color: #fff; }

.bb-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--bb-ease), transform 0.7s var(--bb-ease);
}

.bb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Inner page hero — all pages ── */
.bb-page-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 44px;
  background: linear-gradient(135deg, #fff8f3 0%, #f5f7fb 45%, #ffffff 100%);
  border-bottom: 1px solid var(--bb-gray-200);
}

.bb-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 0% 50%, rgba(232,117,26,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 70% at 100% 20%, rgba(12,35,64,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.bb-page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-page-hero .bb-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

.bb-page-hero .bb-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bb-gray-500);
  text-decoration: none;
  transition: color 0.2s;
}

.bb-page-hero .bb-breadcrumb a:hover {
  color: var(--bb-saffron);
}

.bb-page-hero .bb-breadcrumb i.fa-chevron-right {
  font-size: 10px;
  color: var(--bb-gray-200);
}

.bb-breadcrumb-current {
  color: var(--bb-navy);
  font-weight: 700;
}

.bb-page-hero-content {
  max-width: 720px;
}

.bb-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-saffron);
  background: var(--bb-white);
  border: 1px solid rgba(232,117,26,0.25);
  border-radius: var(--bb-radius-pill);
  box-shadow: 0 2px 12px rgba(232,117,26,0.08);
}

.bb-page-badge .fi {
  font-size: 14px;
  border-radius: 2px;
}

.bb-page-badge-dot {
  opacity: 0.45;
  font-weight: 400;
}

body.bb-modern .bb-page-hero h1 {
  font-family: var(--bb-font) !important;
  font-size: clamp(2rem, 4.5vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.12 !important;
  color: var(--bb-navy) !important;
  margin: 0 0 12px !important;
  text-transform: none !important;
}

.bb-page-hero-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--bb-gray-500);
  margin: 0;
  max-width: 560px;
}

@media (min-width: 768px) {
  .bb-page-hero {
    padding: 44px 0 52px;
  }
}

.bb-portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .bb-portfolio-masonry { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.bb-portfolio-card {
  border-radius: var(--bb-radius);
  overflow: hidden;
  background: var(--bb-gray-100);
  border: 1px solid var(--bb-gray-200);
  transition: transform 0.4s var(--bb-ease), box-shadow 0.4s;
}

.bb-portfolio-card:hover {
  transform: scale(1.02);
  box-shadow: var(--bb-shadow-lg);
}

.bb-portfolio-card a {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
}

.bb-portfolio-card img,
.bb-portfolio-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bb-portfolio-card .bb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
}

.bb-portfolio-card .bb-play i {
  width: 56px;
  height: 56px;
  background: var(--bb-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-black);
  font-size: 18px;
  padding-left: 4px;
}

.bb-portfolio-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  color: var(--bb-white);
  pointer-events: none;
}

.bb-portfolio-info span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.bb-portfolio-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 4px 0 0;
  color: #fff;
  line-height: 1.25;
}

.bb-portfolio-info small {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 2px;
}

.bb-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.bb-pagination a {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bb-radius-sm);
  border: 1px solid var(--bb-gray-200);
  color: var(--bb-gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}

.bb-pagination a:hover,
.bb-pagination a.active {
  background: var(--bb-black);
  color: var(--bb-white);
  border-color: var(--bb-black);
}

.bb-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .bb-stats-row { grid-template-columns: repeat(4, 1fr); }
}

.bb-stat-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius);
}

.bb-stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bb-black);
}

.bb-stat-card span {
  font-size: 13px;
  color: var(--bb-gray-500);
  font-weight: 500;
}

.bb-success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.bb-success-icon {
  width: 88px;
  height: 88px;
  background: var(--bb-black);
  color: var(--bb-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 28px;
  animation: bbPop 0.5s var(--bb-ease);
}

@keyframes bbPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

body.bb-modern .h6-service,
body.bb-modern .tj-choose-section,
body.bb-modern .tj-about-section,
body.bb-modern .tj-about-section-2,
body.bb-modern .h6-testimonial,
body.bb-modern .tj-faq-section,
body.bb-modern .tj-portfolio-section,
body.bb-modern .tj-cta-section {
  display: none !important;
}

body.bb-modern .sec-title {
  font-family: var(--bb-font) !important;
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════
   Hostinger-style layout (bajwabrothers.in)
   ═══════════════════════════════════════════ */

.bb-btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.bb-btn-ghost {
  background: var(--bb-white);
  color: var(--bb-black);
  border: 2px solid var(--bb-gray-200);
}

.bb-btn-ghost:hover {
  border-color: var(--bb-black);
  background: var(--bb-gray-50);
  color: var(--bb-black);
}

.bb-btn-ghost-light {
  background: transparent;
  color: var(--bb-white);
  border: 2px solid rgba(255,255,255,0.35);
}

.bb-btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--bb-white);
  color: var(--bb-white);
}

/* Header — cleaner Hostinger feel */
.bb-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.bb-header.is-scrolled {
  border-bottom-color: var(--bb-gray-200);
}

.bb-nav a {
  border-radius: var(--bb-radius-pill);
  font-size: 14px;
}

/* Hero — split layout: content left, slider right */
.bb-hero-hst {
  padding: 56px 0 72px;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: var(--bb-gradient-hero);
}

.bb-hero-hst-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .bb-hero-hst-grid {
    grid-template-columns: 1fr 1.22fr;
    gap: 40px 64px;
    align-items: center;
  }
}

.bb-hero-hst-content {
  max-width: 560px;
}

@media (min-width: 992px) {
  .bb-hero-hst-content {
    max-width: none;
  }
}

.bb-hero-hst h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--bb-black);
  margin-bottom: 20px;
}

.bb-hero-accent {
  display: inline-block;
  background: var(--bb-gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bb-hero-hst-lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--bb-gray-500);
  max-width: 520px;
  margin: 0 0 28px;
}

.bb-hero-hst-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.bb-hero-hst-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--bb-gray-500);
  font-weight: 500;
}

@media (min-width: 576px) {
  .bb-hero-hst-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}

.bb-hero-hst-trust i {
  color: var(--bb-saffron);
  margin-right: 6px;
}

.bb-hero-hst-visual {
  margin-top: 0;
  width: 100%;
}

@media (min-width: 992px) {
  .bb-hero-hst-visual {
    justify-self: stretch;
  }
}

.bb-hero-hst-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--bb-shadow-lg);
  width: 100%;
  max-width: none;
  margin-inline: 0;
  border: 1px solid rgba(12,35,64,0.08);
}

/* Hero image stack — slightly shorter than square + crossfade */
.bb-hero-img-stack {
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
  background: var(--bb-gray-100);
}

.bb-hero-img-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s var(--bb-ease), transform 0.65s var(--bb-ease);
}

.bb-hero-img-stack img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.bb-hero-hst-tabs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--bb-radius-pill);
  border: 1px solid var(--bb-gray-200);
  box-shadow: var(--bb-shadow);
  z-index: 2;
}

.bb-hero-hst-tabs button {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--bb-font);
  color: var(--bb-gray-500);
  background: transparent;
  border: none;
  border-radius: var(--bb-radius-pill);
  white-space: nowrap;
  cursor: pointer;
  transition: 0.25s;
}

.bb-hero-hst-tabs button:hover {
  color: var(--bb-black);
}

.bb-hero-hst-tabs button.active {
  background: var(--bb-navy);
  color: var(--bb-white);
}

@media (max-width: 575px) {
  .bb-hero-hst-tabs {
    width: calc(100% - 20px);
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .bb-hero-hst-tabs::-webkit-scrollbar {
    display: none;
  }

  .bb-hero-hst-tabs button {
    flex-shrink: 0;
  }
}

/* Quick start — premium CTA section */
.bb-quickstart {
  padding: 80px 0;
  position: relative;
}

.bb-quickstart.bb-section-alt {
  padding: 80px 0;
}

/* Standalone venues ticker after hero */
.bb-venues-ticker-wrap {
  padding: 20px 0 8px;
  background: var(--bb-white);
  border-bottom: 1px solid var(--bb-gray-100);
}

.bb-venues-ticker-wrap .bb-venues-ticker {
  margin-bottom: 0;
}

/* Compact stats section — tighter after hero */
.bb-section-compact {
  padding: 64px 0;
}

.bb-section-compact .bb-proof-head {
  margin-bottom: 32px;
}

.bb-section-compact .bb-proof-head .bb-section-label {
  display: block;
  margin-bottom: 10px;
}

.bb-venues-ticker {
  overflow: hidden;
  margin-bottom: 32px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.bb-venues-ticker-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: bbVenueTicker 35s linear infinite;
}

.bb-venues-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bb-gray-500);
  white-space: nowrap;
}

.bb-venues-ticker-track span i {
  color: var(--bb-saffron);
  font-size: 11px;
}

@keyframes bbVenueTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bb-quickstart-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bb-navy) 0%, #0a1628 100%);
  box-shadow: 0 32px 80px rgba(12,35,64,0.25);
}

.bb-quickstart-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(232,117,26,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 100% 20%, rgba(201,162,39,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.bb-quickstart-inner {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
}

@media (min-width: 768px) {
  .bb-quickstart-inner {
    padding: 48px 44px;
  }
}

.bb-quickstart-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}

.bb-quickstart-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--bb-radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-saffron-light);
  margin-bottom: 20px;
}

.bb-quickstart-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bb-white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.bb-quickstart-head h2 span {
  color: var(--bb-saffron-light);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.bb-quickstart-head p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}

.bb-quickstart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 576px) {
  .bb-quickstart-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 992px) {
  .bb-quickstart-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bb-quickstart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  text-decoration: none;
  color: var(--bb-white);
  transition: transform 0.3s var(--bb-ease), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.bb-quickstart-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  color: var(--bb-white);
}

.bb-quickstart-item-accent {
  background: linear-gradient(135deg, var(--bb-saffron) 0%, #d4620f 100%);
  border-color: transparent;
}

.bb-quickstart-item-accent:hover {
  background: linear-gradient(135deg, var(--bb-saffron-light) 0%, var(--bb-saffron) 100%);
  border-color: transparent;
}

.bb-quickstart-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 18px;
}

.bb-quickstart-item-accent .bb-quickstart-icon {
  background: rgba(255,255,255,0.2);
}

.bb-quickstart-text {
  flex: 1;
  min-width: 0;
}

.bb-quickstart-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.bb-quickstart-text small {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 500;
}

.bb-quickstart-arrow {
  flex-shrink: 0;
  font-size: 13px;
  opacity: 0.5;
  transition: transform 0.25s, opacity 0.25s;
}

.bb-quickstart-item:hover .bb-quickstart-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Legacy prompt — kept for other pages if needed */
.bb-prompt {
  padding: 0 0 48px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.bb-prompt-label {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--bb-gray-700);
  margin-bottom: 20px;
}

.bb-prompt-label strong {
  color: var(--bb-black);
  font-weight: 700;
}

.bb-prompt-box {
  max-width: 720px;
  margin-inline: auto;
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.bb-prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.bb-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bb-gray-700);
  background: var(--bb-gray-50);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius-pill);
  text-decoration: none;
  transition: 0.2s;
}

.bb-chip:hover {
  border-color: var(--bb-black);
  background: var(--bb-white);
  color: var(--bb-black);
  transform: translateY(-1px);
}

.bb-chip-dark {
  background: var(--bb-black);
  color: var(--bb-white);
  border-color: var(--bb-black);
}

.bb-chip-dark:hover {
  background: var(--bb-gray-900);
  color: var(--bb-white);
}

/* Showcase tabs */
.bb-showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  padding: 6px;
  background: var(--bb-gray-100);
  border-radius: var(--bb-radius-pill);
  width: fit-content;
  margin-inline: auto;
}

.bb-showcase-tab {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--bb-font);
  color: var(--bb-gray-500);
  background: transparent;
  border: none;
  border-radius: var(--bb-radius-pill);
  cursor: pointer;
  transition: 0.25s;
}

.bb-showcase-tab:hover {
  color: var(--bb-black);
}

.bb-showcase-tab.active {
  background: var(--bb-white);
  color: var(--bb-black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bb-showcase-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--bb-shadow);
  animation: bbFadeIn 0.4s var(--bb-ease);
}

.bb-showcase-panel.active {
  display: grid;
}

@media (min-width: 768px) {
  .bb-showcase-panel {
    grid-template-columns: 1fr 1.1fr;
    padding: 40px;
    gap: 48px;
  }
}

.bb-showcase-copy h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.bb-showcase-copy p {
  font-size: 16px;
  color: var(--bb-gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bb-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--bb-black);
  text-decoration: none;
  transition: 0.2s;
}

.bb-link-arrow:hover {
  gap: 12px;
}

.bb-showcase-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.bb-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--bb-ease);
}

.bb-showcase-panel.active .bb-showcase-media img {
  animation: bbImageIn 0.55s var(--bb-ease);
}

@keyframes bbImageIn {
  from { opacity: 0.6; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bbFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Homepage gallery — 4 featured stands */
.bb-gallery-section {
  background: var(--bb-gray-50);
}

.bb-gallery-grid {
  display: grid;
  gap: 14px;
}

.bb-gallery-grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bb-gallery-grid-4 {
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(200px, 1fr));
    gap: 16px;
    min-height: 520px;
  }

  .bb-gallery-item-hero {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .bb-gallery-grid-4 .bb-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .bb-gallery-grid-4 .bb-gallery-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .bb-gallery-item-bottom {
    grid-column: 2 / 4;
    grid-row: 2;
  }
}

.bb-gallery-item {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bb-gray-200);
  border: 1px solid var(--bb-gray-200);
  aspect-ratio: 16 / 10;
  min-height: 200px;
  transition: transform 0.35s var(--bb-ease), box-shadow 0.35s;
}

@media (min-width: 768px) {
  .bb-gallery-item-hero {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .bb-gallery-grid-4 .bb-gallery-item:nth-child(2),
  .bb-gallery-grid-4 .bb-gallery-item:nth-child(3) {
    aspect-ratio: auto;
    min-height: 0;
  }

  .bb-gallery-item-bottom {
    aspect-ratio: auto;
    min-height: 0;
  }
}

.bb-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow-lg);
}

.bb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--bb-ease);
}

.bb-gallery-item:hover img {
  transform: scale(1.05);
}

.bb-gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  color: var(--bb-white);
  pointer-events: none;
}

.bb-gallery-info span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.bb-gallery-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 4px 0 0;
  color: #fff;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .bb-gallery-grid-4 .bb-gallery-item {
    aspect-ratio: 16 / 10;
  }
}

/* Social proof */
.bb-proof-head {
  text-align: center;
  margin-bottom: 40px;
}

.bb-proof-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.bb-proof-head h2 span {
  display: block;
  margin-top: 4px;
}

/* Template grid — Hostinger portfolio style */
.bb-template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .bb-template-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.bb-template-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  border: 1px solid var(--bb-gray-200);
  transition: transform 0.35s var(--bb-ease), box-shadow 0.35s;
}

.bb-template-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--bb-shadow-lg);
}

.bb-template-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.bb-template-card:hover img {
  transform: scale(1.05);
}

.bb-template-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--bb-white);
}

.bb-template-info span {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
}

.bb-template-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 4px 0 0;
  color: #fff;
}

/* Final CTA — Hostinger */
.bb-cta-hst {
  margin: 0 20px 80px;
  max-width: calc(var(--bb-container) + 40px);
  margin-inline: auto;
  background: linear-gradient(145deg, var(--bb-navy) 0%, #0a1628 50%, var(--bb-navy-light) 100%);
  border-radius: 32px;
  padding: 72px 40px;
  text-align: center;
  color: var(--bb-white);
  position: relative;
  overflow: hidden;
}

.bb-cta-hst::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(232,117,26,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bb-cta-hst .bb-container {
  position: relative;
  z-index: 1;
}

.bb-cta-hst h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.bb-cta-hst h2 span {
  opacity: 0.85;
}

.bb-cta-hst p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.bb-cta-hst-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.bb-cta-hst .bb-btn-primary {
  background: var(--bb-white);
  color: var(--bb-black);
  border-color: var(--bb-white);
}

.bb-cta-hst .bb-btn-primary:hover {
  background: var(--bb-gray-100);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.bb-cta-hst-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  font-size: 13px;
  opacity: 0.65;
  font-weight: 500;
}

.bb-cta-hst-trust i {
  margin-right: 6px;
}

/* Section spacing boost */
.bb-section {
  padding: 96px 0;
}

.bb-section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

.bb-card {
  border-radius: 24px;
}

.bb-testimonial {
  border-radius: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bb-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--bb-shadow);
}

.bb-faq-item {
  border-radius: 16px;
}

/* ═══════════════════════════════════════════
   2026 India · Europe Premium Redesign
   ═══════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

/* Top announcement bar */
.bb-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--bb-topbar-h);
  background: var(--bb-navy);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
}

.bb-topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 16px;
}

.bb-topbar-markets {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.bb-topbar-market {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 13px;
}

.bb-topbar-inner .fi {
  font-size: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}

.bb-topbar-cta {
  color: var(--bb-saffron-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.bb-topbar-cta-short {
  display: none;
}

.bb-topbar-cta:hover {
  color: #fff;
}

body.bb-modern.has-topbar .bb-header {
  top: var(--bb-topbar-h);
}

body.bb-modern.has-topbar .bb-main {
  padding-top: calc(var(--bb-header-h) + var(--bb-topbar-h));
}

@media (max-width: 767px) {
  :root {
    --bb-topbar-h: 44px;
  }

  .bb-topbar-inner {
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
  }

  .bb-topbar-markets {
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 58%;
  }

  .bb-topbar-markets::-webkit-scrollbar {
    display: none;
  }

  .bb-topbar-market {
    gap: 0;
    font-size: 0;
  }

  .bb-topbar-market-label {
    display: none;
  }

  .bb-topbar-inner .fi {
    font-size: 16px;
  }

  .bb-topbar-cta {
    font-size: 12px;
  }

  .bb-topbar-cta-full {
    display: none;
  }

  .bb-topbar-cta-short {
    display: inline;
  }
}

@media (max-width: 380px) {
  .bb-topbar-markets {
    gap: 8px;
    max-width: 52%;
  }

  .bb-topbar-inner .fi {
    font-size: 15px;
  }

  .bb-topbar-cta {
    font-size: 11px;
  }
}

/* Accent buttons */
.bb-btn-accent {
  background: var(--bb-gradient-brand);
  color: var(--bb-white);
  border: none;
  box-shadow: 0 4px 20px rgba(232,117,26,0.35);
}

.bb-btn-accent:hover {
  color: var(--bb-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,117,26,0.45);
}

.bb-btn-primary {
  background: var(--bb-navy);
  border-color: var(--bb-navy);
}

.bb-btn-primary:hover {
  background: var(--bb-navy-light);
  border-color: var(--bb-navy-light);
}

/* Hero glow overlay */
.bb-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(232,117,26,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(12,35,64,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(201,162,39,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.bb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--bb-navy);
  margin-bottom: 24px;
  box-shadow: var(--bb-shadow);
}

.bb-hero-badge .fi {
  font-size: 16px;
  border-radius: 3px;
}

.bb-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: bbPulse 2s ease infinite;
}

@keyframes bbPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.bb-hero-accent {
  background: var(--bb-gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bb-hero-hst-trust i {
  color: var(--bb-saffron);
}

/* Dual market section */
.bb-dual-market {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .bb-dual-market {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.bb-market-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 40px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--bb-gray-200);
  transition: transform 0.4s var(--bb-ease), box-shadow 0.4s;
}

.bb-market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bb-shadow-lg);
}

.bb-market-card-india {
  background: linear-gradient(160deg, #fff5eb 0%, #ffffff 60%);
}

.bb-market-card-europe {
  background: linear-gradient(160deg, #eef3f9 0%, #ffffff 60%);
}

.bb-market-card-dubai {
  background: linear-gradient(160deg, #fff8ed 0%, #ffffff 60%);
}

.bb-market-card-america {
  background: linear-gradient(160deg, #f3f6fb 0%, #ffffff 60%);
}

.bb-market-flag {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 48px;
  border-radius: 8px;
  box-shadow: var(--bb-shadow);
}

.bb-market-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--bb-navy);
}

.bb-market-card p {
  font-size: 15px;
  color: var(--bb-gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bb-market-venues {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bb-venue-tag {
  padding: 6px 12px;
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  border-radius: var(--bb-radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--bb-gray-700);
}

.bb-market-card-europe .bb-venue-tag {
  background: var(--bb-navy);
  color: var(--bb-white);
  border-color: var(--bb-navy);
}

.bb-market-card-dubai .bb-venue-tag {
  background: var(--bb-gold);
  color: var(--bb-white);
  border-color: var(--bb-gold);
}

.bb-market-card-america .bb-venue-tag {
  background: var(--bb-saffron);
  color: var(--bb-white);
  border-color: var(--bb-saffron);
}

/* Venues strip */
.bb-venues-strip {
  padding: 32px 0;
  border-block: 1px solid var(--bb-gray-200);
  background: var(--bb-white);
}

.bb-venues-strip p {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bb-gray-500);
  margin-bottom: 20px;
}

.bb-venues-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
}

.bb-venue-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--bb-gray-700);
  padding: 10px 20px;
  background: var(--bb-gray-50);
  border-radius: var(--bb-radius-pill);
  border: 1px solid var(--bb-gray-200);
  white-space: nowrap;
  transition: 0.2s;
}

.bb-venue-logo:hover {
  border-color: var(--bb-saffron);
  color: var(--bb-navy);
}

/* Section label accent */
.bb-section-label {
  color: var(--bb-saffron);
}

/* Cards with accent top */
.bb-card-flag {
  position: relative;
  overflow: hidden;
}

.bb-card-flag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bb-gradient-brand);
}

.bb-card-icon {
  background: linear-gradient(135deg, rgba(232,117,26,0.12), rgba(12,35,64,0.08));
  color: var(--bb-saffron);
}

/* Bento accent */
.bb-bento-card::before {
  background: var(--bb-gradient-brand);
}

.bb-bento-dark {
  background: var(--bb-navy);
  border-color: var(--bb-navy);
}

/* Stats with accent */
.bb-stat-card strong {
  background: var(--bb-gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Quick start — light card (clean, not another dark block) */
.bb-quickstart {
  padding: 80px 0;
  position: relative;
  background: var(--bb-white);
}

.bb-quickstart-light {
  background: var(--bb-white);
  border: 1px solid var(--bb-gray-200);
  box-shadow: var(--bb-shadow-lg);
}

.bb-quickstart-light .bb-quickstart-glow {
  display: none;
}

.bb-quickstart-light .bb-quickstart-badge {
  background: rgba(232, 117, 26, 0.1);
  border-color: rgba(232, 117, 26, 0.2);
  color: var(--bb-saffron);
}

body.bb-modern .bb-quickstart-light .bb-quickstart-head h2 {
  font-family: var(--bb-font) !important;
  color: var(--bb-navy) !important;
  text-transform: none !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.bb-quickstart-light .bb-quickstart-head h2 span {
  color: var(--bb-saffron) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
}

.bb-quickstart-light .bb-quickstart-head p {
  color: var(--bb-gray-500);
}

.bb-quickstart-light .bb-quickstart-item {
  background: var(--bb-gray-50);
  border: 1px solid var(--bb-gray-200);
  color: var(--bb-navy);
}

.bb-quickstart-light .bb-quickstart-item:hover {
  background: var(--bb-white);
  border-color: rgba(232, 117, 26, 0.35);
  box-shadow: var(--bb-shadow);
  color: var(--bb-navy);
}

.bb-quickstart-light .bb-quickstart-icon {
  background: var(--bb-white);
  color: var(--bb-saffron);
  border: 1px solid var(--bb-gray-200);
}

.bb-quickstart-light .bb-quickstart-text strong {
  color: var(--bb-navy);
}

.bb-quickstart-light .bb-quickstart-text small {
  color: var(--bb-gray-500);
  opacity: 1;
}

.bb-quickstart-light .bb-quickstart-arrow {
  color: var(--bb-gray-500);
}

.bb-quickstart-light .bb-quickstart-item-accent {
  background: linear-gradient(135deg, var(--bb-saffron) 0%, #d4620f 100%);
  border-color: transparent;
  color: var(--bb-white);
}

.bb-quickstart-light .bb-quickstart-item-accent .bb-quickstart-icon,
.bb-quickstart-light .bb-quickstart-item-accent .bb-quickstart-text strong,
.bb-quickstart-light .bb-quickstart-item-accent .bb-quickstart-text small,
.bb-quickstart-light .bb-quickstart-item-accent .bb-quickstart-arrow {
  color: var(--bb-white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
}

/* FAQ section polish */
.bb-faq-section .bb-section-head h2 {
  font-family: var(--bb-font) !important;
  color: var(--bb-navy) !important;
  text-transform: none !important;
}

/* Final CTA — clean typography */
body.bb-modern .bb-cta-hst .bb-cta-hst-title {
  font-family: var(--bb-font) !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  color: var(--bb-white) !important;
  text-transform: none !important;
  background: none !important;
  margin-bottom: 16px;
}

.bb-cta-hst .bb-cta-hst-title span {
  color: var(--bb-saffron-light) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
  opacity: 1;
  display: inline;
}

.bb-cta-hst p {
  color: rgba(255, 255, 255, 0.85) !important;
  opacity: 1;
}

.bb-cta-hst-trust {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

.bb-cta-hst-trust span {
  color: rgba(255, 255, 255, 0.75);
}

.bb-cta-hst .bb-btn-primary,
.bb-cta-hst .bb-btn-accent {
  background: var(--bb-saffron);
  color: var(--bb-white) !important;
  border-color: var(--bb-saffron);
}

.bb-cta-hst .bb-btn-primary:hover,
.bb-cta-hst .bb-btn-accent:hover {
  background: var(--bb-saffron-light);
  border-color: var(--bb-saffron-light);
  color: var(--bb-white) !important;
}

/* page hero styles consolidated above */

/* Contact cards enhanced — see main contact block above */

/* Footer premium */
.bb-footer {
  background: linear-gradient(180deg, var(--bb-navy) 0%, #071525 100%);
}

.bb-footer-social a:hover {
  background: var(--bb-saffron);
  border-color: var(--bb-saffron);
  color: var(--bb-white);
}

/* Marquee accent */
.bb-marquee-track span {
  color: var(--bb-navy);
}

.bb-marquee-track span::after {
  color: var(--bb-saffron);
  opacity: 0.7;
}

/* Showcase tabs */
.bb-showcase-tab.active {
  color: var(--bb-navy);
}

.bb-showcase-tab.active {
  box-shadow: 0 2px 12px rgba(12,35,64,0.1);
}

.bb-trend-badge {
  background: var(--bb-saffron);
}

/* Template cards hover */
.bb-template-card:hover {
  border-color: rgba(232,117,26,0.4);
}

/* Mobile responsive polish */
@media (max-width: 767px) {
  .bb-container {
    width: min(var(--bb-container), 100% - 32px);
  }

  .bb-section {
    padding: 64px 0;
  }

  .bb-hero-hst {
    padding: 28px 0 40px;
  }

  .bb-hero-hst-grid {
    gap: 32px;
  }

  .bb-hero-hst-content {
    text-align: center;
    max-width: none;
    margin-inline: auto;
  }

  .bb-hero-hst-actions {
    justify-content: center;
  }

  .bb-hero-hst-trust {
    align-items: center;
  }

  @media (min-width: 576px) {
    .bb-hero-hst-trust {
      justify-content: center;
    }
  }

  .bb-hero-hst h1 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .bb-hero-hst-lead {
    margin-inline: auto;
  }

  .bb-hero-hst-visual {
    max-width: min(100%, 420px);
    margin-inline: auto;
  }

  .bb-hero-hst-frame {
    border-radius: 20px;
  }

  .bb-showcase-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .bb-market-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .bb-market-flag {
    font-size: 36px;
    top: 20px;
    right: 20px;
  }

  .bb-cta-hst {
    margin: 0 16px 64px;
    padding: 48px 24px;
    border-radius: 24px;
  }

  .bb-page-hero {
    padding: 28px 0 36px;
  }

  .bb-page-hero-content {
    text-align: left;
  }

  body.bb-modern .bb-page-hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
  }

  .bb-page-hero-lead {
    font-size: 0.95rem;
  }

  .bb-contact-grid {
    grid-template-columns: 1fr;
  }

  .bb-split {
    gap: 32px;
  }

  .bb-form-wrap {
    padding: 24px;
  }

  .bb-map {
    min-height: 280px;
  }

  .bb-map iframe {
    min-height: 280px;
  }

  .bb-footer-grid {
    gap: 32px;
  }

  .bb-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .bb-stats-row {
    gap: 12px;
  }

  .bb-stat-card {
    padding: 20px 12px;
  }

  .bb-stat-card strong {
    font-size: 1.5rem;
  }

  .bb-bento-card {
    padding: 24px;
  }

  .bb-testimonial {
    padding: 24px;
  }

  .bb-quickstart-inner {
    padding: 28px 20px;
  }

  .bb-quickstart-item {
    padding: 16px;
  }

  .bb-quickstart-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .bb-showcase-tabs {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bb-showcase-tabs::-webkit-scrollbar {
    display: none;
  }

  .bb-showcase-tab {
    flex-shrink: 0;
  }
}

@media (max-width: 991px) {
  .bb-header-phone {
    display: none !important;
  }
}

/* Floating contact — right side */
body.bb-modern .tj-floating-contact.bb-floating-right {
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  left: auto;
}

body.bb-modern .tj-floating-contact.bb-floating-right .phone-float {
  background-color: var(--bb-navy);
}

body.bb-modern .tj-floating-contact.bb-floating-right .whatsapp-float {
  background-color: #25d366;
}

@media (max-width: 575px) {
  body.bb-modern .tj-floating-contact .floating-icon-item {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* Stagger reveal */
.bb-reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--bb-ease), transform 0.6s var(--bb-ease);
}

.bb-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.bb-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.bb-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
.bb-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }

/* Nav active accent */
.bb-nav a.active {
  color: var(--bb-navy);
  background: rgba(232,117,26,0.1);
}

.bb-nav a:hover {
  color: var(--bb-navy);
}

/* Logo header scroll */
.bb-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(12,35,64,0.08);
}

