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

:root {
  --bg-midnight: #0B0F14;
  --bg-midnight-deep: #06080a;
  --accent-blue: #2DA8FF;
  --text-silver: #C9CED6;
  --text-chrome: #F5F7FA;
  --bg-graphite: #1A1F26;
  --bg-graphite-trans: rgba(26, 31, 38, 0.8);
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(26, 31, 38, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.12);
  
  --shadow-blue: 0 0 20px rgba(45, 168, 255, 0.3);
  --shadow-blue-intense: 0 0 40px rgba(45, 168, 255, 0.6);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-midnight);
  color: var(--text-silver);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-chrome);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 8rem 0; /* Increased spacing for premium feel */
  position: relative;
}

/* Glassmorphism Utility */
.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-premium);
  border-radius: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1778c4 100%);
  color: #fff;
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(45, 168, 255, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4ab5ff 0%, var(--accent-blue) 100%);
  box-shadow: var(--shadow-blue-intense);
  transform: translateY(-3px);
  color: #fff;
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  color: var(--text-chrome);
  border: 1px solid var(--glass-highlight);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}

/* Glowing text */
.text-glow {
  color: var(--accent-blue);
  text-shadow: 0 0 15px rgba(45, 168, 255, 0.6);
}

.text-gradient {
  background: linear-gradient(to right, #fff, var(--text-silver));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-fast);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.navbar .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-chrome);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo span .highlight {
  color: var(--accent-blue);
}

.nav-logo-img {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
  background-color: #000;
  border-radius: 50%; /* Clip any square gray backgrounds to a circle */
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  font-weight: 600;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-phone:hover {
  text-shadow: var(--shadow-blue);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-chrome);
  font-size: 1.5rem;
}

/* Media Queries for Nav */
@media (max-width: 992px) {
  .nav-links, .nav-contact {
    display: none;
  }
  
  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-logo-img {
    height: 70px; /* Increased from 45px */
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url('hero_v2_background_1772914663459.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) contrast(1.1);
  transform: scale(1.05); /* Slight scale for scroll effect later if needed */
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle, rgba(45, 168, 255, 0.15) 0%, transparent 80%);
  animation: pulseLight 4s infinite alternate;
}

@keyframes pulseLight {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 10, 0.4) 0%,
    rgba(6, 8, 10, 0.6) 60%,
    var(--bg-midnight) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
  padding-left: 5%;
}

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-reviews .stars {
  font-size: 1.2rem;
  margin: 0;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-silver);
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-chrome);
  font-weight: 500;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-silver);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--text-silver);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 2px;
  animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

@media (max-width: 992px) {
  .scroll-cue {
    display: none !important; /* Hide to prevent overlap with trust badges */
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 110px 0 60px; /* Reduced from 160px to tighten the gap */
  }
  
  .hero-trust {
    margin-bottom: 2rem;
  }
}

/* --- March Promotion V2 --- */
.promo-banner-v2 {
  padding: 5rem 0 1rem;
  position: relative;
  background: var(--bg-midnight);
}

.promo-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(45, 168, 255, 0.08) 0%, rgba(26, 31, 38, 0.9) 100%);
  border: 1px solid rgba(45, 168, 255, 0.3);
  box-shadow: 0 0 40px rgba(45, 168, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  animation: shine 6s infinite;
}

.promo-content {
  flex: 1;
}

.promo-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(45, 168, 255, 0.15);
  color: var(--accent-blue);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(45, 168, 255, 0.4);
}

.promo-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(45, 168, 255, 0.3);
}

.promo-subtitle {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.promo-subtitle strong {
  color: var(--accent-blue);
}

.promo-desc {
  color: var(--text-silver);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.promo-btn {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(45, 168, 255, 0.4);
  display: inline-block;
}

.promo-urgency {
  font-size: 0.9rem;
  color: #ff4d4d;
  font-weight: 600;
}

.promo-images {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.promo-img {
  width: 45%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
}

.promo-img:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--accent-blue);
}

.promo-img-1 {
  transform: translateY(20px);
}

.promo-img-2 {
  transform: translateY(-20px);
}

.promo-img-1:hover {
  transform: translateY(15px) scale(1.03);
}

.promo-img-2:hover {
  transform: translateY(-25px) scale(1.03);
}

.promo-plus {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: var(--bg-graphite);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(45, 168, 255, 0.5);
  z-index: 2;
}

/* --- Services Section --- */
.services-section {
  background-color: var(--bg-midnight);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  position: relative;
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-blue);
  box-shadow: var(--shadow-blue);
  border-radius: 2px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-blue);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-blue);
}

.gold-badge {
  background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  color: #000;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(45, 168, 255, 0.3);
  box-shadow: var(--shadow-blue);
}

.service-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.service-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg-graphite) 0%, transparent 50%);
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--accent-blue);
  font-weight: 700;
}

.service-content p {
  font-size: 1rem;
  color: var(--text-silver);
  flex-grow: 1;
  margin-bottom: 2rem;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-actions .btn {
  width: 100%;
  text-align: center;
}

/* --- Our Work Gallery --- */
.gallery-section {
  background-color: var(--bg-graphite);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--text-silver);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 20, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-overlay svg {
  color: white;
  width: 32px;
  height: 32px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- Before & After Section --- */
.before-after-section {
  background: linear-gradient(to bottom, var(--bg-midnight) 0%, var(--bg-graphite) 100%);
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-img-after {
  width: 50%; /* Initial state */
  border-right: 2px solid var(--accent-blue);
  box-shadow: 5px 0 15px rgba(0,0,0,0.5);
  overflow: hidden;
}

/* Ensure the image inside stays full width of the container, not the clipped width */
.slider-img-after img {
  width: 900px; /* Max width of container to align perfectly */
  max-width: none;
}
@media (max-width: 900px) {
  .slider-img-after img {
    width: 90vw; /* Keep aligned with container logic on mobile */
  }
}

.label-before, .label-after {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(11, 15, 20, 0.7);
  backdrop-filter: blur(5px);
  color: white;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  z-index: 5;
}

.label-before {
  right: 20px;
}

.label-after {
  left: 20px;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.slider-handle-circle {
  width: 40px;
  height: 40px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bg-midnight);
  box-shadow: 0 0 15px rgba(45, 168, 255, 0.8);
}

.slider-handle-circle svg {
  width: 16px;
  margin: -2px;
}

/* --- Why Choose Us Section --- */
.why-us-section {
  background-color: var(--bg-midnight-deep);
  background-image: radial-gradient(rgba(45, 168, 255, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
}

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

.feature-card {
  padding: 2.5rem;
  background: var(--glass-bg);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  text-align: center;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
  border-color: rgba(45, 168, 255, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(45, 168, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 15px rgba(45, 168, 255, 0.1);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* --- Stats Section --- */
.stats-section {
  background: linear-gradient(to right, var(--bg-midnight-deep) 0%, var(--bg-graphite) 100%);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 15px);
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-chrome) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(45, 168, 255, 0.2);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Reviews Section --- */
.reviews-section {
  background-color: var(--bg-midnight);
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.review-card {
  padding: 2.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--accent-blue);
  display: flex;
  flex-direction: column;
}

.stars {
  color: #ffb400;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-chrome);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0B0F14 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: white;
  font-size: 1.2rem;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-info .name {
  font-weight: 700;
  color: var(--text-chrome);
}

.reviewer-info .service-tag {
  font-size: 0.85rem;
  color: var(--accent-blue);
}

/* --- Process Section --- */
.process-section {
  background-color: var(--bg-graphite);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
}

.process-step {
  padding: 2rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: dashed 2px var(--accent-blue);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .process-step:not(:last-child)::after { display: none; }
}

.step-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
}

.step-num::after {
  content: attr(data-text); /* Fallback */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: var(--accent-blue);
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* --- Service Area --- */
.service-area-flex {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.area-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* --- Instant Quote Tool V2 --- */
.quote-section {
  background-color: var(--bg-graphite);
  padding-bottom: 8rem;
}

.quote-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.quote-steps-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.quote-step {
  background: var(--bg-midnight);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.quote-step.hidden {
  display: none;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(45, 168, 255, 0.15);
  color: var(--accent-blue);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  border: 1px solid rgba(45, 168, 255, 0.4);
}

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

.selectable-card {
  background: var(--bg-graphite);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.selectable-card:hover {
  border-color: rgba(45, 168, 255, 0.5);
  transform: translateY(-2px);
}

.selectable-card.active {
  border-color: var(--accent-blue);
  background: rgba(45, 168, 255, 0.05);
  box-shadow: 0 0 15px rgba(45, 168, 255, 0.2);
}

.selectable-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.selectable-card p {
  font-size: 0.85rem;
  color: var(--text-silver);
  margin-bottom: 0;
}

.addon-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-graphite);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.addon-item:hover {
  border-color: rgba(45, 168, 255, 0.5);
}

.addon-item.active {
  border-color: var(--accent-blue);
  background: rgba(45, 168, 255, 0.05);
}

.addon-info {
  display: flex;
  flex-direction: column;
}

.addon-name {
  font-weight: 600;
  color: var(--text-chrome);
}

.addon-note {
  font-size: 0.8rem;
  color: #ff9800;
  margin-top: 0.2rem;
}

.addon-price {
  font-weight: 700;
  color: var(--accent-blue);
}

.quote-summary-panel {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.summary-box {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-box h3 {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.95rem;
}

.summary-row.hidden {
  display: none;
}

.summary-bold {
  font-weight: 600;
  color: var(--text-chrome);
  text-align: right;
  max-width: 60%;
}

.summary-addon-list {
  list-style: none;
  text-align: right;
  margin: 0;
  padding: 0;
  max-width: 65%;
}

.summary-addon-list li {
  color: var(--text-chrome);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.empty-addon {
  color: var(--text-silver) !important;
  font-weight: normal !important;
}

.summary-total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.summary-total h4 {
  font-size: 1rem;
  color: var(--text-silver);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-display {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.summary-disclaimer {
  font-size: 0.75rem;
  color: var(--text-silver);
  text-align: center;
  margin-top: 1rem;
  opacity: 0.8;
  line-height: 1.4;
}

.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 992px) {
  .quote-layout {
    flex-direction: column;
  }
  
  .quote-summary-panel {
    width: 100%;
    position: static;
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  background-color: var(--bg-midnight);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  height: 100%;
  background: radial-gradient(circle, rgba(45, 168, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-graphite);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(45, 168, 255, 0.1) 0%, rgba(255, 215, 0, 0.15) 100%);
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  transition: var(--transition-smooth);
}
.veteran-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}
.veteran-badge span {
  font-weight: 800;
  color: #FFD700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.veteran-badge svg {
  stroke: #FFD700;
  width: 28px;
  height: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-chrome);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-silver);
}

.footer-col ul li a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Mobile Nav Styles */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 15, 20, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-overlay a {
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.mobile-nav-overlay a:hover {
  color: var(--accent-blue);
}

/* --- Floating Elements (Chatbot & Sticky CTA) --- */
.chatbot-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1778c4 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(45, 168, 255, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-blue-intense);
}

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  max-width: calc(100vw - 40px);
  background: var(--bg-graphite);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-premium);
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.chatbot-window.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--bg-midnight-deep) 0%, var(--bg-midnight) 100%);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbot-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.close-chat {
  background: none;
  border: none;
  color: var(--text-silver);
  font-size: 1.5rem;
  cursor: pointer;
}

.chatbot-messages {
  padding: 1.5rem;
  min-height: 250px;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.msg {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  max-width: 85%;
}

.msg.bot {
  background: rgba(255, 255, 255, 0.05);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.user {
  background: rgba(45, 168, 255, 0.2);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-actions {
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(11, 15, 20, 0.5);
}

.chat-chip {
  background: transparent;
  border: 1px solid var(--accent-blue);
  color: var(--text-chrome);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chat-chip:hover {
  background: var(--accent-blue);
  color: #fff;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-midnight);
  display: flex;
  z-index: 998;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .promo-card {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    text-align: center;
  }
  
  .promo-content h2 {
    font-size: 2.2rem;
  }
  
  .promo-images {
    width: 100%;
    margin-top: 1rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .promo-img {
    width: 90%;
    height: 220px;
    transform: none !important;
  }

  .promo-plus {
    display: none;
  }

  .mobile-sticky-cta {
    transform: translateY(0);
  }
  .chatbot-trigger {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .chatbot-window {
    bottom: 140px;
    right: 15px;
    width: 330px;
  }
}

.sticky-btn {
  flex: 1;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.sticky-btn svg { width: 20px; height: 20px; }
.sticky-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #1778c4 100%);
  color: white;
  border-top: none;
}

/* --- Service Modals --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(6, 8, 10, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.modal-content {
  background: var(--bg-graphite);
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  overflow-y: auto;
  max-height: 90vh;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-silver);
  cursor: pointer;
}

.modal-content h2 { margin-bottom: 0.5rem; font-size: 1.8rem; }
.modal-content ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }
.modal-content li { margin-bottom: 0.5rem; font-size: 1.05rem; }
