/* ============================================================
   MyHolidaysZone — Inner pages shared styles
============================================================ */

.bb-inner-hero {
  padding: 30px 0 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bb-inner-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 20% 10%, rgba(255,255,255,.08), transparent),
              radial-gradient(600px 300px at 80% 90%, rgba(0,0,0,.15), transparent);
  pointer-events: none;
}
.bb-inner-hero .container { position: relative; z-index: 2; }
.bb-inner-hero-text { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.bb-inner-hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--bb-radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.bb-inner-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 10px;
}
.bb-inner-hero p { font-size: 16px; opacity: .92; }
.bb-inner-hero h1 + p { color: rgba(255,255,255,.85); }

/* Breadcrumb */
.bb-breadcrumb {
  background: var(--bb-bg);
  padding: 10px 0;
  font-size: 13px;
}
.bb-breadcrumb a { color: var(--bb-text-muted); text-decoration: none; }
.bb-breadcrumb a:hover { color: var(--bb-primary); }
.bb-breadcrumb span { color: var(--bb-text); font-weight: 600; }
.bb-breadcrumb i { font-size: 8px; color: var(--bb-text-muted); margin: 0 6px; }

/* TOUR SEARCH CARD */
.bb-tour-search {
  background: rgba(255, 255, 255, .96);
  border-radius: var(--bb-radius-lg);
  box-shadow: var(--bb-shadow-lg);
  padding: 18px;
  margin: 0 auto;
  max-width: 1000px;
  backdrop-filter: blur(10px);
}
.bb-tour-search-cell {
  background: var(--bb-bg);
  border: 1.5px solid var(--bb-border-light);
  border-radius: var(--bb-radius);
  padding: 10px 14px;
}
.bb-tour-search-cell:focus-within { border-color: var(--bb-primary); background: #fff; }
.bb-tour-search-cell label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--bb-text-muted);
  margin-bottom: 2px;
}
.bb-tour-search-cell select {
  width: 100%; border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--bb-text);
  outline: none;
  font-family: inherit;
  padding: 4px 0;
}
.bb-tour-search-btn {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bb-primary), var(--bb-primary-dark));
  color: #fff;
  border: 0;
  border-radius: var(--bb-radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: var(--bb-shadow-orange);
  min-height: 60px;
}
.bb-tour-search-btn:hover { transform: translateY(-2px); }
.bb-tour-search-btn i { margin-right: 6px; }

/* TYPE TILES */
.bb-type-tile {
  display: block;
  text-align: center;
  background: #fff;
  border: 1px solid var(--bb-border-light);
  border-radius: var(--bb-radius-lg);
  padding: 22px 14px;
  text-decoration: none;
  color: var(--bb-text);
  transition: all .2s var(--ease);
}
.bb-type-tile:hover { transform: translateY(-4px); box-shadow: var(--bb-shadow); border-color: var(--c); color: var(--c); }
.bb-type-tile > span {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  color: var(--c);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 10px;
}
.bb-type-tile strong { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
.bb-type-tile small { display: block; font-size: 12px; color: var(--bb-text-muted); }

/* AUTH PAGES */
.bb-auth-page {
  min-height: calc(100vh - var(--header-h) - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bb-bg);
}
@media (max-width: 991px) { .bb-auth-page { grid-template-columns: 1fr; } }
.bb-auth-side {
  background: linear-gradient(135deg, #0d9488, #134e4a);
  color: #fff;
  padding: 60px 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.bb-auth-side::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 400px at 80% 20%, rgba(255,255,255,.1), transparent),
              radial-gradient(400px 300px at 10% 90%, rgba(0,0,0,.18), transparent);
}
.bb-auth-side > * { position: relative; z-index: 2; }
.bb-auth-side h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
  font-weight: 800;
}
.bb-auth-side p { font-size: 16px; opacity: .9; }
.bb-auth-side-features { margin-top: 32px; }
.bb-auth-side-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 15px;
}
.bb-auth-side-features li i { color: var(--bb-accent); }
@media (max-width: 991px) { .bb-auth-side { padding: 40px 24px; min-height: 240px; } }

.bb-auth-form-wrap {
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
  background: #f1f5f9;
}
@media (max-width: 991px) { .bb-auth-form-wrap { padding: 36px 20px; } }
.bb-auth-form {
  max-width: 420px; margin: 0 auto; width: 100%;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 8px 40px rgba(249,115,22,.10), 0 2px 14px rgba(15,23,42,.07);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
}
.bb-auth-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 50%, #ea580c 100%);
}
.bb-auth-form h1 { font-size: 26px; font-weight: 800; margin-bottom: 4px; }
.bb-auth-form > p { color: var(--bb-text-muted); margin-bottom: 24px; }
.bb-auth-tabs {
  display: flex;
  background: var(--bb-bg);
  border-radius: var(--bb-radius-pill);
  padding: 4px;
  margin-bottom: 24px;
}
.bb-auth-tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: var(--bb-radius-pill);
  font-weight: 700;
  font-size: 14px;
  color: var(--bb-text-muted);
  cursor: pointer;
  transition: all .15s var(--ease);
}
.bb-auth-tab.is-active { background: var(--bb-primary); color: #fff; box-shadow: var(--bb-shadow-orange); }
.bb-auth-form-group { margin-bottom: 16px; }
.bb-auth-label { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--bb-text-muted); margin-bottom: 6px; }
.bb-auth-label i { font-size: 13px; color: var(--bb-primary); flex-shrink: 0; }
/* Input group with prefix (+91) */
.bb-auth-input-group { display: flex; }
.bb-auth-prefix { display: flex; align-items: center; padding: 0 13px; background: #f8fafc; border: 1.5px solid var(--bb-border); border-right: none; border-radius: var(--bb-radius) 0 0 var(--bb-radius); font-size: 15px; font-weight: 600; color: var(--bb-text); white-space: nowrap; }
.bb-auth-input-group .bb-auth-input { border-radius: 0 var(--bb-radius) var(--bb-radius) 0; }
/* Password show/hide */
.bb-auth-pw-wrap { position: relative; }
.bb-auth-pw-wrap .bb-auth-input { padding-right: 44px; }
.bb-auth-pw-eye { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; padding: 0; cursor: pointer; color: var(--bb-text-muted); font-size: 15px; line-height: 1; }
.bb-auth-pw-eye:hover { color: var(--bb-primary); }
.bb-auth-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--bb-border);
  border-radius: var(--bb-radius);
  font-size: 15px;
  font-family: inherit; outline: none;
}
.bb-auth-input:focus { border-color: var(--bb-primary); box-shadow: 0 0 0 4px rgba(249, 115, 22, .12); }
.bb-auth-otp-row {
  display: flex; gap: 8px; justify-content: space-between;
  margin-bottom: 14px;
}
.bb-auth-otp {
  width: 48px; height: 56px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  border: 2px solid var(--bb-border);
  border-radius: var(--bb-radius);
  outline: none;
}
.bb-auth-otp:focus { border-color: var(--bb-primary); }
.bb-auth-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--bb-primary), var(--bb-primary-dark));
  color: #fff;
  border: 0;
  padding: 14px;
  border-radius: var(--bb-radius);
  font-weight: 700; font-size: 15px;
  cursor: pointer;
  box-shadow: var(--bb-shadow-orange);
  margin-top: 4px;
}
.bb-auth-submit:hover { transform: translateY(-2px); }
.bb-auth-or {
  text-align: center;
  margin: 22px 0;
  font-size: 12px;
  color: var(--bb-text-muted);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bb-auth-or::before, .bb-auth-or::after {
  content: '';
  position: absolute; top: 50%;
  width: 35%; height: 1px;
  background: var(--bb-border);
}
.bb-auth-or::before { left: 0; }
.bb-auth-or::after { right: 0; }
.bb-auth-social {
  display: flex; gap: 10px;
}
.bb-auth-social button {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1.5px solid var(--bb-border);
  border-radius: var(--bb-radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.bb-auth-social button:hover { border-color: var(--bb-primary); }
.bb-auth-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--bb-text-muted);
}
.bb-auth-foot a { color: var(--bb-primary); font-weight: 700; }

/* STATIC PAGES (About/Contact/FAQs/Terms) */
.bb-static-page { padding: 50px 0; }
.bb-static-page h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; }
.bb-static-page p { font-size: 15px; line-height: 1.7; color: var(--bb-text); }

.bb-static-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0;
}
@media (max-width: 767px) { .bb-static-cards { grid-template-columns: repeat(2, 1fr); } }
.bb-static-card {
  background: #fff;
  border: 1px solid var(--bb-border-light);
  border-radius: var(--bb-radius-lg);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--bb-text);
  transition: all .2s var(--ease);
}
.bb-static-card:hover { transform: translateY(-4px); box-shadow: var(--bb-shadow); }
.bb-static-card-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bb-primary-soft);
  color: var(--bb-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
}
.bb-static-card strong { display: block; font-size: 14px; margin-bottom: 2px; }
.bb-static-card span { display: block; font-size: 13px; color: var(--bb-text-muted); }

/* CONTACT FORM */
.bb-contact-form { background: #fff; border: 1px solid var(--bb-border-light); border-radius: var(--bb-radius-lg); padding: 26px; box-shadow: var(--bb-shadow-sm); }
.bb-contact-form-group { margin-bottom: 14px; }
.bb-contact-form label { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--bb-text-muted); margin-bottom: 6px; }
.bb-contact-form label i { font-size: 13px; color: var(--bb-primary); flex-shrink: 0; }
.bb-contact-form input, .bb-contact-form select, .bb-contact-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--bb-border);
  border-radius: var(--bb-radius);
  font-size: 14.5px; font-family: inherit; outline: none;
}
.bb-contact-form input:focus, .bb-contact-form select:focus, .bb-contact-form textarea:focus {
  border-color: var(--bb-primary);
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}

/* FAQ accordion */
.bb-faq-cats {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.bb-faq-cat {
  background: #fff;
  border: 1px solid var(--bb-border);
  color: var(--bb-text);
  padding: 8px 16px;
  border-radius: var(--bb-radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.bb-faq-cat.is-active { background: var(--bb-primary); color: #fff; border-color: var(--bb-primary); }
.bb-faq-list { max-width: 800px; margin: 0 auto; }
.bb-faq-item {
  background: #fff;
  border: 1px solid var(--bb-border-light);
  border-radius: var(--bb-radius-lg);
  margin-bottom: 10px;
  box-shadow: var(--bb-shadow-xs);
  overflow: hidden;
}
.bb-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.bb-faq-q i { transition: transform .2s var(--ease); }
.bb-faq-item.is-open .bb-faq-q i { transform: rotate(180deg); }
.bb-faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--bb-text-muted);
}
.bb-faq-item.is-open .bb-faq-a { display: block; }

/* 404 */
.bb-404 {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #fff7ed, #fff);
}
.bb-404-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--bb-primary), var(--bb-accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin: 0;
}
.bb-404 h1 { font-size: 28px; margin: 18px 0 8px; }
.bb-404 p { color: var(--bb-text-muted); max-width: 500px; margin: 0 auto 24px; }
.bb-404-actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 30px;
}
.bb-404-chips {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.bb-404-chip {
  background: #fff;
  border: 1px solid var(--bb-border);
  color: var(--bb-text);
  padding: 7px 14px;
  border-radius: var(--bb-radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.bb-404-chip:hover { background: var(--bb-primary); color: #fff; border-color: var(--bb-primary); }

/* MY BOOKINGS */
.bb-mb-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.bb-mb-tab {
  background: #fff;
  border: 1px solid var(--bb-border);
  color: var(--bb-text);
  padding: 9px 18px;
  border-radius: var(--bb-radius-pill);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
}
.bb-mb-tab.is-active { background: var(--bb-primary); color: #fff; border-color: var(--bb-primary); }
.bb-mb-card {
  background: #fff;
  border: 1px solid var(--bb-border-light);
  border-radius: var(--bb-radius-lg);
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: var(--bb-shadow-sm);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
}
@media (max-width: 767px) { .bb-mb-card { grid-template-columns: auto 1fr; } }
.bb-mb-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bb-primary-soft);
  color: var(--bb-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.bb-mb-info strong { display: block; font-size: 15px; font-weight: 700; }
.bb-mb-info small { display: block; font-size: 12.5px; color: var(--bb-text-muted); }
.bb-mb-status {
  background: var(--bb-success);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--bb-radius-pill);
  font-size: 11px;
  font-weight: 700;
}
.bb-mb-status--cancelled { background: var(--bb-danger); }
.bb-mb-status--completed { background: var(--bb-text-muted); }
.bb-mb-actions { display: flex; gap: 6px; }
.bb-mb-action-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bb-bg);
  border: 1px solid var(--bb-border);
  color: var(--bb-text);
  cursor: pointer;
}
.bb-mb-action-btn:hover { background: var(--bb-primary); color: #fff; border-color: var(--bb-primary); }

.text-light-50 { color: rgba(255,255,255,.7); text-decoration: none; }
.text-light-50:hover { color: var(--bb-accent); }
