:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #161616;
  --bg-light: #f5f5f7;
  --bg-light-alt: #e8e9ed;
  --border: rgba(29, 95, 219, 0.25);
  --border-bright: rgba(29, 95, 219, 0.6);
  --border-dark: rgba(0, 0, 0, 0.1);
  --accent: #1d5fdb;
  --accent-bright: #4a82e8;
  --accent-deep: #0d3a8c;
  --text-on-dark: #ffffff;
  --text-muted-dark: #a8a8a8;
  --text-dim-dark: #666666;
  --text-on-light: #0a0a0a;
  --text-muted-light: #4a4a4a;
  --success: #22c55e;
  --font-heading: 'Saira Condensed', sans-serif;
  --font-display: 'Saira', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Global Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Header  */
body {
  background: var(--bg);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.top-bar {
  background: #fff;
  color: var(--bg-card);
  font-size: 12px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.top-bar strong {
  color: var(--accent);
  font-weight: 700;
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 2px solid var(--accent);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--text-on-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 8px rgba(29, 95, 219, 0.2));
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 12px rgba(29, 95, 219, 0.5));
}

.logo .logo-blue {
  color: var(--accent);
}

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

.nav-links a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: var(--font-heading) !important;
  font-style: italic;
  font-weight: 800;
  font-size: 13px !important;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--accent-bright);
  color: #fff !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-on-dark);
  transition: all 0.3s;
  border-radius: 2px;
}

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

  .mobile-toggle {
    display: flex;
  }
}

/* Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  border-left: 2px solid var(--accent);
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.sidebar-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-links a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  transition: color 0.2s, transform 0.2s;
  display: block;
}

.sidebar-links a:hover {
  color: var(--accent);
  transform: translateX(10px);
}

.sidebar-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 18px;
  text-align: center;
  border-radius: 4px;
  font-size: 18px !important;
  margin-top: 10px;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* Breadcrumb */
.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 12px;
  color: var(--text-dim-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--text-muted-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}


/* Buttons */
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 18px 32px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.15s, background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-on-dark);
  padding: 18px 32px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--text-on-dark);
  transition: background 0.15s, color 0.15s;
}

.btn-secondary:hover {
  background: var(--text-on-dark);
  color: var(--text-on-light);
}


/* Header & Navigation */
.sticky-call {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 16px 22px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(29, 95, 219, 0.4), 0 0 0 2px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sticky-call:hover {
  transform: translateY(-2px);
  background: var(--accent-bright);
}


/* Footer */
footer {
  background: #000;
  border-top: 4px solid var(--accent);
  padding: 70px 24px 30px;
  color: var(--text-muted-dark);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-style: italic;
  font-weight: 800;
}

.footer-col a {
  display: block;
  color: var(--text-muted-dark);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-phone a {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent);
  margin-top: 14px;
  font-style: italic;
  font-weight: 900;
}

.footer-bottom {
  max-width: 1280px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  color: var(--text-dim-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr;
  }
}

/* ==========================================================================
   Shared Page Sections & Typographic Layouts
   ========================================================================== */
section.dark {
  background: var(--bg);
  color: var(--text-on-dark);
  padding: 90px 24px;
}

section.light {
  background: var(--bg-light);
  color: var(--text-on-light);
  padding: 90px 24px;
}

section .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

section.dark .section-eyebrow {
  color: var(--accent-bright);
}

h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ==========================================================================
   Shared Final CTA Section
   ========================================================================== */
.final-cta {
  background: var(--accent);
  color: #fff;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 19px;
  margin-bottom: 36px;
  opacity: 0.95;
}

.booking-cta-primary {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 30px 60px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 40px;
  transition: all 0.4s;
  border: 4px solid #fff;
}

.booking-cta-primary:hover {
  transform: scale(1.05) translateY(-5px);
  background: var(--bg);
  color: #fff;
}

.btn-cta-dark {
  background: #000;
  color: #fff;
  padding: 22px 44px;
  margin-top: 20px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s;
}

.btn-cta-dark:hover {
  transform: translateY(-3px);
  background: var(--accent-deep);
}

@media (max-width: 900px) {
  .booking-cta-primary {
    display: inline-block;
    font-size: 18px;
    padding: 20px 20px;
  }
}

/* FAQ */
.faq-list {
  margin: 40px auto 0;
  max-width: 900px;
}

details {
  border-bottom: 1px solid var(--border-dark);
}

summary {
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-on-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  text-align: left;
}

summary::after {
  content: '+';
  font-size: 28px;
  color: var(--accent-deep);
  transition: transform 0.3s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details>div {
  padding: 0 0 24px;
  color: var(--text-muted-light);
  font-size: 15px;
  text-align: left;
}