/* ==========================================================================
   AURA EXECUTIVE TRANSPORTATION — MASTER LUXURY DESIGN SYSTEM
   Precision Fleet. Unmatched Prestige.
   ========================================================================== */

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

:root {
  /* Color Palette - Dark Luxury & Metallic Champagne Gold */
  --bg-primary: #07080a;
  --bg-secondary: #0d0f14;
  --bg-tertiary: #131720;
  --bg-card: rgba(16, 19, 27, 0.75);
  --bg-card-hover: rgba(22, 27, 38, 0.9);
  --bg-glass: rgba(7, 8, 10, 0.85);

  --gold-primary: #c8a45c;
  --gold-light: #e6cb8b;
  --gold-dark: #9a7836;
  --gold-gradient: linear-gradient(135deg, #dfbe7a 0%, #c8a45c 45%, #9a7836 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(200, 164, 92, 0.15) 0%, rgba(154, 120, 54, 0.05) 100%);
  --gold-border: rgba(200, 164, 92, 0.28);
  --gold-border-subtle: rgba(200, 164, 92, 0.15);
  --gold-glow: 0 0 25px rgba(200, 164, 92, 0.2);

  --text-main: #f5f6f8;
  --text-muted: #9ba3af;
  --text-dim: #64748b;
  --text-gold: #dfbe7a;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.09);

  /* Typography */
  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-max: 1280px;
  --container-wide: 1440px;
  --header-height: 86px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-luxury: 0 16px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  overflow-wrap: break-word;
}

/* Subtle luxury grain background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(rgba(200, 164, 92, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: 9999;
  opacity: 0.7;
}

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

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

ul, ol {
  list-style: none;
}

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

/* --- UTILITY & TYPOGRAPHY --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-gradient);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header-center .section-label {
  gap: 12px;
}

.section-header-center .section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-gradient);
}

.section-header-center .section-label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-gradient);
}

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

/* Luxury Divider */
.luxury-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 164, 92, 0.35) 50%, transparent 100%);
  margin: 60px 0;
}

/* --- BUTTONS & CTAS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #07080a;
  border-color: var(--gold-light);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 92, 0.45);
  background: linear-gradient(135deg, #ecd599 0%, #dfbe7a 50%, #a4823e 100%);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(200, 164, 92, 0.08);
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #07080a;
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

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

/* --- TOP ANNOUNCEMENT / CONTACT BAR (Disabled - Single Header Layout) --- */
.top-bar {
  display: none !important;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a1a1aa;
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  color: var(--gold-primary);
}

.top-bar-item a:hover {
  color: var(--gold-light);
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  background: rgba(200, 164, 92, 0.12);
  border: 1px solid rgba(200, 164, 92, 0.3);
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  border-radius: 2px;
  font-weight: 600;
}

.top-bar-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
}

/* --- NAVIGATION HEADER --- */
.site-header {
  position: static;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(7, 8, 10, 0.95);
  border-bottom-color: rgba(200, 164, 92, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: var(--transition-fast);
}

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

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

.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cbd5e1;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-card);
  color: #ffffff;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #090b10;
  border-left: 1px solid var(--gold-border-subtle);
  padding: 32px 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
}

.drawer-close svg {
  width: 24px;
  height: 24px;
}

.drawer-menu {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-menu .nav-link {
  font-size: 1.05rem;
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
}

.drawer-footer {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background-color: #060709;
}

.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 35%;
  transform: scale(1.03);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(6, 7, 9, 0.75) 0%,
    rgba(6, 7, 9, 0.5) 40%,
    rgba(6, 7, 9, 0.88) 85%,
    #07080a 100%
  );
  z-index: 2;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(13, 15, 20, 0.7);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-statement {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.7;
  color: #e2e8f0;
  max-width: 680px;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-fleet-preview-strip {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-fleet-item {
  display: flex;
  flex-direction: column;
}

.hero-fleet-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.hero-fleet-models {
  font-size: 0.88rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* --- TRUST & INTRODUCTION SECTION --- */
.section-trust {
  padding: 110px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-grid.trust-grid-reverse {
  grid-template-columns: 1fr 1.15fr;
}

.trust-visual {
  position: relative;
}

.trust-visual-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gold-border-subtle);
  box-shadow: var(--shadow-luxury);
}

.trust-visual-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.trust-visual-wrapper:hover img {
  transform: scale(1.03);
}

.trust-floating-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: rgba(13, 15, 20, 0.95);
  border: 1px solid var(--gold-border);
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
}

.trust-floating-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07080a;
}

.trust-floating-badge .badge-icon svg {
  width: 22px;
  height: 22px;
}

.trust-floating-badge .badge-text h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.trust-floating-badge .badge-text p {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  font-size: 0.82rem;
  color: #e2e8f0;
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
}

/* --- KEY STATISTICS SECTION --- */
.section-stats {
  padding: 70px 0;
  background: linear-gradient(180deg, #090b10 0%, #0d1017 50%, #090b10 100%);
  border-top: 1px solid var(--gold-border-subtle);
  border-bottom: 1px solid var(--gold-border-subtle);
  position: relative;
}

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

.stat-card {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200, 164, 92, 0.3), transparent);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cbd5e1;
  font-weight: 600;
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 6px;
}

/* --- VISION & MISSION SECTION --- */
.section-vision-mission {
  padding: 100px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 48px 40px;
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
}

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

.vm-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.vm-icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid var(--gold-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.vm-icon svg {
  width: 22px;
  height: 22px;
}

.vm-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #ffffff;
}

.vm-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #cbd5e1;
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-serif);
}

/* --- FOUNDER MESSAGE SECTION --- */
.section-founder {
  padding: 110px 0;
  background: linear-gradient(180deg, #07080a 0%, #0d1017 100%);
  position: relative;
}

.founder-box {
  background: rgba(14, 18, 25, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 60px 70px;
  position: relative;
  box-shadow: var(--shadow-luxury);
  backdrop-filter: blur(12px);
}

.founder-quote-mark {
  position: absolute;
  top: 30px;
  right: 50px;
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 0.8;
  color: rgba(200, 164, 92, 0.12);
  user-select: none;
}

.founder-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.75;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.founder-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(200, 164, 92, 0.25);
  padding-top: 24px;
}

.founder-name-role h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 4px;
}

.founder-name-role p {
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.founder-pillars {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.founder-pillar-tag {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(200, 164, 92, 0.08);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 2px;
  color: var(--gold-light);
}

/* --- CORE SERVICES SECTION --- */
.section-services {
  padding: 110px 0;
  background-color: var(--bg-primary);
  position: relative;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.service-img-wrap {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 19, 27, 0.95) 100%);
}

.service-letter-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 38px;
  height: 38px;
  background: rgba(7, 8, 10, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.service-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  flex: 1;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.service-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.service-feature-item strong {
  color: #ffffff;
  font-weight: 600;
}

.service-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-badge {
  font-size: 0.74rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--gold-light);
  gap: 10px;
}

/* --- THE AURA STANDARD (6 PILLARS) --- */
.section-standards {
  padding: 110px 0;
  background: linear-gradient(180deg, #07080a 0%, #0d1017 50%, #07080a 100%);
  position: relative;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.standard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 36px 30px;
  position: relative;
  transition: var(--transition-smooth);
}

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

.standard-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.standard-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background: rgba(200, 164, 92, 0.08);
  border: 1px solid var(--gold-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.standard-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.standard-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 12px;
}

.standard-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- WHY PARTNER WITH AURA SECTION --- */
.section-why {
  padding: 110px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.why-top-triplet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.why-triplet-card {
  background: linear-gradient(180deg, rgba(20, 24, 34, 0.7) 0%, rgba(13, 16, 23, 0.9) 100%);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-smooth);
}

.why-triplet-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px);
}

.why-triplet-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.why-triplet-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.why-triplet-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(16, 20, 28, 0.5);
  border: 1px solid var(--border-subtle);
  padding: 22px 24px;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.why-benefit-item:hover {
  border-color: rgba(200, 164, 92, 0.3);
  background: rgba(22, 27, 38, 0.7);
}

.why-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 164, 92, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-benefit-icon svg {
  width: 14px;
  height: 14px;
}

.why-benefit-text h4 {
  font-size: 0.98rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-benefit-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- FLEET SHOWCASE SECTION --- */
.section-fleet {
  padding: 110px 0;
  background: linear-gradient(180deg, #07080a 0%, #0d1017 50%, #07080a 100%);
  position: relative;
}

/* Fleet Filter Tabs */
.fleet-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.fleet-tab-btn {
  background: rgba(16, 20, 28, 0.8);
  border: 1px solid var(--border-card);
  color: #94a3b8;
  padding: 12px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.fleet-tab-btn:hover {
  border-color: var(--gold-border-subtle);
  color: #ffffff;
}

.fleet-tab-btn.active {
  background: var(--gold-gradient);
  color: #07080a;
  border-color: var(--gold-light);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(200, 164, 92, 0.3);
}

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

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

.vehicle-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.vehicle-img-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: #050608;
}

.vehicle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.vehicle-tier-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(7, 8, 10, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.vehicle-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-header {
  margin-bottom: 12px;
}

.vehicle-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.vehicle-class-tag {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.vehicle-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.vehicle-specs {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  margin-bottom: 20px;
  font-size: 0.76rem;
  color: #cbd5e1;
}

.vehicle-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vehicle-spec-item svg {
  width: 13px;
  height: 13px;
  color: var(--gold-primary);
}

.vehicle-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- FLEET ECONOMICS & CLIENT BENEFITS --- */
.section-economics {
  padding: 100px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.economics-box {
  background: linear-gradient(135deg, rgba(20, 25, 36, 0.8) 0%, rgba(13, 16, 23, 0.95) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 56px 60px;
  position: relative;
  box-shadow: var(--shadow-luxury);
}

.economics-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(200, 164, 92, 0.2);
  padding-bottom: 24px;
}

.economics-discount-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(200, 164, 92, 0.12);
  border: 1px solid var(--gold-border);
  padding: 14px 24px;
  border-radius: 4px;
}

.economics-discount-badge .discount-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.economics-discount-badge .discount-text {
  font-size: 0.82rem;
  line-height: 1.35;
  color: #e2e8f0;
}

.economics-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.economics-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.economics-point svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.economics-point p {
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.65;
}

/* --- LEADERSHIP & GOVERNANCE SECTION --- */
.section-leadership {
  padding: 110px 0;
  background: linear-gradient(180deg, #07080a 0%, #0d1017 100%);
  position: relative;
}

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

.leader-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 40px;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.leader-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.leader-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.2) 0%, rgba(13, 16, 23, 0.8) 100%);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}

.leader-meta h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.leader-meta p {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.leader-quote {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.75;
  color: #cbd5e1;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--gold-border);
  flex: 1;
}

/* --- CORPORATE POSITIONING SECTION --- */
.section-positioning {
  padding: 100px 0;
  background-color: var(--bg-primary);
  position: relative;
  text-align: center;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.positioning-card {
  background: rgba(16, 20, 28, 0.6);
  border: 1px solid var(--border-card);
  padding: 24px 16px;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.positioning-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  background: rgba(22, 27, 38, 0.8);
}

.positioning-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.positioning-card h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}

/* --- CONSULTATION / CONTACT SECTION --- */
.section-contact {
  padding: 110px 0;
  background: linear-gradient(180deg, #07080a 0%, #0d1017 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 44px 36px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.contact-info-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid var(--gold-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 18px;
  height: 18px;
}

.contact-detail-text {
  min-width: 0;
  flex: 1;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-detail-text h5 {
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 4px;
  word-break: break-word;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.98rem;
  color: #ffffff;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-detail-text a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Consultation Form */
.consultation-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 4px;
  padding: 48px 44px;
  box-shadow: var(--shadow-luxury);
  position: relative;
}

.consultation-form-wrap:hover {
  border-color: var(--gold-border);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cbd5e1;
}

.form-control {
  background: rgba(7, 8, 11, 0.7);
  border: 1px solid var(--border-card);
  border-radius: 2px;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: #ffffff;
  transition: var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(14, 18, 25, 0.95);
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.15);
}

select.form-control option {
  background-color: #0d1017;
  color: #ffffff;
}

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

.form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 0.88rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #34d399;
}

.form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* --- DRAMATIC FINAL CTA SECTION --- */
.section-final-cta {
  position: relative;
  padding: 130px 0;
  text-align: center;
  background-color: #060709;
  overflow: hidden;
}

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

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35);
}

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

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

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.final-cta-desc {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: #cbd5e1;
  font-weight: 300;
  margin-bottom: 40px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- LUXURY FOOTER --- */
.site-footer {
  background-color: #040507;
  border-top: 1px solid rgba(200, 164, 92, 0.2);
  padding: 80px 0 30px;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 100%;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--gold-gradient);
}

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

.footer-link {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #94a3b8;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-contact-item a,
.footer-contact-item span {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-bottom-statement {
  color: var(--gold-primary);
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-credits {
  color: #94a3b8;
  font-size: 0.78rem;
}

.footer-credits a {
  color: var(--gold-light);
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-credits a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --- INNER PAGE HERO HEADER --- */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #090b10 0%, #0d1017 100%);
  border-bottom: 1px solid var(--gold-border-subtle);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #ffffff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

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

.breadcrumbs span {
  color: #64748b;
}

/* --- MODAL DIALOG --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 7, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #0f1219;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1080px) {
  .trust-grid,
  .trust-grid.trust-grid-reverse {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .trust-visual-wrapper img {
    height: 360px;
  }

  .trust-floating-badge {
    position: static;
    margin-top: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .positioning-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 868px) {
  :root {
    --header-height: auto;
  }

  .site-header {
    height: auto;
    min-height: 72px;
    padding: 8px 0;
  }

  .brand-logo img {
    height: 60px !important;
    max-width: 200px;
  }

  .nav-menu {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }

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

  .service-img-wrap {
    height: 200px;
  }

  .trust-grid,
  .trust-grid.trust-grid-reverse {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .trust-visual-wrapper img {
    height: 280px;
  }

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

  .why-top-triplet {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-triplet-card {
    padding: 32px 24px;
  }

  .why-benefits-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .economics-points-grid {
    grid-template-columns: 1fr;
  }

  .economics-box {
    padding: 36px 24px;
  }

  .founder-box {
    padding: 36px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .contact-info-card {
    padding: 32px 24px;
  }

  .consultation-form-wrap {
    padding: 32px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .form-control {
    font-size: 16px; /* Prevents auto-zoom on mobile safari/chrome */
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-fleet-preview-strip {
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
    padding-top: 20px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .positioning-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-tabs,
  .fleet-filter-tabs {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }

  .fleet-tab-btn {
    padding: 9px 16px;
    font-size: 0.78rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    min-height: 64px;
    padding: 6px 0;
  }

  .brand-logo img {
    height: 50px !important;
    max-width: 160px;
  }

  .top-bar {
    font-size: 0.72rem;
    padding: 6px 0;
  }

  .top-bar-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 18px 12px;
  }

  .stat-card::after {
    display: none !important;
  }

  .standards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .standard-card {
    padding: 24px 18px;
  }

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

  .vehicle-img-wrap {
    height: 200px;
  }

  .vehicle-body {
    padding: 20px 16px;
  }

  .vehicle-specs {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .trust-visual-wrapper img {
    height: 220px;
  }

  .trust-floating-badge {
    padding: 14px 16px;
  }

  .trust-floating-badge .badge-icon {
    width: 36px;
    height: 36px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand img {
    height: 60px !important;
    max-width: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
    margin-bottom: 18px;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    letter-spacing: 0.5px;
    line-height: 1.15;
  }

  .hero-subheading {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .hero-statement {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-pills {
    flex-direction: column;
    gap: 10px;
  }

  .trust-pill {
    width: 100%;
    font-size: 0.78rem;
  }

  .page-hero {
    padding: 50px 0 36px;
  }

  .page-hero-title {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  }

  .modal-container {
    width: calc(100% - 24px);
    max-width: 100%;
    padding: 24px 16px;
    margin: 12px auto;
  }

  .contact-info-card {
    padding: 24px 16px;
  }

  .contact-info-title {
    font-size: 1.28rem;
    line-height: 1.25;
  }

  .contact-detail-items {
    gap: 16px;
  }

  .contact-detail-item {
    gap: 12px;
  }

  .contact-icon-box {
    width: 36px;
    height: 36px;
  }

  .contact-detail-text h5 {
    font-size: 0.72rem;
  }

  .contact-detail-text p,
  .contact-detail-text a {
    font-size: 0.88rem;
  }

  .consultation-form-wrap {
    padding: 24px 16px;
  }

  .vm-card {
    padding: 28px 18px;
  }

  .vm-card::before {
    left: 18px;
  }

  .why-benefit-item {
    padding: 16px 14px;
    gap: 12px;
  }

  .founder-quote-mark {
    display: none;
  }

  .founder-box {
    padding: 28px 16px;
  }

  .founder-pillars {
    gap: 8px;
  }

  .founder-pillar-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .economics-box {
    padding: 28px 16px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 420px) {
  .brand-logo img {
    height: 44px !important;
    max-width: 140px;
  }

  .fleet-tabs,
  .fleet-filter-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 6px;
  }

  .fleet-tab-btn {
    width: 100%;
    text-align: center;
    padding: 8px 6px;
    font-size: 0.7rem;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.82rem;
  }
}
