/* ═══════════════════════════════════════════════════════════════════════════
   INNER PAGES — Shared premium styles for all non-home pages
   Consistent with the premium-home.css design language.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Page Hero Banner (Inner Pages) ─────────────────────────────────────── */
.page-hero-inner {
  background: linear-gradient(135deg, #0a192f 0%, #1a365d 50%, #0d2137 100%);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201, 154, 59, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(100, 160, 220, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-inner .shell {
  position: relative;
  z-index: 1;
}

.page-hero-inner .eyebrow {
  color: #f5d79e;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.7rem;
}

.page-hero-inner h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-hero-inner p.hero-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.page-hero-inner .hero-inner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d4a845 0%, #f5d79e 50%, #c9983a 100%);
  color: #1a1000;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(201, 154, 59, 0.35);
}

.page-hero-inner .hero-inner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 154, 59, 0.5);
}

/* Override old content-hero */
.content-hero {
  background: linear-gradient(135deg, #0a192f 0%, #1a365d 50%, #0d2137 100%) !important;
  position: relative;
  overflow: hidden;
}

.content-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201, 154, 59, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(100, 160, 220, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.content-hero .eyebrow {
  color: #f5d79e !important;
  position: relative;
  z-index: 1;
}

.content-hero h1,
.content-hero p {
  position: relative;
  z-index: 1;
}

/* ─── Section Headings (inner pages) ─────────────────────────────────────── */
.section-head {
  margin: 3rem 0 2rem !important;
}

.section-head .eyebrow {
  color: var(--accent) !important;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text);
  margin: 0.4rem 0 0.5rem;
}

/* ─── Premium Icon Cards ──────────────────────────────────────────────────── */
.icon-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.icon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #d4a845 0%, #c9983a 100%);
  transform: scaleX(0);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(21, 58, 91, 0.12);
  border-color: rgba(201, 154, 59, 0.2);
}

.icon-card:hover::before {
  transform: scaleX(1);
}

.icon-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0a192f, #1a365d);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.icon-card-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.icon-card-icon.accent {
  background: linear-gradient(135deg, #d4a845, #c9983a);
}

.icon-card-icon.accent svg {
  color: #1a1000;
}

.icon-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.icon-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.icon-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 200ms ease;
}

.icon-card:hover .card-link {
  gap: 0.6rem;
}

/* ─── Enhanced Step Cards ────────────────────────────────────────────────── */
.step-card {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 20px !important;
  padding: 1.75rem !important;
  box-shadow: 0 4px 20px rgba(21, 58, 91, 0.05) !important;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.step-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(21, 58, 91, 0.12) !important;
}

.step-index {
  background: linear-gradient(135deg, #d4a845 0%, #c9983a 100%) !important;
  color: #1a1000 !important;
  border-radius: 12px !important;
  padding: 0.35rem 0.7rem !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  box-shadow: 0 3px 12px rgba(201, 154, 59, 0.3);
  display: inline-flex;
}

.step-card h3 {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.1rem !important;
  margin: 0.7rem 0 0.4rem !important;
}

/* ─── Enhanced Value Cards ───────────────────────────────────────────────── */
.value-card {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 20px !important;
  padding: 1.75rem !important;
  box-shadow: 0 4px 20px rgba(21, 58, 91, 0.05) !important;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.value-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(21, 58, 91, 0.12) !important;
  border-color: rgba(201, 154, 59, 0.25) !important;
}

.value-card h3 {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.05rem !important;
  color: var(--text) !important;
}

/* ─── FAQ Styles ─────────────────────────────────────────────────────────── */
.faq-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 3rem;
}

.faq-item {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(21, 58, 91, 0.08) !important;
  border-color: rgba(201, 154, 59, 0.25) !important;
}

.faq-item h3 {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1rem !important;
  color: var(--text) !important;
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-item h3::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #d4a845, #c9983a);
  color: #1a1000;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}

.faq-item p {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

/* ─── Policy Styles ──────────────────────────────────────────────────────── */
.policy-grid {
  display: grid;
  gap: 1rem;
  margin: 0 0 3rem;
}

.policy-item {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 16px !important;
  padding: 1.5rem 1.75rem !important;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-left: 4px solid var(--accent) !important;
}

.policy-item:hover {
  box-shadow: 0 8px 30px rgba(21, 58, 91, 0.08) !important;
}

.policy-item h3 {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.05rem !important;
  color: var(--text) !important;
  margin-top: 0 !important;
}

.policy-item p {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

/* ─── Fleet / Groups Page Styles ─────────────────────────────────────────── */
.fleet-category {
  margin-bottom: 3.5rem;
}

.fleet-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e8eef5;
}

.fleet-category-header h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  color: var(--text);
  margin: 0;
}

.fleet-category-desc {
  background: rgba(201, 154, 59, 0.06);
  border-left: 3px solid var(--accent, #c99a3b);
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.25rem;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
}

.category-book {
  background: linear-gradient(135deg, #d4a845, #c9983a) !important;
  color: #1a1000 !important;
  border-radius: 10px !important;
  padding: 0.55rem 1.2rem !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 3px 12px rgba(201, 154, 59, 0.3);
  transition: all 250ms ease !important;
  white-space: nowrap;
}

.category-book:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(201, 154, 59, 0.4) !important;
}

.model-card {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 16px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(21, 58, 91, 0.05);
}

.model-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(21, 58, 91, 0.13) !important;
  border-color: rgba(201, 154, 59, 0.25) !important;
}

.model-info {
  padding: 1rem 1.1rem 0.9rem !important;
}

.model-name {
  font-family: "Fraunces", Georgia, serif !important;
  font-size: 1.05rem !important;
}

.photo-placeholder {
  background: linear-gradient(135deg, #f0f5fa, #e8eef5) !important;
  color: #9fb4cb !important;
}

/* ─── Group Cards (home page + groups list) ─────────────────────────────── */
.group-card {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 18px !important;
  padding: 1.25rem !important;
  box-shadow: 0 4px 20px rgba(21, 58, 91, 0.05);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.group-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(21, 58, 91, 0.13) !important;
  border-color: rgba(201, 154, 59, 0.25) !important;
}

.group-card h3 {
  font-family: "Fraunces", Georgia, serif !important;
}

.group-status-ok {
  background: #e6f7ee !important;
  color: #1a6638 !important;
}

.group-status-blocked {
  background: #fde8e7 !important;
  color: #8f2e29 !important;
}

/* ─── Booking Page Styles ────────────────────────────────────────────────── */
.booking-panel.card,
.booking-panel {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 20px !important;
  padding: 2rem !important;
  box-shadow: 0 8px 30px rgba(21, 58, 91, 0.08) !important;
}

.booking-panel h2 {
  font-family: "Fraunces", Georgia, serif !important;
  color: var(--text) !important;
}

.booking-panel label {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--muted) !important;
}

.booking-panel input,
.booking-panel select {
  border: 2px solid #e8eef5 !important;
  border-radius: 12px !important;
  padding: 0.85rem 1rem !important;
  font-size: 0.95rem !important;
  transition: all 200ms ease !important;
}

.booking-panel input:focus,
.booking-panel select:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px rgba(201, 154, 59, 0.1) !important;
}

/* Process strip on booking page */
.next-steps-strip {
  gap: 0.9rem !important;
  margin: 0 0 1.75rem !important;
}

.next-step {
  background: #ffffff !important;
  border: 1px solid #e8eef5 !important;
  border-radius: 14px !important;
  padding: 0.85rem 1.1rem !important;
  font-size: 0.85rem !important;
  color: var(--text) !important;
  box-shadow: 0 4px 15px rgba(21, 58, 91, 0.05) !important;
}

.next-step__num {
  background: linear-gradient(135deg, #d4a845, #c9983a) !important;
  color: #1a1000 !important;
  width: 24px !important;
  height: 24px !important;
}

/* Availability banner premium styling */
#availabilityBanner.avail-ok {
  background: #e6f7ee !important;
  color: #1a6638 !important;
  border: 1px solid #a3d9b8 !important;
  border-radius: 12px !important;
}

#availabilityBanner.avail-no {
  background: #fde8e7 !important;
  color: #8f2e29 !important;
  border: 1px solid #f5a9a5 !important;
  border-radius: 12px !important;
}

/* ─── Inner-page Bottom CTA ──────────────────────────────────────────────── */
.inner-cta-row {
  background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.inner-cta-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(201, 154, 59, 0.1), transparent);
  pointer-events: none;
}

.inner-cta-row .eyebrow {
  color: #f5d79e !important;
  position: relative;
  z-index: 1;
}

.inner-cta-row h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #ffffff;
  margin: 0.4rem 0 1.25rem;
  position: relative;
  z-index: 1;
}

.inner-cta-row .cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.inner-cta-row .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d4a845 0%, #c9983a 100%);
  color: #1a1000;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(201, 154, 59, 0.35);
}

.inner-cta-row .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 154, 59, 0.5);
}

.inner-cta-row .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.inner-cta-row .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ─── Contact Cards ──────────────────────────────────────────────────────── */
.contact-card {
  background: #ffffff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(21, 58, 91, 0.05);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 58, 91, 0.12);
  border-color: rgba(201, 154, 59, 0.25);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0a192f, #1a365d);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
}

.contact-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.contact-card .contact-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #d4a845, #c9983a);
  color: #1a1000;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 250ms ease;
}

.contact-card .contact-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(201, 154, 59, 0.4);
}

/* ─── Fleet Page Filter/Header Strip ────────────────────────────────────── */
.fleet-page-header {
  margin: 1.5rem 0 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fleet-page-header h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.3rem;
  color: var(--text);
}

.fleet-page-header p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.fleet-book-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d4a845, #c9983a);
  color: #1a1000;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(201, 154, 59, 0.32);
  flex-shrink: 0;
}

.fleet-book-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 154, 59, 0.48);
}

/* ─── Offline Notice Premium ─────────────────────────────────────────────── */
.offline-notice {
  background: #fffbf0 !important;
  border: 1px solid rgba(201, 154, 59, 0.3) !important;
  border-left: 4px solid var(--accent) !important;
  border-radius: 14px !important;
  padding: 1rem 1.25rem !important;
  font-size: 0.9rem !important;
  color: #5a3e00 !important;
}

/* ─── Grid helper ────────────────────────────────────────────────────────── */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ── Pickup location grid ─────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2.5rem;
  margin: 2rem 0 1.25rem;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(21,58,91,0.08);
}
.location-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent, #c99a3b);
  flex-shrink: 0;
  margin-top: 5px;
}
.location-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary, #153a5b);
  margin-bottom: 2px;
}
.location-item span {
  font-size: 0.875rem;
  color: #5a6478;
  line-height: 1.45;
}
.location-note {
  font-size: 0.875rem;
  color: #5a6478;
  background: rgba(201,154,59,0.08);
  border-left: 3px solid var(--accent, #c99a3b);
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1rem;
  margin: 0;
}
@media (max-width: 640px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ── Messaging app icon badges (WhatsApp / Viber) ───────────────────── */
.msg-icons {
  display: inline-flex;
  gap: 0.45rem;
  vertical-align: middle;
  margin-left: 0.5rem;
}
.msg-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.18s, transform 0.18s;
}
.msg-icon-link:hover { opacity: 0.85; transform: scale(1.08); }
.msg-icon-link svg { width: 15px; height: 15px; fill: currentColor; }
.msg-icon-wa { background: #25d366; }
.msg-icon-vi { background: #7360f2; }

@media (max-width: 900px) {
  .three-col { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .two-col { grid-template-columns: 1fr; }
  .fleet-page-header { flex-direction: column; align-items: flex-start; }
  .inner-cta-row { padding: 2rem 1.25rem; }
}
