:root {
  --bb-primary: #ff3b8d;
  --bb-primary-dark: #e02575;
  --bb-secondary: #ff3b3b;
  --bb-bg: #050510;
  --bb-surface: #0e0e1a;
  --bb-text: #ffffff;
  --bb-muted: #c9c9d8;
  --bb-border: rgba(255, 255, 255, 0.12);
  --bb-radius-lg: 20px;
  --bb-radius-xl: 28px;
  --bb-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --bb-max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #7a0a0a, #0d0d0d 45%);
  color: var(--bb-text);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
}

/* Layout utilities */
.bb-container {
  max-width: var(--bb-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.bb-section-heading {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.bb-section-subtitle {
  color: var(--bb-muted);
  max-width: 640px;
  margin-bottom: 32px;
}

/* Header / Nav */
.bb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 16, 0.95),
    rgba(5, 5, 16, 0.85)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.bb-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffe3f2, #ff3b8d);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bb-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bb-logo-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.bb-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.bb-nav a {
  color: var(--bb-muted);
  position: relative;
  padding-bottom: 4px;
}

.bb-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--bb-primary),
    var(--bb-secondary)
  );
  border-radius: 999px;
  transition: width 0.2s ease;
}

.bb-nav a:hover::after {
  width: 100%;
}

.bb-nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--bb-primary),
    var(--bb-secondary)
  );
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(255, 59, 141, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bb-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 59, 141, 0.45);
}

.bb-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 20px;
  justify-content: center;
  cursor: pointer;
}

.bb-burger span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .bb-nav {
    display: none;
  }

  .bb-burger {
    display: flex;
  }

  .bb-nav-mobile {
    display: none;
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
  }

  .bb-nav-mobile-inner {
    padding: 16px 20px 20px;
  }

  .bb-nav-mobile a {
    display: block;
    padding: 10px 0;
    color: var(--bb-muted);
  }

  .bb-nav-mobile .bb-nav-cta {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
    display: inline-flex;
    text-align: center;
  }

  .bb-nav-mobile.open {
    display: block;
  }
}

/* Hero */
.bb-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  isolation: isolate;
  overflow: hidden;
}

.bb-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.bb-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.3s ease;
}

.bb-hero-video.is-active {
  opacity: 1;
}

.bb-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      circle at top left,
      rgba(255, 59, 141, 0.55),
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 5, 16, 0.25),
      rgba(5, 5, 16, 0.9)
    );
}

.bb-hero-inner {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.bb-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}

@media (max-width: 900px) {
  .bb-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 40px 0 60px;
  }
}

.bb-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  margin-bottom: 12px;
  color: #ffd6ea;
}

.bb-hero-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.bb-hero-title span {
  background: linear-gradient(
    120deg,
    #ff9ad3,
    #ffe27a,
    #7dd6ff,
    #ff9ad3
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bb-hero-subtitle {
  font-size: 1.02rem;
  max-width: 480px;
  color: var(--bb-muted);
  margin-bottom: 24px;
}

.bb-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.bb-hero-primary-cta {
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--bb-primary),
    var(--bb-secondary)
  );
  color: #fff;
  font-weight: 600;
  box-shadow: 0 16px 38px rgba(255, 59, 141, 0.45);
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bb-hero-primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(255, 59, 141, 0.55);
}

.bb-hero-secondary-cta {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 16, 0.5);
  color: var(--bb-muted);
  font-size: 0.95rem;
  cursor: pointer;
}

.bb-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--bb-muted);
}

.bb-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bb-hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.25);
}

.bb-hero-card {
  background: rgba(5, 5, 16, 0.86);
  border-radius: var(--bb-radius-xl);
  padding: 18px 18px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--bb-shadow-soft);
  backdrop-filter: blur(24px);
}

.bb-hero-card-title {
  font-size: 1rem;
  margin-bottom: 4px;
}

.bb-hero-card-subtitle {
  font-size: 0.86rem;
  color: var(--bb-muted);
  margin-bottom: 14px;
}

.bb-hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.bb-hero-stat {
  flex: 1 1 120px;
  background: rgba(18, 18, 40, 0.9);
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

.bb-hero-stat-label {
  color: var(--bb-muted);
  margin-bottom: 2px;
}

.bb-hero-stat-value {
  font-weight: 600;
}

.bb-hero-phone {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--bb-muted);
}

.bb-hero-phone a {
  color: #ffd6ea;
  font-weight: 500;
}

/* About */
.bb-about-card {
  background: rgba(5, 5, 16, 0.9);
  padding: 26px 24px;
  border-radius: var(--bb-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  max-width: 780px;
}

.bb-about-card p {
  line-height: 1.6;
  color: #ececf5;
  margin: 0 0 10px;
}

.bb-about-footnote {
  font-size: 0.88rem;
  color: var(--bb-muted);
}

/* Services */
.bb-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 900px) {
  .bb-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bb-service-card {
  background: rgba(5, 5, 16, 0.95);
  border-radius: var(--bb-radius-lg);
  border: 1px solid var(--bb-border);
  padding: 20px 18px 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bb-service-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bb-muted);
}

.bb-service-title {
  font-size: 1.12rem;
  margin-top: 2px;
}

.bb-service-price {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #ffe27a;
}

.bb-service-desc {
  font-size: 0.92rem;
  color: #e5e5f5;
  line-height: 1.6;
  flex: 1 1 auto;
}

.bb-service-cta {
  margin-top: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 30, 0.9);
  color: #fff;
  cursor: pointer;
  text-align: center;
}

.bb-deposit-note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.95rem;
  color: #ffe27a;
  font-weight: 500;
}

.bb-data-capture {
  margin-top: 32px;
  background: rgba(15, 15, 35, 0.9);
  border-radius: var(--bb-radius-lg);
  padding: 20px 20px 18px;
  border: 1px solid rgba(124, 184, 255, 0.35);
}

.bb-data-capture h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.bb-data-capture p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--bb-muted);
  line-height: 1.6;
}

/* How it works */
.bb-hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .bb-hiw-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bb-hiw-step {
  background: rgba(5, 5, 16, 0.95);
  border-radius: var(--bb-radius-lg);
  border: 1px solid var(--bb-border);
  padding: 18px 16px 16px;
  font-size: 0.93rem;
  color: #eaeaf6;
}

.bb-hiw-step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe27a, #ff3b8d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bb-hiw-step-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.bb-hiw-step p {
  margin: 0;
  line-height: 1.6;
}

.bb-hiw-step a {
  color: #7dd6ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* Forms */
.bb-form-card {
  background: rgba(5, 5, 16, 0.95);
  border-radius: var(--bb-radius-lg);
  padding: 24px 22px 22px;
  border: 1px solid var(--bb-border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  max-width: 760px;
}

.bb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

@media (max-width: 720px) {
  .bb-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bb-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.bb-form-group label {
  color: var(--bb-muted);
}

.bb-input,
.bb-select,
.bb-textarea {
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 24, 0.9);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bb-input:focus,
.bb-select:focus,
.bb-textarea:focus {
  border-color: var(--bb-primary);
  box-shadow: 0 0 0 1px rgba(255, 59, 141, 0.65);
}

.bb-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% - 3px),
    calc(100% - 9px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* Date input - Calendar icon */
input[type="date"].bb-input {
  padding-right: 40px;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

input[type="date"].bb-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Time input - Clock icon */
input[type="time"].bb-input {
  padding-right: 40px;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

input[type="time"].bb-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.bb-textarea {
  resize: vertical;
  min-height: 72px;
}

.bb-special-requests {
  margin-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 14px;
}

.bb-special-requests-title {
  font-size: 0.9rem;
  color: var(--bb-muted);
  margin-bottom: 8px;
}

.bb-special-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.88rem;
}

.bb-special-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #e1e1f3;
}

.bb-special-options input[type="checkbox"] {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  accent-color: var(--bb-primary);
}

.bb-special-other-text {
  display: none;
  margin-top: 10px;
  font-size: 0.86rem;
}

.bb-special-other-text.show {
  display: block;
}

.bb-form-submit {
  margin-top: 20px;
}

.bb-form-submit button {
  width: 100%;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--bb-primary),
    var(--bb-secondary)
  );
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 16px 40px rgba(255, 59, 141, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bb-form-submit button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(255, 59, 141, 0.6);
}

.bb-form-note {
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--bb-muted);
  text-align: center;
}

.bb-form-message {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  display: none;
  animation: fadeIn 0.3s ease;
}

.bb-form-message:not(:empty) {
  display: block;
}

.bb-form-message.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.bb-form-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bb-form-submit button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* FAQs */
.bb-faq-list {
  max-width: 780px;
}

.bb-faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 16, 0.95);
  margin-bottom: 10px;
  overflow: hidden;
}

.bb-faq-header {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.95rem;
}

.bb-faq-question {
  font-weight: 500;
}

.bb-faq-toggle {
  font-size: 1.1rem;
  color: var(--bb-muted);
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.bb-faq-body {
  padding: 0 14px 12px;
  font-size: 0.9rem;
  color: var(--bb-muted);
  line-height: 1.6;
  display: none;
}

.bb-faq-item.open .bb-faq-body {
  display: block;
}

.bb-faq-item.open .bb-faq-toggle {
  transform: rotate(45deg);
}

/* Modal */
.bb-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.bb-modal-overlay.is-visible {
  display: flex;
}

.bb-modal {
  background: rgba(5, 5, 16, 0.98);
  border-radius: 22px;
  padding: 22px 18px 18px;
  max-width: 720px;
  width: 100%;
  margin: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
}

.bb-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bb-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.bb-modal-close {
  border: none;
  background: transparent;
  color: var(--bb-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-modal-close:hover {
  color: #fff;
}

.bb-modal-body {
  font-size: 0.95rem;
  color: var(--bb-muted);
  line-height: 1.6;
}

/* Footer */
.bb-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 24px;
  font-size: 0.85rem;
  color: var(--bb-muted);
}

.bb-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.bb-footer a {
  color: #ffd6ea;
}

