/* ==========================================================================
   Hakuna Removals - Modern Luxury Black & White UI Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@600&display=swap');

:root {
  --bg-dark: #000000;
  --bg-card: #0c0c0c;
  --bg-card-hover: #161616;
  --surface: #111111;
  --surface-border: #222222;
  --surface-border-hover: #444444;
  
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --text-dim: #666666;
  
  --accent-white: #ffffff;
  --accent-black: #000000;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 25px rgba(255, 255, 255, 0.15);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--text-white);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Header & Navigation - Impeccable Single-Line Layout
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text-white);
  line-height: 1.1;
  white-space: nowrap;
}

.logo-subtext {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Call Button Desktop/Mobile Toggle */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--text-white);
  color: var(--bg-dark);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--text-white);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.btn-call-desktop {
  display: inline;
  white-space: nowrap;
}

.btn-call-mobile {
  display: none;
  white-space: nowrap;
}

.btn-call:hover {
  background-color: var(--bg-dark);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.lang-toggle {
  display: none !important; /* Temporarily hidden per user request */
  background: transparent;
  border: 1px solid var(--surface-border);
  color: var(--text-white);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover {
  border-color: var(--text-white);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section - Clean Sequential Stack Layout
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 105px;
  padding-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #050505;
}

.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;
  filter: grayscale(100%) contrast(115%) brightness(65%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 2;
}

.hero-container-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 1rem 1rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(1rem, 2.1vw, 1.55rem);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #dddddd;
  max-width: 720px;
  margin: 0 auto 2.25rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--text-white);
  color: var(--bg-dark);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border: 2px solid var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-white);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--text-white);
  background-color: var(--text-white);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Hero Quick Stats Strip (Placed BELOW Title & Buttons) */
.hero-stats-strip {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  background-color: var(--bg-dark);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--text-white);
  margin: 1rem auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--text-white);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--surface-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

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

.service-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--text-white);
  color: var(--bg-dark);
  transform: scale(1.08);
}

.service-icon-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0.5;
}

.service-title {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Fleet & Team Showcase
   ========================================================================== */
.fleet-section {
  background-color: #070707;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 5rem 0;
}

.fleet-box {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fleet-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--surface-border);
}

.fleet-img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) contrast(110%);
  transition: var(--transition);
}

.fleet-image-wrapper:hover .fleet-img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.03);
}

.capacity-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-white);
  backdrop-filter: blur(6px);
}

.fleet-info h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.fleet-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-white);
  min-width: 45px;
}

.feature-icon-wrapper {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Trust Seals Bar */
.trust-badges-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--surface-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

/* ==========================================================================
   Comprehensive Quote Form Section
   ========================================================================== */
.calc-section {
  background-color: var(--bg-dark);
}

.calc-wrapper-single {
  max-width: 940px;
  margin: 0 auto;
}

.calc-box {
  background-color: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

/* Dedicated Quote Page Banner & Form Sections */
.quote-page-banner {
  padding-top: 130px;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
}

.quote-page-title {
  font-size: 2.2rem;
  margin-top: 0.5rem;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--surface-border);
}

.form-section-icon {
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.form-section-divider {
  height: 1px;
  background: var(--surface-border);
  margin: 2rem 0;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Featured Quote CTA Card on Main Page */
.quote-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.quote-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.btn-quote-featured {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.quote-cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--surface-border);
}

.cta-feature-pill {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-form-group {
  margin-bottom: 1.35rem;
}

.calc-label {
  display: flex;
  align-items: flex-end;
  min-height: 1.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.calc-input, .calc-select {
  width: 100%;
  height: 46px;
  box-sizing: border-box;
  padding: 0 0.9rem;
  background-color: #141414;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: var(--transition);
}

.calc-input:focus, .calc-select:focus {
  outline: none;
  border-color: var(--text-white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.checkbox-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  user-select: none;
}

.checkbox-pill input {
  accent-color: #ffffff;
  cursor: pointer;
}

.checkbox-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
}

.checkbox-pill:has(input:checked) {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.checkbox-pill:has(input:checked) input {
  accent-color: #000000;
}

.calc-result-card {
  background: #141414;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  margin-top: 1.25rem;
}

/* ==========================================================================
   Footer Section (No QR Code)
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  border-top: 2px solid var(--text-white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.footer-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text-white);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.footer-contact-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-location-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-middle-badges {
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-badge-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Modal Popup Component
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

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

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-card);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-white);
}

/* ==========================================================================
   Mobile Responsive & Mobile-First Interface Optimization
   ========================================================================== */
@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .fleet-grid, .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calc-wrapper-single {
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  /* Header Mobile Optimization */
  .header-container {
    height: 64px;
    padding: 0 1rem;
    gap: 0.4rem;
  }

  .logo-img {
    height: 36px;
  }

  .logo-brand {
    font-size: 1rem;
  }

  .logo-subtext {
    font-size: 0.5rem;
    letter-spacing: 0.16em;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .btn-call-desktop {
    display: none;
  }

  .btn-call-mobile {
    display: inline;
    font-size: 0.68rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .btn-call {
    padding: 0.38rem 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .lang-toggle {
    padding: 0.35rem 0.55rem;
    font-size: 0.68rem;
  }

  /* Navigation Mobile Drawer */
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.6rem;
    border-bottom: 1px solid var(--surface-border);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    display: flex;
  }

  .nav-link {
    display: block;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    text-align: center;
    box-sizing: border-box;
  }

  .nav-link::after {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
  }

  /* Hero Mobile Section - Clean Sequential Stack */
  .hero {
    min-height: auto;
    padding-top: 85px;
    padding-bottom: 3rem;
    overflow: hidden;
  }

  .hero-container-inner {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 2rem;
    padding: 0;
    text-align: center;
  }

  .hero-badge {
    font-size: clamp(0.58rem, 3vw, 0.7rem);
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    max-width: 100%;
    white-space: normal;
    box-sizing: border-box;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1rem, 4.8vw, 1.4rem);
    line-height: 1.35;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-line {
    display: block;
    white-space: normal !important;
    word-break: normal;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    text-align: center;
    justify-content: center;
  }

  /* Quick Stats Strip Mobile (Placed BELOW Hero Buttons) */
  .hero-stats-strip {
    background: rgba(10, 10, 10, 0.7);
    padding: 1rem;
    border-radius: var(--radius-md);
  }

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

  .stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--surface-border) !important;
    border-radius: var(--radius-md);
    padding: 0.75rem 0.5rem;
  }

  .stat-number {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  /* Services Mobile Section */
  .services-section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

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

  .service-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  /* Fleet & Team Mobile */
  .fleet-section {
    padding: 3.5rem 0;
  }

  .fleet-box {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .fleet-info h3 {
    font-size: 1.35rem;
  }

  .feature-number {
    font-size: 2rem;
    min-width: 35px;
  }

  .feature-row {
    gap: 0.9rem;
  }

  .trust-badges-bar {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .trust-item {
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-pill);
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
  }

  /* Quote Form Mobile */
  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .quote-page-banner {
    padding-top: 95px;
    padding-bottom: 1.5rem;
  }

  .quote-page-title {
    font-size: 1.5rem;
  }

  .quote-cta-box {
    padding: 2.5rem 1.25rem;
  }

  .calc-section {
    padding: 3.5rem 0;
  }

  .calc-box {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .calc-input, .calc-select {
    font-size: 16px; /* Prevents auto-zoom on iOS safari */
    padding: 0.8rem 0.9rem;
    border-radius: var(--radius-md);
  }

  .checkbox-options-grid {
    flex-direction: column;
    gap: 0.5rem;
  }

  .checkbox-pill {
    width: 100%;
    padding: 0.6rem 0.9rem;
    font-size: 0.82rem;
    border-radius: var(--radius-md);
  }

  /* Footer Mobile */
  .footer {
    padding-top: 3rem;
  }

  .footer-middle-badges {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 0.75rem;
  }

  .footer-badge-pill {
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-pill);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  /* Modal Popup Mobile */
  .modal-backdrop {
    padding: 1rem;
  }

  .modal-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

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

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

/* Temporarily hide language toggle option across all pages */
.lang-toggle,
#langToggleBtn {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
