/* ==========================================================================
   Empire Commercial Wash - Core Design System & Stylesheet
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  --bg-primary: #050a18;
  --bg-secondary: #0b1226;
  --bg-tertiary: #121b36;
  --bg-darker: #02050c;
  
  --gold-light: #f9d976;
  --gold-primary: #e9b646;
  --gold-secondary: #b88718;
  --gold-dark: #8a600d;
  --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-secondary) 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 40%, var(--gold-primary) 100%);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --glass-bg: rgba(11, 18, 38, 0.65);
  --glass-border: rgba(233, 182, 70, 0.18);
  --glass-border-hover: rgba(233, 182, 70, 0.4);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --gold-glow: 0 0 20px rgba(233, 182, 70, 0.25);
  --gold-glow-strong: 0 0 30px rgba(233, 182, 70, 0.55);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* --- Global Layout Containers --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-secondary);
}

/* --- Utilities & Reusable Components --- */
.gold-text {
  color: var(--gold-primary);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg), var(--gold-glow);
}

/* --- Section Dividers --- */
.section-header {
  margin-bottom: 4rem;
}

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

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-divider-left {
  width: 60px;
  height: 4px;
  background: var(--gold-gradient);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
  text-shadow: 0 0.5px 1px rgba(255,255,255,0.2);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--gold-gradient-hover);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--gold-glow);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn-gold-outline:hover {
  background: var(--gold-gradient);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--gold-glow);
  border-color: transparent;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-text {
  background: transparent;
  color: var(--gold-primary);
  box-shadow: none;
}

.btn-text:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* --- Floating Mobile Call --- */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.btn-phone {
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), var(--gold-glow-strong);
  gap: 8px;
}

/* --- Header / Navigation --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background: rgba(5, 10, 24, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

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

.nav-link:hover {
  color: var(--text-main);
}

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

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}

.phone-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
}

.phone-link:hover .phone-icon-circle {
  transform: scale(1.1);
  box-shadow: var(--gold-glow-strong);
}

.phone-link:hover {
  color: var(--gold-primary);
}

/* Burger Toggle */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  background-color: var(--bg-darker);
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(5, 10, 24, 0.85) 50%, rgba(2, 5, 12, 0.95) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  max-width: 700px;
}

.crown-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(233, 182, 70, 0.1);
  border: 1px solid rgba(233, 182, 70, 0.2);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-crown-icon {
  height: 14px;
  width: auto;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
}

.badge-icon {
  color: var(--gold-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

/* Hero Glass Area Card */
.hero-area-card {
  padding: 2.25rem;
  max-width: 360px;
  justify-self: end;
  text-align: center;
}

.area-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero-area-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.states-list {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.area-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
}

.area-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 1.25rem 0;
}

.area-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.area-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(233, 182, 70, 0.1);
  border: 1px solid rgba(233, 182, 70, 0.25);
  color: var(--gold-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.info-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.tristate-svg {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}



/* --- Services Section --- */
.services-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

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

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg), var(--gold-glow);
}

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

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-card-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(0deg, var(--bg-tertiary) 0%, rgba(18, 27, 54, 0) 100%);
}

.service-icon {
  position: absolute;
  top: -24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gold-glow);
  z-index: 2;
  transition: var(--transition-smooth);
}

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

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--gold-glow-strong);
}

.service-info {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link span {
  transition: transform 0.2s ease;
}

.service-link:hover span {
  transform: translateX(4px);
}

/* --- Gallery / Before-After Section --- */
.gallery-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.slider-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--glass-border);
  user-select: none;
  -webkit-user-select: none;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-img {
  z-index: 10;
}

.after-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  overflow: hidden;
  clip-path: inset(0 0 0 50%); /* Start at 50% slider split */
}

.after-img {
  width: 100%;
  height: 100%;
  max-width: none;
}

.slider-label {
  position: absolute;
  top: 15px;
  background: rgba(5, 10, 24, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 30;
  border: 1px solid rgba(255,255,255,0.05);
}

.label-before {
  left: 15px;
}

.label-after {
  right: 15px;
}

/* Drag Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* Sync with initial clip-path of 50% */
  width: 4px;
  background: var(--gold-gradient);
  z-index: 40;
  cursor: ew-resize;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.handle-line {
  flex-grow: 1;
  width: 2px;
  background: var(--gold-primary);
}

.handle-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.before-after-container:hover .handle-button {
  transform: scale(1.08);
}

/* --- Fleet Washing Spotlight Section --- */
.fleets-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.fleets-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.fleets-image-column {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-border-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid var(--gold-secondary);
  border-radius: 12px;
  z-index: 3;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.fleets-image-column:hover .image-border-decoration {
  border-color: var(--gold-primary);
  box-shadow: inset 0 0 20px rgba(233, 182, 70, 0.3), var(--gold-glow);
}

.fleets-main-img {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.fleets-image-column:hover .fleets-main-img {
  transform: scale(1.02);
}

.fleets-content-column .tagline {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.5rem;
}

.fleets-content-column h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.fleets-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.fleet-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.fleet-features-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(233, 182, 70, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 3px;
}

.fleet-features-list li strong {
  display: block;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-bottom: 2px;
}

.fleet-features-list li p {
  font-size: 0.9rem;
}

.fleets-cta-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* --- Why Choose Us Section --- */
.why-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.02);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.why-item:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border);
  box-shadow: var(--shadow-lg), var(--gold-glow);
}

.why-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(233, 182, 70, 0.08);
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(233, 182, 70, 0.15);
  transition: var(--transition-smooth);
}

.why-icon-circle svg {
  width: 32px;
  height: 32px;
}

.why-item:hover .why-icon-circle {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: var(--gold-glow);
  transform: scale(1.05);
}

.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.why-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Estimate & Contact Section --- */
.contact-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-column .tagline {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info-column h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.contact-intro {
  font-size: 1.05rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.direct-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.contact-method-card:hover {
  transform: translateX(4px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-sm), var(--gold-glow);
}

.contact-method-card.no-hover:hover {
  transform: none;
  border-color: var(--glass-border);
  box-shadow: none;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(233, 182, 70, 0.08);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(233, 182, 70, 0.12);
}

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

.method-details span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.method-details h3 {
  font-size: 1.25rem;
  color: var(--text-main);
}

.contact-method-card:hover .method-icon {
  background: var(--gold-gradient);
  color: var(--text-dark);
}

.quote-guarantee {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(233, 182, 70, 0.04);
  border: 1px dashed rgba(233, 182, 70, 0.2);
}

.shield-check {
  font-size: 1.5rem;
}

.quote-guarantee h4 {
  font-size: 1.05rem;
  color: var(--gold-primary);
  margin-bottom: 2px;
}

.quote-guarantee p {
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form-column {
  padding: 0;
  overflow: hidden;
}

.iframe-clipper {
  width: 100%;
  overflow: hidden;
}

.contact-form-column iframe {
  display: block;
  border-radius: 12px 12px 0 0;
}

.contact-form-column h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(5, 10, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(233, 182, 70, 0.15);
  background: rgba(5, 10, 24, 0.8);
}

.btn-submit {
  gap: 10px;
  margin-top: 1rem;
}

.btn-submit svg {
  transition: transform 0.2s ease;
}

.btn-submit:hover svg {
  transform: translate(3px, -1px) scale(1.05);
}

.form-status {
  margin-top: 1.25rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  display: none;
}

.form-status.success {
  display: block;
  color: #10b981;
}

.form-status.error {
  display: block;
  color: #ef4444;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-toggle-icon {
  font-size: 1.35rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Footer --- */
.main-footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  padding-top: 5rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.col-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.footer-logo img {
  height: 44px;
}

.brand-pitch {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}


.footer-col h3 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links li {
  margin-bottom: 0.85rem;
}

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

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 3px;
}

.footer-contact-list div span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-contact-list div a {
  font-weight: 500;
}

.footer-contact-list div a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 2rem 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

.footer-developer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hero-area-card {
    justify-self: center;
    width: 100%;
    max-width: 450px;
  }
  .fleets-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .fleets-image-column {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1080px) {
  /* Mobile Menu navigation styling */
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 998;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .burger-menu.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .burger-menu.open span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .phone-number-text {
    display: none; /* Icon only on mobile header */
  }
  
  .phone-link {
    margin-right: 0.5rem;
  }

  .nav-btn-cta {
    width: 100%;
  }

  .floating-cta {
    display: block;
  }

  .hero-section {
    padding-top: 120px;
  }

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

  .hero-badges {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-column {
    padding: 0;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-area-card {
    padding: 1.5rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --- Legal Pages Styling --- */
.legal-page-content {
  padding: 12rem 0 8rem;
  background-color: var(--bg-primary);
  min-height: 70vh;
}

.legal-page-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.legal-page-content .last-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.legal-section ul li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.legal-section ul li::before {
  content: "•";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

