
:root {
  --sellar-blue: #0062ff;
  --sellar-blue-dark: #0040b8;
  --bg-dark: #050608;
  --bg-light: #ffffff;
  --text-main: #0b0c0f;
  --text-muted: #7b7f8c;
  --border-subtle: #e1e3ea;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  color: var(--text-main);
  background: var(--bg-dark);
}

body.inner-page {
  background: #f4f5f8;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 8, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.inner-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  height: 32px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #f8f9fc;
  opacity: 0.9;
}

.inner-page .site-nav a {
  color: #11131a;
}

.site-nav a:hover {
  opacity: 1;
}

.btn-primary.nav-book {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sellar-blue);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 98, 255, 0.45);
}

.nav-toggle {
  border: none;
  background: none;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.inner-page .nav-toggle span {
  background: #11131a;
}

/* Hero */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(5, 6, 8, 0.94) 18%, rgba(5, 6, 8, 0.4) 52%, rgba(0, 0, 0, 0.2) 100%),
    url("../img/bmw-hero.jpeg") right center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 72px 0 80px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 10px;
}

.hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 380px;
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Buttons */

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background: var(--sellar-blue);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 98, 255, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 98, 255, 0.7);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: transparent;
}

.inner-page .btn-outline {
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

/* Highlights */

.highlights {
  padding: 40px 0 50px;
  background: radial-gradient(circle at top left, rgba(0, 98, 255, 0.35), transparent 55%);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  background: radial-gradient(circle at top left, rgba(0, 98, 255, 0.14), rgba(10, 11, 18, 0.95));
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f7f7ff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.highlight-card h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.highlight-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(242, 244, 255, 0.82);
}

/* Booking */

.booking {
  padding: 40px 0 60px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: flex-start;
}

.booking-copy h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #f7f7ff;
}

.inner-page .booking-copy h2 {
  color: var(--text-main);
}

.booking-copy p {
  margin-bottom: 12px;
  color: rgba(244, 245, 255, 0.85);
}

.inner-page .booking-copy p {
  color: var(--text-muted);
}

.booking-points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(244, 245, 255, 0.85);
}

.booking-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.booking-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sellar-blue);
}

.booking-form {
  background: #0b0c11;
  border-radius: var(--radius-xl);
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.inner-page .booking-form {
  background: #ffffff;
  border-color: var(--border-subtle);
}

.form-row {
  margin-bottom: 12px;
}

.form-row label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  color: rgba(244, 245, 255, 0.8);
}

.inner-page .form-row label {
  color: #686c78;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 11, 18, 0.9);
  color: #f7f7ff;
  font-size: 0.9rem;
}

.inner-page .form-row input,
.inner-page .form-row select,
.inner-page .form-row textarea {
  background: #f9fafc;
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 1px solid var(--sellar-blue);
  border-color: var(--sellar-blue);
}

.form-row textarea {
  resize: vertical;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-note {
  margin-top: 8px;
  font-size: 0.78rem;
  color: rgba(244, 245, 255, 0.65);
}

/* Inner page basics */

.page-hero {
  padding: 28px 0 18px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
  margin: 0 0 4px;
  font-size: 1.7rem;
}

.page-hero p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* Fleet */

.fleet-grid-section {
  padding: 26px 0 40px;
}

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

.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 16px 16px 18px;
  box-shadow: 0 12px 26px rgba(15, 18, 32, 0.08);
}

.fleet-card h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.fleet-card p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fleet-card ul {
  margin: 0 0 12px;
  padding-left: 18px;
  font-size: 0.86rem;
  color: #464b58;
}

/* Pricing */

.pricing-toggle-section {
  padding: 26px 0 16px;
}

.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
}

.pricing-toggle {
  position: relative;
  width: 56px;
  height: 26px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: var(--sellar-blue);
  cursor: pointer;
}

.pricing-toggle .toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.16s ease;
}

body.pricing-standard .pricing-toggle {
  background: #1c1f2b;
}

body.pricing-standard .pricing-toggle .toggle-knob {
  transform: translateX(26px);
}

.toggle-label {
  font-size: 0.8rem;
  color: #333745;
}

.pricing-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pricing-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 16px 16px 18px;
  box-shadow: 0 12px 26px rgba(15, 18, 32, 0.08);
}

.pricing-card h2 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.pricing-rate {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sellar-blue);
}

.pricing-card ul {
  margin: 0 0 10px;
  padding-left: 18px;
  font-size: 0.86rem;
  color: #464b58;
}

.booking-on-pricing {
  padding-top: 16px;
}

/* FAQ */

.faq-section {
  padding: 26px 0 40px;
  max-width: 760px;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  margin-top: 14px;
}

.faq-item h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #4a4f5c;
}

/* Contact */

.contact-section {
  padding: 26px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 26px;
}

.contact-details h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.contact-details p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.contact-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 20px;
  box-shadow: 0 12px 26px rgba(15, 18, 32, 0.08);
}

/* Footer */

.site-footer {
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #050608;
  color: rgba(244, 245, 255, 0.7);
  font-size: 0.8rem;
}

.inner-page .site-footer {
  background: #ffffff;
  border-top-color: var(--border-subtle);
  color: #555a66;
}

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

.footer-secondary {
  opacity: 0.9;
}

/* Mobile */

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

  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: #050608;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.18s ease;
  }

  .inner-page .site-nav {
    background: #ffffff;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px 12px;
    gap: 10px;
  }

  .btn-primary.nav-book {
    width: 100%;
    justify-content: center;
  }

  body.nav-open .site-nav {
    max-height: 280px;
  }

  .hero {
    align-items: flex-start;
    background-position: center bottom;
    min-height: 80vh;
  }

  .hero-content {
    padding-top: 70px;
    max-width: 340px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking {
    padding-bottom: 40px;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .hero-subtitle {
    max-width: 300px;
  }
}


.hidden-field { display:none; }

/* === Sellar inner-page dark / blue styling === */
body.inner-page {
  background: radial-gradient(circle at top left, rgba(0, 98, 255, 0.4), #050608 65%);
  color: #f5f6ff;
}

.inner-page .site-header {
  background: rgba(5, 6, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.inner-page .site-nav a {
  color: #f8f9fc;
}

.inner-page .nav-toggle span {
  background: #ffffff;
}

.page-hero {
  background: radial-gradient(circle at top left, rgba(0, 98, 255, 0.45), rgba(5, 6, 8, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  color: #f7f7ff;
}

.page-hero p {
  color: rgba(244, 245, 255, 0.8);
}

.inner-page .fleet-grid-section,
.inner-page .pricing-toggle-section,
.inner-page .faq-section,
.inner-page .contact-section,
.inner-page .booking-on-pricing {
  background: radial-gradient(circle at top left, rgba(0, 98, 255, 0.25), rgba(5, 6, 8, 1));
}

.inner-page .fleet-card,
.inner-page .pricing-card,
.inner-page .contact-form,
.inner-page .booking-form {
  background: #0b0c11;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.inner-page .fleet-card h2,
.inner-page .pricing-card h2,
.inner-page .contact-details h2,
.inner-page .faq-item h2 {
  color: #f7f7ff;
}

.inner-page .fleet-card p,
.inner-page .fleet-card ul,
.inner-page .pricing-card ul,
.inner-page .pricing-rate,
.inner-page .contact-details p,
.inner-page .contact-note,
.inner-page .faq-item p {
  color: rgba(244, 245, 255, 0.82);
}

.inner-page .pricing-rate {
  color: #4da3ff;
}

.inner-page .form-row label {
  color: rgba(244, 245, 255, 0.8);
}

.inner-page .form-row input,
.inner-page .form-row select,
.inner-page .form-row textarea {
  background: rgba(10, 11, 18, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f7f7ff;
}

.inner-page .site-footer {
  background: #050608;
  border-top-color: rgba(255, 255, 255, 0.05);
  color: rgba(244, 245, 255, 0.7);
}

/* === Fixes: inner-page outline buttons + mobile nav background === */

/* Make fleet "Book this" buttons visible on dark cards */
.inner-page .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}
.inner-page .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Ensure mobile nav on inner pages uses dark background, not white */
@media (max-width: 768px) {
  .inner-page .site-nav {
    background: #050608;
  }
  .inner-page .site-nav a {
    color: #f8f9fc;
  }
}

/* === FAQ accordion + mobile sizing === */
.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 6, 12, 0.92);
  margin-bottom: 10px;
  overflow: hidden;
}

.inner-page .faq-item {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-item-header {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  color: #f7f7ff;
  font-size: 0.98rem;
  text-align: left;
}

.faq-item-header span.faq-question {
  flex: 1;
}

.faq-icon {
  font-size: 1.1rem;
  opacity: 0.8;
}

.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: 0 14px;
}

.faq-item.open .faq-item-body {
  padding-bottom: 10px;
}

.faq-item-body p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: rgba(244, 245, 255, 0.86);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .faq-item-header {
    font-size: 0.9rem;
    padding: 9px 12px;
  }
  .faq-item-body p {
    font-size: 0.85rem;
  }
  .faq-section {
    padding: 22px 0 34px;
  }
}

/* Footer link */
.footer-secondary a.footer-link {
  margin-left: 8px;
  text-decoration: underline;
  color: inherit;
  opacity: 0.85;
}
.footer-secondary a.footer-link:hover {
  opacity: 1;
}
