/* ==========================================================================
   DESIGN SYSTEM & ACCENTS
   ========================================================================== */
:root {
  /* High-end Corporate Black & Red Palette */
  --navy: #000000;                       /* Deep black background */
  --navy-light: rgba(25, 25, 25, 0.65);  /* Charcoal-black cards backdrop */
  --navy-dark: #080808;                  /* Matte black for headers/footers */
  
  --yellow: #e50914;                     /* Premium red accent */
  --yellow-glow: rgba(229, 9, 20, 0.2);  /* Stronger red shadow glow */
  --yellow-hover: #b80710;               /* Darker red for hover states */
  
  --paper: #f8fafc;                      /* Soft off-white text */
  --paper-dim: #94a3b8;                  /* Slate-grey secondary text */
  --border: rgba(255, 255, 255, 0.08);   /* Subtle crisp borders */
  --border-dim: rgba(255, 255, 255, 0.04); /* Sub-borders */
  
  /* Layout tokens */
  --chamfer: 12px;
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  background: var(--navy);
  color: var(--paper);
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #000000 0%, #080202 20%, #000000 40%, #060101 60%, #000000 80%, #030000 100%);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--yellow-glow);
}

/* ==========================================================================
   UI COMPONENTS & UTILITIES
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  background: rgba(240, 237, 230, 0.03);
  color: var(--yellow);
  font-family: 'Chivo Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

.btn-chamfer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Chivo Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  border: none;
  outline: none;
  clip-path: polygon(
    var(--chamfer) 0,
    100% 0,
    100% calc(100% - var(--chamfer)),
    calc(100% - var(--chamfer)) 100%,
    0 100%,
    0 var(--chamfer)
  );
}

.btn-chamfer:active {
  transform: scale(0.98);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy-dark);
}
.btn-yellow:hover {
  background: var(--yellow-hover);
  box-shadow: 0 0 20px var(--yellow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  background: var(--paper-02);
  border-color: var(--paper);
}

.section-divider {
  display: none !important;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--paper);
}

.section-subtitle {
  color: var(--paper-dim);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 0.8rem;
  max-width: 600px;
}

.highlight {
  color: var(--yellow);
}

.mono {
  font-family: 'Chivo Mono', monospace;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1100px;
  width: 90%;
  margin: 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
}

@media (min-width: 769px) {
  .site-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .site-nav-links {
    justify-self: center;
  }
  .nav-phone-wrapper {
    display: block;
    justify-self: end;
  }
  .mobile-only-phone {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav-phone-wrapper {
    display: none !important;
  }
  .mobile-only-phone {
    display: block !important;
    width: 100%;
    margin-top: 1.5rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--paper);
}

.logo-img-src {
  height: 38px;
  width: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--yellow);
}

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

.logo-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.logo-subtitle {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.6rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.3em;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.site-nav-links a {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  opacity: 0.8;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.2rem 0;
  transition: opacity 0.2s, color 0.2s;
}

.site-nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.5px;
  bottom: -2px;
  left: 0;
  background-color: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav-links a:hover {
  opacity: 1;
  color: var(--yellow);
}

.site-nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta-phone {
  padding: 0.65rem 1.25rem;
  --chamfer: 8px;
  color: var(--navy-dark) !important;
  background: var(--yellow) !important;
  opacity: 1 !important;
}

.nav-cta-phone:hover {
  color: var(--navy-dark) !important;
  background: var(--yellow-hover) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 10002;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 8rem 0 6rem 0;
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
}

/* Full-viewport section slide layouts for desktop */
@media (min-width: 769px) {
  .hero, 
  .services-section, 
  .specs-section, 
  .calc-section, 
  .faq-section, 
  .contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
  }

  .hero .container,
  .services-section .container,
  .specs-section .container,
  .calc-section .container,
  .faq-section .container,
  .contact-section .container {
    width: 100%;
  }

  /* Position footer at the bottom of the contact viewport on desktop */
  .contact-section {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 1rem !important;
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    padding: 3rem 0 1rem 0 !important;
  }
  .contact-content {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .contact-content p {
    margin-bottom: 1.5rem !important;
  }
  .contact-section .form-group,
  .contact-section .form-row-2 {
    margin-bottom: 0.8rem !important;
  }
  .contact-section footer {
    margin-top: auto !important;
    margin-bottom: 1rem !important;
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1300px !important;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.hero-image-side {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}

.hero-image-side img {
  width: 140%;
  max-width: 140%;
  height: auto;
  margin-left: -5%;
  filter: drop-shadow(0 15px 50px rgba(229, 9, 20, 0.3));
  animation: float-van 4.5s infinite ease-in-out;
}

@keyframes float-van {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-desc-mobile {
  display: none;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
  margin-bottom: 3rem;
  width: 100%;
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s ease;
}

.hero-feature-item:hover {
  transform: translateX(4px);
}

.hero-feature-item h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.hero-feature-item p {
  font-size: 0.86rem;
  color: var(--paper-dim);
  line-height: 1.45;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  color: var(--yellow);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
  animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0.5; }
}

.hero-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 3.5rem;
  text-align: left;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.25rem 0;
  border-radius: 0;
  transition: transform 0.2s;
}

.hero-checklist li:hover {
  transform: translateX(4px);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow-glow);
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.check-text strong {
  font-size: 0.95rem;
  color: var(--paper);
}

.check-text span {
  font-size: 0.8rem;
  color: var(--paper-dim);
  margin-top: 0.15rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
}

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

.trust-box {
  padding: 2.2rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.trust-icon-wrapper {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 3px;
}

.trust-info h3 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  color: var(--paper);
}

.trust-info p {
  font-size: 0.72rem;
  color: var(--paper-dim);
}

.trust-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services-section {
  padding: 5rem 0;
  background: transparent;
}

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

.section-header .badge {
  margin-bottom: 1rem;
}

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

.carousel-nav {
  display: none;
}

.service-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.2rem 1.6rem;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 179, 0, 0.03) 50%);
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--yellow);
  background: rgba(255, 179, 0, 0.015);
  transform: translateY(-3px);
}

.service-icon-wrapper {
  width: 44px;
  height: 44px;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.service-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--paper);
}

.service-card p {
  color: var(--paper-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--border-dim);
  padding-top: 1.25rem;
  width: 100%;
  align-items: center;
  margin-top: auto;
}

.card-list li {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.72rem;
  color: var(--paper);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.card-list li::before {
  content: "•";
  color: var(--yellow);
  font-weight: bold;
}

/* ==========================================================================
   SPECIFICATIONS SECTION (Vito specifications)
   ========================================================================== */
.specs-section {
  padding: 8rem 0;
  background: transparent;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.specs-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.specs-intro {
  color: var(--paper-dim);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-dim);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
}

.spec-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--paper);
  text-align: right;
}

/* Spec Stats Cards (Right) */
.specs-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.spec-card-stat {
  background: var(--navy-light);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  clip-path: polygon(
    14px 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%,
    0 14px
  );
}

.spec-card-stat:nth-child(even) {
  transform: translateY(1.5rem);
}

.spec-card-stat .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
}

.spec-card-stat .stat-text {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.68rem;
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calc-section {
  padding: 8rem 0;
  background: transparent;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.calc-layout-three {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1400px !important;
  margin: 0 auto;
}

.calc-layout-three.calculated {
  grid-template-columns: 1fr 1fr 1.2fr;
}

.calc-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3.5rem 3rem;
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
}

.calc-card h2 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.calc-desc {
  color: var(--paper-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: inherit;
  font-size: 0.88rem;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--paper);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: inherit;
  font-size: 0.88rem;
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--paper) !important;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input-select option {
  background: #141414 !important;
  color: var(--paper) !important;
}

.form-input-select:focus, .form-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.25rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 0.82rem;
  transition: border-color 0.2s, background-color 0.2s;
}

.radio-label input {
  accent-color: var(--yellow);
}

.radio-label:has(input:checked) {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.08);
}

.input-helper {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Result display block (Right side) */
.result-card {
  background: var(--navy-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--yellow);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
}

.result-header {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-display {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-num {
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--paper);
  line-height: 1;
}

.price-currency {
  font-family: 'Chivo Mono', monospace;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
}

.price-detail {
  font-size: 0.85rem;
  color: var(--paper-dim);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 2rem;
}

.result-divider {
  width: 100%;
  height: 1px;
  background: var(--border-dim);
  margin-bottom: 2rem;
}

.result-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.btn-call-direct {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.75rem;
  color: var(--paper-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-call-direct strong {
  color: var(--yellow);
}

.btn-call-direct:hover {
  color: var(--paper);
}

.w-100 {
  width: 100%;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 8rem 0;
}

.faq-title {
  margin-top: 1rem;
  margin-bottom: 4.5rem;
}

.text-center {
  text-align: center;
}
.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 1rem;
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question-number {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-question-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex: 1;
  color: var(--paper-70);
  transition: color 0.2s;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--paper-35);
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--yellow);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.faq-open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 0 2rem 2.5rem;
  color: var(--paper-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-question:hover .faq-question-text {
  color: var(--paper);
}

/* ==========================================================================
   QUICK CONTACT FORM SECTION
   ========================================================================== */
.contact-section {
  padding: 8rem 0;
  background: transparent;
}

.contact-content {
  max-width: 780px;
  text-align: center;
}

.contact-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.contact-content p {
  color: var(--paper-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.form-wrapper {
  background: var(--navy-light);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3.5rem 3rem;
  text-align: left;
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
}

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

.form-input-area {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: inherit;
  font-size: 0.88rem;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--paper);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-input-area:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.contact-section .form-group {
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  width: fit-content;
  max-width: 90%;
  margin: 0 auto 3rem auto;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.footer-brand {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--paper-dim);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Chivo Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--yellow);
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
  animation: status-blink-yellow 2s infinite ease-in-out;
}

@keyframes status-blink-yellow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Laptop & Tablet Breakpoints */
@media (max-width: 1024px) {
  .hero {
    background: transparent !important;
    padding: 3rem 0 !important;
    position: relative;
    overflow: visible !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-desc-mobile {
    display: block !important;
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    color: var(--paper-dim) !important;
    max-width: 290px !important;
    margin: 1.2rem auto 2.2rem auto !important;
    text-align: center !important;
    font-weight: 400 !important;
  }

  /* GPU optimization for 120Hz rendering on high-end phones */
  .glow-orb {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
    will-change: auto !important;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 0;
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero-features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-image-side {
    display: none !important; /* Hide right-side column, van is now watermark background */
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-divider {
    width: 100%;
    height: 1px;
  }
  
  .trust-box {
    padding: 1.75rem 1rem;
    justify-content: center;
  }

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

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

  .calc-layout, .calc-layout-three, .calc-layout-three.calculated {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .specs-cards-grid {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    display: none !important;
  }

  .site-nav {
    display: none !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-nav-links {
    display: none !important;
  }
}

@keyframes pulse-logo {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.85;
    filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.25)) invert(1) hue-rotate(180deg);
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(229, 9, 20, 0.65)) invert(1) hue-rotate(180deg);
  }
}

@media (max-width: 768px) {
  .mobile-only-phone, .nav-phone-wrapper {
    display: none !important;
  }

  /* Fill sections to viewport on mobile, centering content vertically, allowing natural expansion if needed */
  .services-section,
  .specs-section,
  .calc-section,
  .faq-section,
  .contact-section {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5.5rem 0 !important;
    box-sizing: border-box !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
  }

  /* Full screen cover layout for Hero section only */
  .hero {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem 0 !important;
    box-sizing: border-box !important;
    height: 100vh !important;
    height: 100dvh !important;
    position: relative !important;
    overflow: visible !important;
    background: transparent !important;
  }

  /* Global Container Spacing for Phone */
  .container {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-title {
    font-size: 1.7rem !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
  }

  .section-header p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  /* Hero Section Mobile Enhancements */
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important; /* Managed by .container padding now */
  }
  
  .hero-badge {
    display: none !important;
  }

  .hero h1 {
    font-size: 2.3rem !important;
    line-height: 1.25 !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-desc-mobile {
    display: block !important;
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    color: var(--paper-dim) !important;
    max-width: 310px !important;
    margin: 1.5rem auto 3.5rem auto !important; /* Pushes the buttons down towards the bottom */
    text-align: center !important;
    font-weight: 400 !important;
  }

  .hero-features-grid {
    display: none !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 260px !important;
    gap: 0.7rem !important;
  }

  .hero-actions .btn-chamfer {
    width: 100% !important;
    padding: 0.75rem 1.2rem !important;
    font-size: 0.84rem !important;
  }

  /* Services Spacing on Mobile */
  .services-section {
    overflow: visible !important;
  }
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .service-card {
    width: 100% !important;
    padding: 1.2rem 1.15rem !important;
  }

  /* Specifications on Mobile */
  .specs-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    width: 100% !important;
  }
  .specs-content h2 {
    font-size: 1.5rem !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .specs-intro {
    font-size: 0.85rem !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.4 !important;
  }
  .specs-list {
    gap: 0.4rem !important;
    padding-top: 0.4rem !important;
  }
  .spec-item {
    padding-bottom: 0.4rem !important;
    border-bottom: 1px solid var(--border-dim) !important;
  }
  .spec-label {
    font-size: 0.75rem !important;
  }
  .spec-value {
    font-size: 0.88rem !important;
  }
  .specs-cards-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
    width: 100% !important;
  }
  .spec-card-stat {
    padding: 0.85rem 0.6rem !important;
    clip-path: polygon(
      10px 0,
      100% 0,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      0 100%,
      0 10px
    ) !important;
    border-radius: 0 !important;
  }
  .spec-card-stat:nth-child(even) {
    transform: translateY(0) !important;
  }
  .spec-card-stat .stat-num {
    font-size: 1.2rem !important;
    margin-bottom: 0.2rem !important;
  }
  .spec-card-stat .stat-text {
    font-size: 0.68rem !important;
    letter-spacing: 0.05em !important;
  }

  /* Calculator on Mobile */
  .calc-layout, .calc-layout-three, .calc-layout-three.calculated {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 100% !important;
  }
  .calc-card, .result-card {
    padding: 1rem 0.85rem !important;
  }
  .calc-card h2 {
    font-size: 1.5rem !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .calc-desc {
    font-size: 0.85rem !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.4 !important;
  }
  .calc-form {
    gap: 0.6rem !important;
  }
  .form-group {
    gap: 0.3rem !important;
  }
  .form-group label {
    font-size: 0.78rem !important;
  }
  .form-input-select, .form-input {
    padding: 0.65rem 0.8rem !important;
    font-size: 16px !important;
  }
  .radio-group {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
  .radio-label {
    padding: 0.65rem 0.8rem !important;
    font-size: 0.82rem !important;
  }
  .price-display {
    margin: 0.5rem 0 !important;
  }
  .price-num {
    font-size: 1.85rem !important;
  }
  .price-currency {
    font-size: 0.9rem !important;
  }
  .price-detail {
    font-size: 0.8rem !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.4 !important;
  }
  .result-divider {
    margin-bottom: 0.8rem !important;
  }
  .result-actions {
    gap: 0.6rem !important;
  }
  .result-actions .btn-chamfer {
    padding: 0.75rem !important;
    font-size: 0.82rem !important;
  }
  .btn-call-direct {
    font-size: 0.78rem !important;
  }

  /* FAQ on Mobile */
  .faq-title {
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
  .faq-list {
    max-width: 100% !important;
  }
  .faq-question {
    padding: 1rem 0 !important;
    gap: 0.8rem !important;
  }
  .faq-question-text {
    font-size: 0.92rem !important;
  }
  .faq-chevron svg {
    width: 18px !important;
    height: 18px !important;
  }
  .faq-answer p {
    padding: 0 0 1rem 1.8rem !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  /* Quick Contact Form on Mobile */
  .contact-section {
    padding-top: 1.5rem !important;
    padding-bottom: 0 !important;
    justify-content: space-between !important;
    gap: 1rem !important;
  }
  .contact-content {
    width: 100% !important;
  }
  .contact-content h2 {
    font-size: 1.5rem !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.4rem !important;
  }
  .contact-content p {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
  }
  .form-wrapper {
    padding: 1rem 0.85rem !important;
  }
  .form-row-2 {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.8rem !important;
    margin-bottom: 0.6rem !important;
  }
  .contact-section .form-group {
    margin-bottom: 0.6rem !important;
  }
  .form-input-area {
    padding: 0.65rem 0.8rem !important;
    font-size: 16px !important;
  }
  .form-wrapper button[type="submit"] {
    padding: 0.8rem !important;
    font-size: 0.88rem !important;
  }


  /* Footer on Mobile */
  footer {
    padding: 1.5rem 0 !important;
    width: 100% !important;
    max-width: 100% !important; /* Override desktop max-width: 90% */
    margin: 0 !important;
    margin-top: auto !important; /* Push footer to the absolute bottom of the viewport slide */
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }
  .footer-row {
    flex-direction: column !important;
    gap: 0.75rem !important;
    text-align: center !important;
    align-items: center !important;
  }
  .footer-brand {
    font-size: 0.8rem !important;
  }
  .footer-status {
    justify-content: center !important;
    font-size: 0.8rem !important;
  }

  .container {
    padding: 0 1.5rem !important;
  }

  /* Prevent iOS Safari zooming inside input fields */
  .form-input-select, .form-input, .form-input-area {
    font-size: 16px !important;
  }
}

/* ==========================================================================
   ANIMATIONS & FLOATING ORBS
   ========================================================================== */
.glow-orb {
  position: absolute;
  width: 900px !important;
  height: 900px !important;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.08) 0%, transparent 68%) !important;
  filter: blur(140px) !important;
  opacity: 0.7 !important;
  z-index: 1;
  pointer-events: none;
  /* Disabled animations globally to achieve buttery-smooth 144Hz scroll performance */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.orb-1 {
  top: 5%;
  left: -200px;
}

.orb-2 {
  top: 45%;
  right: -200px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.09) 0%, transparent 70%);
  animation-delay: -7s;
}

@keyframes floating-orb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(60px, 40px) scale(1.15);
  }
}

/* Scroll reveal animation base (only active when JS is running) */
.js-enabled .reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Staggered entry container base (only active when JS is running) */
.js-enabled .reveal-stagger > * {
  opacity: 0;
  transform: translate3d(0, 25px, 0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .reveal-stagger.visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger transition delays for up to 6 children */
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* Page load keyframe animations for the hero section elements */
.hero-content .badge {
  animation: hero-fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-content h1 {
  animation: hero-fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.15s;
}
.hero-content .hero-checklist {
  animation: hero-fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}
.hero-content .hero-actions {
  animation: hero-fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both 0.45s;
}

@keyframes hero-fade-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Removed Loading Screen Preloader */

/* ==========================================================================
   SIDE SCROLL REVEALS & CARD HOVER ANIMATIONS
   ========================================================================== */
.js-enabled .reveal-left {
  opacity: 0;
  transform: translate3d(-40px, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .reveal-left.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-enabled .reveal-right {
  opacity: 0;
  transform: translate3d(40px, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .reveal-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Unified smooth transitions for all cards/checklists */
.service-card,
.spec-card-stat,
.calc-card,
.form-wrapper,
.result-card,
.hero-checklist li {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover,
.spec-card-stat:hover,
.calc-card:hover,
.form-wrapper:hover,
.result-card:hover,
.hero-checklist li:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(255, 255, 255, 0.03) !important;
}

/* Clean up service card hover overlay default color */
.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
}
.service-card::after {
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.03) 50%);
}

/* ==========================================================================
   MAP CALCULATOR INTEGRATION STYLES
   ========================================================================== */

/* Autocomplete suggestions */
.input-wrapper {
  position: relative;
  width: 100%;
}

.clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

.clear-btn:hover {
  color: #fff;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-top: none;
  z-index: 9999;
  max-height: 220px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  display: none;
}

.autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--paper-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.autocomplete-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.autocomplete-item.error-text {
  color: #ef4444;
}

/* Price & breakdown cards */
.price-card-large {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.price-label {
  font-family: 'Chivo Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value-wrapper {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  text-shadow: 0 0 25px rgba(255,255,255,0.2);
}

.price-currency-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--paper-dim);
}

.price-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.details-card-large {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.details-card-large h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-dim);
  padding-bottom: 8px;
}

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

.breakdown-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--paper-dim);
}

.breakdown-list li .value {
  font-weight: 600;
  color: #fff;
}

.breakdown-list li.total-row {
  border-top: 1px dashed var(--border);
  padding-top: 12px;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.breakdown-list li.total-row .value {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  font-size: 1rem;
}

.action-buttons-wrapper {
  margin-top: 20px;
}

.btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
}

.btn-whatsapp:hover {
  background: #20ba59 !important;
  border-color: #20ba59 !important;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3) !important;
}

/* Modals Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-box {
  background: #050505;
  border: 1px solid var(--border);
  padding: 35px 30px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  color: #fff;
  clip-path: polygon(
    20px 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%,
    0 20px
  );
}

.modal-pin-box {
  max-width: 380px;
}

.modal-settings-box {
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
}

.pin-inputs-wrapper {
  margin: 20px 0;
}

.pin-inputs-wrapper input {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 10px;
  outline: none;
}

.pin-inputs-wrapper input:focus {
  border-color: #fff;
}

.modal-actions-wrapper {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

/* Stats Pill and Settings cog in Map Card */
.map-overlay-stats {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 9998;
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.stat-pill {
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Chivo Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.stat-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.stat-pill .dot.active {
  background: #ff5100;
  box-shadow: 0 0 8px #ff5100;
}

.stat-pill .dot.time {
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
}

.btn-settings {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.2s, background 0.2s;
}

.btn-settings:hover {
  color: #fff;
  transform: rotate(45deg);
  border-color: #fff;
  background: rgba(30, 35, 45, 0.95);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Dark Mode Leaflet Map Adjustments */
.leaflet-container {
  background: #000000 !important;
}

.leaflet-tile {
  filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.leaflet-bar {
  border: 1px solid var(--border) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

.leaflet-bar a {
  background-color: rgba(15, 17, 21, 0.9) !important;
  color: #fff !important;
  border-bottom: 1px solid var(--border) !important;
}

.leaflet-bar a:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

/* Custom Map Markers */
.custom-map-marker {
  background: none !important;
  border: none !important;
}

.marker-pin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  transition: all 0.2s ease;
}

.marker-pin.base-pin {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
  font-size: 14px;
}

.marker-pin.start-pin {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.marker-pin.finish-pin {
  background: linear-gradient(135deg, #ff5100 0%, #d93800 100%);
  box-shadow: 0 0 15px rgba(255, 81, 0, 0.5);
}

.marker-pin.return-pin {
  background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

/* Toast styling */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #050505;
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  z-index: 10100;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: #10b981;
}

.toast.error {
  border-color: #ef4444;
}

/* Settings Large Modal */
.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 15px;
}

.settings-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.settings-section label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--paper-dim);
}

.settings-section.full-width {
  grid-column: span 2;
}

.settings-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.settings-actions .actions-right {
  display: flex;
  gap: 12px;
}

/* Custom card alignment and full-screen map shape on desktop */
@media (min-width: 993px) {
  .map-card {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    padding: 0 !important;
    overflow: hidden;
    clip-path: none !important;
    border-radius: 12px;
    border: 1px solid var(--border);
  }

  #map {
    width: 100% !important;
    height: 100% !important;
    min-height: 550px !important;
    border: none !important;
    border-radius: 12px;
    z-index: 1;
  }
}

@media (max-width: 992px) {
  .map-card {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    padding: 1.5rem !important; /* Keep original black padding border on mobile */
  }

  #map {
    width: 100% !important;
    height: 290px !important;
    border-radius: 8px;
    border: 1px solid var(--border) !important;
    z-index: 1;
  }
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}




