/* ==========================================================================
   LUXURY CHAUFFEUR & LIMOUSINE DESIGN SYSTEM
   Brand Aesthetic: Ultra-Modern, Minimal, Cinematic, High-End Luxury
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Syne:wght@500;600;700;800&family=Cinzel:wght@500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #080808;
  --bg-secondary: #121212;
  --bg-card: #171717;
  --bg-card-hover: #1c1c1c;
  --bg-glass: rgba(14, 14, 14, 0.75);
  --bg-glass-heavy: rgba(8, 8, 8, 0.92);
  
  /* White & Light Theme Tokens */
  --bg-white: #FFFFFF;
  --bg-light-alt: #F6F6F8;
  --bg-card-light: #FFFFFF;
  --text-dark-primary: #0A0A0A;
  --text-dark-secondary: #555555;
  --text-dark-muted: #888888;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-light-gold: rgba(198, 161, 91, 0.5);
  --shadow-light-card: 0 16px 36px rgba(0, 0, 0, 0.06);

  --text-primary: #FFFFFF;
  --text-secondary: #A7A7A7;
  --text-muted: #6E6E6E;
  
  --accent-gold: #C6A15B;
  --accent-gold-light: #DFBF7A;
  --accent-gold-dark: #9A7736;
  --accent-gold-glow: rgba(198, 161, 91, 0.18);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(198, 161, 91, 0.35);
  --border-glass: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad-y: 120px;
  --section-pad-x: 5%;
  --container-max: 1360px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(198, 161, 91, 0.22);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Selection & Scrollbar */
::selection {
  background: var(--accent-gold);
  color: #000000;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-primary);
}

.section-charcoal {
  background-color: var(--bg-secondary);
}

.section-white {
  background-color: var(--bg-white);
  color: var(--text-dark-primary);
}

.section-light-alt {
  background-color: var(--bg-light-alt);
  color: var(--text-dark-primary);
}

/* Light Section Typography & Overrides */
.section-white h1, .section-white h2, .section-white h3, .section-white h4,
.section-light-alt h1, .section-light-alt h2, .section-light-alt h3, .section-light-alt h4 {
  color: var(--text-dark-primary);
}

.section-white p,
.section-light-alt p {
  color: var(--text-dark-secondary);
}

.section-white .eyebrow,
.section-light-alt .eyebrow {
  color: #9A7736;
}

.section-white .eyebrow::before,
.section-white .eyebrow-center::after,
.section-light-alt .eyebrow::before,
.section-light-alt .eyebrow-center::after {
  background-color: #9A7736;
}

.section-white .service-num,
.section-light-alt .service-num {
  color: #9A7736;
}

.section-white .btn-outline-gold,
.section-light-alt .btn-outline-gold {
  color: #9A7736;
  border-color: rgba(154, 119, 54, 0.4);
}

.section-white .btn-outline-gold:hover,
.section-light-alt .btn-outline-gold:hover {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

.section-white .btn-outline,
.section-light-alt .btn-outline {
  color: var(--text-dark-primary);
  border-color: rgba(0, 0, 0, 0.2);
}

.section-white .btn-outline:hover,
.section-light-alt .btn-outline:hover {
  border-color: #9A7736;
  color: #9A7736;
  background: rgba(198, 161, 91, 0.08);
}

.section-white .btn-outline-dark,
.section-light-alt .btn-outline-dark {
  background: transparent;
  color: #0A0A0A;
  border: 1px solid #0A0A0A;
}

.section-white .btn-outline-dark:hover,
.section-light-alt .btn-outline-dark:hover {
  background: #0A0A0A;
  color: #FFFFFF;
}

.section-white .btn-dark,
.section-light-alt .btn-dark {
  background: #0A0A0A;
  color: #FFFFFF;
  border: 1px solid #0A0A0A;
}

.section-white .btn-dark:hover,
.section-light-alt .btn-dark:hover {
  background: #222222;
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Light Section Cards */
.section-white .step-card,
.section-light-alt .step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light-card);
}

.section-white .step-card:hover,
.section-light-alt .step-card:hover {
  border-color: var(--border-light-gold);
  box-shadow: 0 20px 40px rgba(198, 161, 91, 0.12);
}

.section-white .step-num-huge,
.section-light-alt .step-num-huge {
  color: rgba(0, 0, 0, 0.04);
}

.section-white .step-card:hover .step-num-huge,
.section-light-alt .step-card:hover .step-num-huge {
  color: rgba(198, 161, 91, 0.25);
}

.section-white .feature-box,
.section-light-alt .feature-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light-card);
}

.section-white .feature-box:hover,
.section-light-alt .feature-box:hover {
  border-color: var(--border-light-gold);
  background-color: #FAFAFA;
}

.section-white .feature-icon-wrapper,
.section-light-alt .feature-icon-wrapper {
  color: #9A7736;
  border-bottom: 1px solid #9A7736;
}

.section-white .intro-badge,
.section-light-alt .intro-badge {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-white .intro-badge-num,
.section-light-alt .intro-badge-num {
  color: #9A7736;
}

.section-white .intro-badge-label,
.section-light-alt .intro-badge-label {
  color: var(--text-dark-secondary);
}

.section-white .intro-perk-item,
.section-light-alt .intro-perk-item {
  color: var(--text-dark-primary);
}

.section-white .intro-perk-item svg,
.section-light-alt .intro-perk-item svg {
  color: #9A7736;
}

.section-white .testimonial-card,
.section-light-alt .testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light-card);
}

.section-white .testimonial-quote,
.section-light-alt .testimonial-quote {
  color: var(--text-dark-primary);
}

.section-white .testimonial-author,
.section-light-alt .testimonial-author {
  color: #9A7736;
}

.section-white .testimonial-role,
.section-light-alt .testimonial-role {
  color: var(--text-dark-muted);
}

.section-white .test-dot,
.section-light-alt .test-dot {
  background: #D0D0D0;
}

.section-white .test-dot.active,
.section-light-alt .test-dot.active {
  background: #9A7736;
}

.section-white .faq-item,
.section-light-alt .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section-white .faq-question,
.section-light-alt .faq-question {
  color: var(--text-dark-primary);
}

.section-white .faq-item:hover .faq-question,
.section-white .faq-item.active .faq-question,
.section-light-alt .faq-item:hover .faq-question,
.section-light-alt .faq-item.active .faq-question {
  color: #9A7736;
}

.section-white .faq-toggle-icon,
.section-light-alt .faq-toggle-icon {
  border-color: rgba(0, 0, 0, 0.15);
  color: #9A7736;
}

.section-white .faq-item.active .faq-toggle-icon,
.section-light-alt .faq-item.active .faq-toggle-icon {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

.section-white .faq-answer,
.section-light-alt .faq-answer {
  color: var(--text-dark-secondary);
}

.section-white .contact-info-card,
.section-white .contact-form-card,
.section-light-alt .contact-info-card,
.section-light-alt .contact-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light-card);
}

.section-white .contact-item-title,
.section-light-alt .contact-item-title {
  color: var(--text-dark-muted);
}

.section-white .contact-item-val,
.section-light-alt .contact-item-val {
  color: var(--text-dark-primary);
}

.section-white .contact-icon,
.section-light-alt .contact-icon {
  background: rgba(198, 161, 91, 0.1);
  border-color: rgba(198, 161, 91, 0.4);
  color: #9A7736;
}

.section-white .form-label,
.section-light-alt .form-label {
  color: var(--text-dark-secondary);
}

.section-white .form-input,
.section-white .form-select,
.section-white .form-textarea,
.section-light-alt .form-input,
.section-light-alt .form-select,
.section-light-alt .form-textarea {
  background: #F8F9FA;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-dark-primary);
}

.section-white .form-input:focus,
.section-white .form-select:focus,
.section-white .form-textarea:focus,
.section-light-alt .form-input:focus,
.section-light-alt .form-select:focus,
.section-light-alt .form-textarea:focus {
  background: #FFFFFF;
  border-color: #9A7736;
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
}

.text-gold {
  color: var(--accent-gold);
}

.text-white {
  color: var(--text-primary);
}

.text-muted {
  color: var(--text-muted);
}

/* Section Header Structure */
.section-header {
  margin-bottom: 56px;
}

.section-header.text-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--accent-gold);
}

.eyebrow-center::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--accent-gold);
}

.section-subtitle {
  margin-top: 18px;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 650px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #000000;
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(198, 161, 91, 0.25);
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  box-shadow: 0 8px 30px rgba(198, 161, 91, 0.45);
  transform: translateY(-2px);
  color: #000000;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(198, 161, 91, 0.05);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--border-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 0.95rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   GLOBAL HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  padding: 8px 0;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 84px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  transition: all var(--transition-smooth);
}

.site-header.scrolled .brand-logo-img {
  height: 68px;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.footer-brand .brand-logo-img {
  height: 105px;
  max-width: 280px;
  margin-bottom: 10px;
}

.brand-logo .emblem {
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(45deg);
  transition: transform var(--transition-smooth);
}

.brand-logo .emblem span {
  transform: rotate(-45deg);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.brand-logo:hover .emblem {
  transform: rotate(135deg);
  border-color: var(--accent-gold-light);
}

.brand-logo:hover .emblem span {
  transform: rotate(-135deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.mobile-menu-toggle:hover {
  border-color: var(--accent-gold);
}

.hamburger-icon {
  width: 22px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  transition: all var(--transition-smooth);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 30px 40px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-gold);
}

.mobile-drawer-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.mobile-contact-info {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.7) 0%,
    rgba(8, 8, 8, 0.45) 40%,
    rgba(8, 8, 8, 0.9) 85%,
    var(--bg-primary) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.hero-headline {
  margin-bottom: 24px;
}

.hero-headline span {
  display: block;
}

.hero-headline .highlight-gold {
  color: var(--accent-gold);
}

.hero-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  max-width: 640px;
  margin-bottom: 40px;
  color: #c9c9c9;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  animation: scrollWheel 2s infinite ease-in-out;
}

/* ==========================================================================
   TRUST / QUICK INFORMATION STRIP
   ========================================================================== */
.trust-strip {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px 0;
  position: relative;
  z-index: 5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-subtle), transparent);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 2px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transition: all var(--transition-fast);
}

.trust-item:hover .trust-icon-box {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.trust-item-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.trust-item-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ==========================================================================
   EDITORIAL INTRODUCTION SECTION
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
}

.intro-main-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  filter: brightness(0.95);
  transition: filter var(--transition-smooth);
}

.intro-main-img:hover {
  filter: brightness(1.05);
}

.intro-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 24px 32px;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
}

.intro-badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.intro-badge-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 6px;
}

.intro-content p {
  margin-bottom: 24px;
}

.intro-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px 0 40px;
}

.intro-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.intro-perk-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES GRID & CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-fleet-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-vehicle-render {
  max-width: 115%;
  height: auto;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 40px rgba(198, 161, 91, 0.2));
  animation: floatElement 6s ease-in-out infinite alternate;
  transform-origin: center;
}

.hero-fleet-badge {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-card);
  margin-top: -20px;
  position: relative;
  z-index: 4;
}

.hero-fleet-badge-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
}

.hero-fleet-badge-sub {
  font-size: 0.75rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Service Card Vehicle Presentation */
.service-card-vehicle-box {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: radial-gradient(circle at center, rgba(198, 161, 91, 0.12) 0%, rgba(23, 23, 23, 0) 70%);
}

.service-card-vehicle-img {
  max-width: 90%;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-card-vehicle-img {
  transform: scale(1.08) translateY(-4px);
}

.service-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: 36px 30px;
  transition: all var(--transition-smooth);
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
  transition: all var(--transition-slow);
}

.service-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(23, 23, 23, 0.4) 0%,
    rgba(23, 23, 23, 0.8) 50%,
    rgba(23, 23, 23, 0.98) 100%
  );
  z-index: 2;
  transition: background var(--transition-smooth);
}

.service-card-content {
  position: relative;
  z-index: 3;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.service-title {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.service-link-btn svg {
  transition: transform var(--transition-fast);
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
  opacity: 0.65;
}

.service-card:hover .service-title {
  color: var(--accent-gold);
}

.service-card:hover .service-link-btn {
  color: var(--accent-gold);
}

.service-card:hover .service-link-btn svg {
  transform: translateX(6px);
}

/* ==========================================================================
   FEATURED FLEET SECTION & VEHICLE CARDS
   ========================================================================== */
.fleet-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.fleet-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.fleet-tab-btn:hover,
.fleet-tab-btn.active {
  background: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
  font-weight: 700;
}

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

.vehicle-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.vehicle-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: radial-gradient(circle at center, #242424 0%, #121212 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.section-white .vehicle-image-wrapper {
  background: radial-gradient(circle at center, #F0F0F2 0%, #E2E2E6 100%);
}

.vehicle-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-slow);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.06);
}

.vehicle-badge-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border-radius: 2px;
}

.vehicle-badge-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: #080808;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(198, 161, 91, 0.4);
  z-index: 2;
}

.vehicle-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.35rem;
  margin-top: 4px;
  margin-bottom: 12px;
}

.vehicle-price-tag .rate-unit {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-family: var(--font-body);
}

.section-white .vehicle-price-tag {
  color: #9A7736;
}

.section-white .vehicle-price-tag .rate-unit {
  color: var(--text-dark-secondary);
}

.vehicle-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-name {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.vehicle-model-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ==========================================================================
   VEHICLE DETAIL SHOWCASE PAGE STYLES
   ========================================================================== */
.vehicle-showcase-studio {
  background: radial-gradient(circle at center, #FFFFFF 0%, #F4F4F7 100%);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
  box-shadow: var(--shadow-light-card);
}

.vehicle-showcase-studio .vehicle-showcase-render {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
  transition: transform var(--transition-slow);
}

.vehicle-showcase-studio:hover .vehicle-showcase-render {
  transform: scale(1.04) translateY(-4px);
}

.vehicle-detail-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #0A0A0A;
  color: var(--accent-gold);
  border: 1px solid rgba(198, 161, 91, 0.4);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}

.vehicle-detail-capacity-badge {
  position: absolute;
  bottom: -20px;
  right: 24px;
  background: #FFFFFF;
  border: 1px solid var(--border-light-gold);
  padding: 16px 28px;
  border-radius: 2px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 20px;
}

.capacity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A0A0A;
}

.capacity-item svg {
  color: var(--accent-gold-dark);
}

.vehicle-specs-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.spec-data-item {
  display: flex;
  flex-direction: column;
}

.spec-data-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-muted);
  margin-bottom: 4px;
}

.spec-data-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark-primary);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.spec-item svg {
  color: var(--accent-gold);
}

.vehicle-amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.amenity-chip {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  border-radius: 2px;
}

.vehicle-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.vehicle-actions .btn {
  flex: 1;
}

/* ==========================================================================
   WHITE THEME FLEET SECTION STYLES
   ========================================================================== */
.section-white .fleet-tab-btn {
  background: #F4F4F6;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark-secondary);
}

.section-white .fleet-tab-btn:hover,
.section-white .fleet-tab-btn.active {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

.section-white .vehicle-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light-card);
}

.section-white .vehicle-card:hover {
  border-color: var(--border-light-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-white .vehicle-image-wrapper {
  background: radial-gradient(circle at center, #F6F6F9 0%, #ECECEF 100%);
}

.section-white .vehicle-badge-category {
  background: rgba(10, 10, 10, 0.88);
  color: var(--accent-gold);
  border: 1px solid rgba(198, 161, 91, 0.35);
}

.section-white .vehicle-name {
  color: var(--text-dark-primary);
}

.section-white .vehicle-model-desc {
  color: var(--text-dark-secondary);
}

.section-white .vehicle-specs-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section-white .spec-item {
  color: var(--text-dark-primary);
}

.section-white .amenity-chip {
  background-color: #F4F4F6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-dark-secondary);
}

.section-white .vehicle-actions .btn-outline {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--text-dark-primary);
}

.section-white .vehicle-actions .btn-outline:hover {
  background: #0A0A0A;
  color: #FFFFFF;
  border-color: #0A0A0A;
}

/* ==========================================================================
   HOW IT WORKS TIMELINE (3-STEP PROCESS)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 48px 36px;
  border-radius: 2px;
  position: relative;
  transition: all var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.step-num-huge {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 24px;
  right: 28px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.step-card:hover .step-num-huge {
  color: rgba(198, 161, 91, 0.2);
}

.step-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   WHY CHOOSE US / FEATURES SECTION
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 40px 32px;
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.feature-box:hover {
  border-color: var(--border-gold);
  background-color: var(--bg-card-hover);
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   FULL-WIDTH CINEMATIC CTA
   ========================================================================== */
.cinematic-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

.cinematic-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.35);
}

.cinematic-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(8, 8, 8, 0.4) 0%, rgba(8, 8, 8, 0.95) 100%);
  z-index: 2;
}

.cinematic-cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.cinematic-cta-content h2 {
  margin-bottom: 20px;
}

.cinematic-cta-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #dedede;
}

/* ==========================================================================
   TESTIMONIALS (EDITORIAL / CAROUSEL)
   ========================================================================== */
.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 60px 48px;
  border-radius: 2px;
  text-align: center;
  position: relative;
}

.testimonial-stars {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333333;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.test-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  transition: border-color var(--transition-fast);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: none;
  transition: color var(--transition-fast);
}

.faq-item:hover .faq-question,
.faq-item.active .faq-question {
  color: var(--accent-gold);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--accent-gold);
  color: #000000;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.active .faq-body {
  max-height: 400px;
  padding-top: 16px;
}

.faq-answer {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   SERVICE AREAS NETWORK VISUALIZER
   ========================================================================== */
.network-map-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.network-svg-container {
  width: 100%;
  height: 400px;
  position: relative;
}

.network-svg-container svg {
  width: 100%;
  height: 100%;
}

.area-hubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.area-hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 24px 20px;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.area-hub-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.area-hub-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.area-hub-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.area-hub-detail {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   CONTACT FORM & INFO SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 48px 40px;
  border-radius: 2px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 2px;
  background: rgba(198, 161, 91, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.contact-item-title {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-item-val {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 48px 40px;
  border-radius: 2px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.site-footer {
  background-color: #040404;
  border-top: 1px solid var(--border-subtle);
  padding: 90px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 70px;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-top: 18px;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 2px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   MOBILE STICKY QUICK-BOOK BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  padding: 12px 20px;
  z-index: 990;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.8);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-sticky-inner .btn {
  flex: 1;
}

/* ==========================================================================
   PAGE HERO FOR INNER PAGES
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background-color: var(--bg-secondary);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.7) 0%, var(--bg-secondary) 100%);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text-primary);
  text-wrap: balance;
}

.breadcrumbs {
  display: none !important;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

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

.breadcrumbs span.current {
  color: var(--accent-gold);
}

/* ==========================================================================
   MODAL / POPUP DIALOG FOR INQUIRIES
   ========================================================================== */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.custom-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.custom-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
  transform: scale(0.92);
  transition: transform var(--transition-smooth);
}

.custom-modal-overlay.open .custom-modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .area-hubs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad-y: 80px;
  }
  
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-headline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-fleet-visual {
    margin-top: 20px;
  }

  .nav-links,
  .nav-actions .btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-item:nth-child(2)::after {
    display: none;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .intro-badge {
    right: 20px;
    bottom: -20px;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-item::after {
    display: none !important;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .area-hubs-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-modal-box {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (ICON ONLY)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 998;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.65);
  background: #20BA56;
  color: #FFFFFF !important;
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
}

@media (max-width: 600px) {
  .floating-whatsapp-btn {
    bottom: 80px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
  
  .floating-whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* ==========================================================================
   MODERN MAP SECTION
   ========================================================================== */
.map-section {
  position: relative;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.modern-map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  background-color: #1a1a1a;
}

.modern-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.05) brightness(0.92);
  transition: filter var(--transition-smooth);
}

.modern-map-overlay-card {
  position: absolute;
  top: 40px;
  left: 5%;
  max-width: 400px;
  width: calc(100% - 40px);
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  z-index: 10;
}

.map-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #25D366;
  margin-bottom: 12px;
}

.map-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

@media (max-width: 768px) {
  .modern-map-wrapper {
    height: 400px;
  }
  .modern-map-overlay-card {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}
