/* ============================================
   BookBabes - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --purple: #6B21C8;
  --purple-light: #7C3AED;
  --purple-dark: #4C1D95;
  --purple-bg: #F5F0FF;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --red: #EF4444;
  --gold: #F59E0B;
  --green: #10B981;
  --dark-navy: #0F172A;
  --dark-card: #1E293B;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --bg-light: #F9FAFB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --font-logo: 'Fredoka One', cursive;
  --font-main: 'Inter', sans-serif;
  --font-body:  ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #f9fafb !important;
  line-height: 1.6;
  font-size: 15px;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

/* ── Layout ── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 30px 0; }
.section-sm { padding: 40px 0; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.navbar-logo {
  font-family: var(--font-logo);
  font-size: 1.6rem;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.navbar-nav a:hover { color: var(--purple); }
.navbar-nav a.active { color: var(--purple); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  padding: 8px 20px;
  border: 2px solid var(--blue);
  border-radius: var(--radius-pill);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-login:hover { background: var(--blue); color: var(--white); }

.btn-provider {
  padding: 8px 20px;
  background: var(--dark-navy);
  border: 2px solid var(--dark-navy);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-provider:hover { background: var(--purple); border-color: var(--purple); }

/* ── Purple variant header buttons ── */
.btn-provider-purple {
  padding: 8px 20px;
  background: var(--purple);
  border: 2px solid var(--purple);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-provider-purple:hover { background: var(--purple-dark); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: 0.3s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary { background: rgb(126 34 206); color: var(--white); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(107,33,200,0.35); }
.btn-secondary { background: rgb(241 245 249); color: var(--text-dark); font-weight: 700; }
.btn-secondary:hover { background:rgb(235, 232, 232) ; color: black; font-weight: 700; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #DC2626; transform: translateY(-1px); }
.btn-dark { background: var(--dark-navy); color: var(--white); }
.btn-dark:hover { background: #1E293B; }
.btn-outline-white { background: rgb(255 255 255); color: rgb(88 28 135); border: 2px solid rgba(255,255,255,0.5);font-weight: 700; }
/* .btn-outline-white:hover { background: rgba(255,255,255,0.1); } */
.btn-full { width: 100%; }

/* ============================================
   HERO SECTION (HOME)
   ============================================ */
.hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e0c3fc 0%, #f9a8d4 50%, #fde68a 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.1rem;
  margin-top: 8px;
  opacity: 0.9;
  font-weight: 500;
}

/* ============================================
   CITY TABS
   ============================================ */
.city-bar {
  background: var(--blue-light);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.city-bar::-webkit-scrollbar { display: none; }
.city-btn {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.city-btn:hover, .city-btn.active {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.city-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1rem;
  transition: 0.2s;
}
.city-arrow:hover { background: var(--dark-navy); color: var(--white); }

/* ============================================
   FILTERS BAR
   ============================================ */
.filters-bar {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.filter-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  cursor: pointer;
}
.filter-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.filter-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
}
.filter-toggle input[type="checkbox"] { accent-color: var(--purple); }

/* ============================================
   PROFILE GRID
   ============================================ */
.profiles-section {
  padding: 32px 24px;
  background: var(--bg-light);
  min-height: 400px;
}
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #000;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.profile-card:hover img { opacity: 1; }

.profile-badge-row {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.badge-available {
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-unavailable {
  background: #6B7280;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-sponsored {
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 3px;
}
.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--white);
}
.profile-info h3 {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.profile-info .location {
  font-size: 0.75rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 3px;
}
.verified-icon { color: #FCD34D; font-size: 0.8rem; }

/* ============================================
   PAGE HERO (purple for about/safety etc.)
   ============================================ */
.page-hero {
  background: rgb(88 28 135);
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); }
.page-hero p { opacity: 0.85; margin-top: 25px; margin-bottom: 20px; font-size: 20px; max-width: 936px; margin-left: auto; margin-right: auto; }

/* Dark page hero */
.page-hero-dark {
  background: var(--dark-navy);
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
}
.page-hero-dark h1 { color: var(--white); font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";}
.page-hero-dark p { opacity: 0.75; margin-top: 12px; font-size: 20px; max-width: 865px; margin: 12px auto 0; margin-bottom: 20px;color: rgb(203 213 225);}
.page-hero-icon {
  width: 64px;
  height: 64px;
  background: rgba(107,33,200,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.page-hero-icon-red {
  width: 64px;
  height: 64px;
  background: rgba(239,68,68,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

/* ============================================
   CARDS / SECTIONS
   ============================================ */
.white-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin: -32px auto 0;
  max-width: 960px;
  position: relative;
  z-index: 2;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.two-col-wide { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-col h4 {
  color: rgb(107 33 168);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.feature-col p { color: #48494a; font-size: 16px; line-height: 1.7; }

.check-list { 
  margin-top: 14px; 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
  list-style: none; /* Ensure default bullets are hidden */
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* .check-list li::before {
  content: '✓';
  width: 18px;
  height: 18px;     
  border: 2px solid #22c55e;
  background: transparent;   
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #22c55e;
  flex-shrink: 0;
  padding-bottom: 1px; 
} */

/* How it works steps */
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--purple-bg);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 14px;
}
.step-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.step-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Dark section */
.dark-section {
  background: rgb(15 23 42);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  max-width: 1050px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.dark-section h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 8px; }
.dark-section p { color: rgba(255,255,255,0.75); font-size: 16px; }

.dark-inner {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
  width: 431px;
}
.dark-inner h4 { color: rgb(251 191 36 / var(--tw-text-opacity, 1)); font-size: 20px; margin-bottom: 14px; }

.verify-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.verify-icon {
  width: 30px;
  height: 30px;
  background: rgb(147 51 234 / var(--tw-bg-opacity, 1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.verify-item h5 { font-size: 0.88rem; color: var(--white); margin-bottom: 2px; }
.verify-item p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  padding-bottom: 5px;
}
.bullet-num {
  width: 22px;
  height: 22px;
  background: rgb(251 191 36 / 0.2);
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Pricing */
pricing-section {
  padding: 48px 24px;
  background: #f3f4f6;
}
 
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 950px;
  margin: 0 auto;
  width: 100%;
}
 
.pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.75rem;
}
 
.pricing-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.25rem;
}
 
.pricing-card-title svg {
  flex-shrink: 0;
}
 
/* Plans */
.pricing-plan {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
 
.pricing-plan:last-child {
  margin-bottom: 0;
}
 
.pricing-plan--premium {
  background: #eeedfe;
  border-color: #c4bff5;
}
 
.pricing-plan--vip {
  background: #faeeda;
  border-color: #f5d29a;
}
 
.pricing-plan-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
 
.pricing-plan-name {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
 
.pricing-plan--premium .pricing-plan-name { color: #534ab7; }
.pricing-plan--vip .pricing-plan-name     { color: #854f0b; }
 
.pricing-plan-price {
  font-size: 14px;
  font-weight: 700;
  color: rgb(147 51 234)
}
 
.pricing-plan--vip .pricing-plan-price { color: #854f0b; }
 
.pricing-plan-desc {
  font-size: 12px;
  color: #6b7280;
  margin-top: 5px;
  line-height: 1.4;
}
 
/* Boost */
.pricing-boost-intro {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
 
.pricing-boost-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 2.2rem;
}
 
.pricing-boost-item:last-child {
  margin-bottom: 0;
}
 
.pricing-boost-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.pricing-boost-icon--yellow { background: #faeeda; }
.pricing-boost-icon--purple { background: #eeedfe; }
.pricing-boost-icon--blue   { background: #e6f1fb; }
 
.pricing-boost-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}
 
.pricing-boost-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}
 
@media (max-width: 640px) {
  .pricing-inner { grid-template-columns: 1fr; }
}

/* Container Setup */
/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 48px 24px;
}
.cta-banner h2 { margin-bottom: 20px; }

/* Purple CTA box */
.cta-box {
  background: rgb(88 28 135);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  max-width: 960px;
  margin: 0 auto;
}
.cta-box h2 { color: var(--white); margin-bottom: 8px; font-size: 20px; }
.cta-box p { opacity: 0.85; margin-bottom: 24px; }

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list { max-width:824px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  gap: 12px;
}
.faq-question:hover { background: var(--bg-light); }
.faq-icon { color: var(--purple); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0 20px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  background: var(--purple-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.92rem; margin-bottom: 3px; }
.contact-card p { font-size: 12px; color: var(--text-muted); }
.contact-card-purple {
  background: rgb(88 28 135);
  border-color: var(--purple);
  color: var(--white);
}
.contact-card-purple .contact-card-icon { background: rgba(255,255,255,0.2); }
.contact-card-purple h4, .contact-card-purple p { color: var(--white); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }
.form-control {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,33,200,0.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

/* ============================================
   REPORT PAGE
   ============================================ */
.report-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 620px;
  margin: 48px auto;
  box-shadow: var(--shadow-md);
}
.commitment-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 620px;
  margin: 0 auto 48px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.commitment-box .icon { color: var(--red); font-size: 1.2rem; flex-shrink: 0; }
.commitment-box p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.commitment-box h4 { font-size: 0.9rem; margin-bottom: 4px; }

/* ============================================
   SAFETY & TRUST
   ============================================ */
.commitment-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.commitment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.commitment-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.icon-wrap-blue { background: rgb(219 234 254); }
.icon-wrap-green { background: rgb(220 252 231); }
.icon-wrap-red { background: rgb(254 226 226); }
.commitment-card h4 { font-size:16px; margin-bottom: 8px; }
.commitment-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.purple-section {
  background: rgb(88 28 135);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  max-width: 1060px;
  margin: 0 auto;
}
.purple-section h3 { color: rgb(255 255 255); font-size: 30px; margin-bottom: 35px; }

.safety-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.safety-col h4 { color: rgba(255,255,255,0.9); font-size: 0.95rem; margin-bottom: 14px; }
.safety-list { display: flex; flex-direction: column; gap: 10px; }
.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  padding-top: 6px;
}
/* .safety-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
} */

.see-something-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 1060px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.see-something-box h3 { font-size: 1.3rem; margin-bottom: 8px; }
.see-something-box p { color: var(--text-muted); margin-bottom: 24px; }
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #4C1D95 100%);
  color: var(--white);
  padding: 56px 32px 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-logo);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 8px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-style: italic; }
.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a.red-link { color: #F87171; }
.footer-col ul li a.red-link:hover { color: #FCA5A5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.status-dot {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 { font-size: 1.8rem; }
.section-header p { color: var(--text-muted); margin-top: 10px; font-size: 0.95rem; }

.section-title-left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-title-left h3 { font-size: 30px }
.section-icon {
  font-size: 1.2rem;
  color: var(--purple);
}

/* ============================================
   WHY BOOKBABES CARD
   ============================================ */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
  margin-top: -4.5rem;
}
.why-card h3 {
  font-size: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .profiles-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .commitment-cards { grid-template-columns: 1fr; }
  .safety-two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .white-card { margin: 0 16px; padding: 24px; }
  .dark-section { padding: 28px 20px; }
  .purple-section { padding: 28px 20px; }
  .two-col-wide { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 16px; }
  .container { padding: 0 16px; }
}
