/* ==========================================================================
   PRIME INSTALL PRO — MASTER STYLESHEET (UI/UX PRO MAX + PRELOADER EDITION)
   On-Site Custom Wallpaper, 3D Acrylics & Architectural Graphics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,600;0,700;0,800;0,900;1,800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Core Color Palette */
  --bg-dark: #0B0F17;
  --bg-card: #121824;
  --bg-card-hover: #1A2335;
  --bg-glass: rgba(18, 24, 36, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  /* Accent Colors */
  --accent-cyan: #00F2FE;
  --accent-blue: #4FACFE;
  --accent-amber: #F59E0B;
  --accent-gradient: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
  --accent-gradient-glow: linear-gradient(135deg, rgba(0, 242, 254, 0.3) 0%, rgba(79, 172, 254, 0.3) 100%);

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout & Spacing */
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ==========================================================================
   CINEMATIC LOGO PRELOADER OVERLAY
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: #070A10;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.fade-out {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.preloader-logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.8));
  animation: logoPulse 2s ease-in-out infinite alternate;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent-cyan);
  border-right-color: rgba(0, 242, 254, 0.2);
  animation: spinRing 1.2s linear infinite;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
  0% { transform: scale(0.95); filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.5)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 35px rgba(0, 242, 254, 0.95)); }
}

.preloader-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.preloader-brand span.badge {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-bar-bg {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 8px;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-gradient);
  box-shadow: 0 0 12px var(--accent-cyan);
  transition: width 0.1s linear;
}

.preloader-status {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Accessibility Focus States (WCAG 2.2) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 4px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  min-height: 44px; /* WCAG Minimum Tap Target */
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

/* Container Layout */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* Vector Transparent Brand Logo Styling */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.75));
}

.brand-logo span.badge {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFFFFF;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: var(--transition);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-btn {
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: var(--transition);
  min-height: 36px;
}

.lang-btn.active {
  background: var(--accent-gradient);
  color: #000000;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

/* CTA Buttons (UI/UX Pro Max Physics) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 46px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #0B0F17;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 242, 254, 0.5);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
}

.btn-amber {
  background: var(--accent-amber);
  color: #0B0F17;
  font-weight: 700;
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 18ch;
}

.hero-title span.accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-rotator {
  color: var(--accent-amber);
  font-style: italic;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1), 0 20px 50px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slide.active:hover img {
  transform: scale(1.02);
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  z-index: 10;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.5s ease 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.slide.active .hero-image-badge {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background: rgba(11, 15, 23, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.slider-container:hover .slider-arrow {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.slider-arrow:hover {
  background: var(--accent-gradient, linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%));
  border-color: transparent;
  color: #0b0f17;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
}

.slider-arrow.prev {
  left: 24px;
}

.slider-arrow.next {
  right: 24px;
}

/* Slide Indicators / Progress Bars */
.slider-progress-container {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
  z-index: 15;
  width: calc(100% - 48px);
  max-width: 300px;
}

.progress-bar-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.progress-bar-wrap:hover {
  transform: scaleY(1.5);
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-cyan, #00b4d8);
  border-radius: 2px;
}

/* Responsive Slider Adjustments */
@media (max-width: 768px) {
  .slider-arrow {
    opacity: 0.8;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .slider-container:hover .slider-arrow {
    transform: translateY(-50%) scale(1);
  }
  .slider-arrow.prev {
    left: 12px;
  }
  .slider-arrow.next {
    right: 12px;
  }
  .slider-progress-container {
    bottom: 16px;
    right: 16px;
    max-width: 200px;
  }
  .hero-image-badge {
    bottom: 12px;
    left: 12px;
    padding: 8px 12px;
    max-width: calc(100% - 24px);
  }
  .hero-image-badge span.mono {
    font-size: 0.7rem;
  }
  .hero-image-badge strong {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .slider-progress-container {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 12px;
    width: 80%;
    max-width: 240px;
  }
  .hero-image-badge {
    display: none;
  }
}

/* Marquee Banner */
.marquee-wrap {
  background: #070A10;
  border-y: 1px solid var(--border-color);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.marquee-item span.sep {
  color: var(--accent-cyan);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Trusted Section */
.trusted {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.trusted-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.logo-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.logo-badge:hover {
  border-color: var(--accent-cyan);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 242, 254, 0.15);
}

/* Section Header Structure */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 480px;
  font-size: 1.05rem;
}

/* Services Grid (UI/UX Pro Max Cards) */
.services {
  padding: 100px 0;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.05);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-cyan);
  transform: translateY(-6px);
  box-shadow: inset 0 1px 1px rgba(0, 242, 254, 0.2), 0 16px 45px rgba(0, 242, 254, 0.15);
}

.service-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-card-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

.service-card-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-cyan);
  font-size: 0.9rem;
}

/* Material Swatch Viewer (UI/UX Pro Max Interactive Component) */
.swatch-grid {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.swatch-item {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.swatch-item:hover {
  border-color: var(--accent-cyan);
  color: #FFF;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: #080C13;
}

.portfolio-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  min-height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-gradient);
  color: #0B0F17;
  border-color: transparent;
  box-shadow: 0 0 16px rgba(0, 242, 254, 0.4);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.portfolio-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-item:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 242, 254, 0.12);
}

.portfolio-item-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.portfolio-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-item-img img {
  transform: scale(1.08);
}

.portfolio-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

.portfolio-item-info {
  padding: 20px;
}

.portfolio-item-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.portfolio-item-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Process Timeline */
.process {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.1);
}

.process-num {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #080D17 100%);
  border-y: 1px solid var(--border-color);
}

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

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Quote Wizard Section */
.quote-section {
  padding: 100px 0;
  background: #080C13;
}

.wizard-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}

.wizard-progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dim);
  z-index: 1;
}

.wizard-progress-step.active {
  color: var(--accent-cyan);
}

.wizard-progress-step.completed {
  color: var(--accent-amber);
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.wizard-progress-step.active .step-circle {
  background: var(--accent-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.5);
}

.wizard-step-content {
  display: none;
}

.wizard-step-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.option-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
  min-height: 44px;
}

.option-tile:hover,
.option-tile.selected {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.08);
  box-shadow: 0 0 16px rgba(0, 242, 254, 0.15);
}

.option-tile-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.option-tile-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wizard-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.95rem;
  min-height: 46px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.estimate-box {
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.1);
}

.estimate-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

/* Modal Windows */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 16, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0,0,0,0.6);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* PDF Invoice Generator Styling */
.invoice-template {
  background: #FFFFFF;
  color: #1F2937;
  padding: 40px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.invoice-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #111827;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.invoice-table th,
.invoice-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
}

.invoice-table th {
  background: #F3F4F6;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.invoice-total-row {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
}

/* Details Accordion Styles */
details.service-card summary::-webkit-details-marker {
  display: none;
}

details[open] summary span:last-child {
  transform: rotate(45deg);
}

/* Footer */
.footer {
  background: #06090E;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

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

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

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

.footer-legal-links {
  display: flex;
  gap: 20px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

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

/* Media Queries for Mobile Navigation & Responsive Grids */
@media (max-width: 768px) {
  .nav {
    height: 70px;
    gap: 8px;
  }

  .nav-right {
    gap: 8px;
  }

  .lang-toggle {
    padding: 2px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 0.7rem;
    min-height: 30px;
  }

  .nav-right .btn-primary {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .brand-logo-img {
    height: 42px;
  }

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

  .wizard-container {
    padding: 20px;
  }

  .wizard-progress-step span.label {
    display: none;
  }
}

@media (max-width: 520px) {
  .nav-right .btn-primary {
    display: none;
  }
}

/* Print Stylesheet for Invoices */
@media print {
  body * {
    visibility: hidden;
  }

  #invoice-print-area, #invoice-print-area * {
    visibility: visible;
  }

  #invoice-print-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #FFFFFF;
    color: #000000;
  }
}

/* ==================== COVERAGE AREA CARD ==================== */
.coverage-card {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.coverage-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse-glow 1.5s infinite ease-in-out;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4);
  }
  70% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(0, 242, 254, 0);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
  }
}

.coverage-graphic-wrap {
  background: linear-gradient(135deg, rgba(22, 30, 46, 0.9) 0%, rgba(11, 15, 23, 0.9) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.coverage-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.3));
}

.coverage-locations {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.city-tag:hover {
  background: rgba(0, 242, 254, 0.06);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* ==================== TRUSTED CLIENTS LOGOS MARQUEE ==================== */
@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted-logos-marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  position: relative;
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trusted-logos-track {
  display: flex;
  gap: 30px;
  animation: logo-scroll 35s linear infinite;
  width: max-content;
}

.trusted-logos-track:hover {
  animation-play-state: paused;
}

.marquee-badge {
  background: #121824;
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 700;
  transition: all 0.3s ease;
}

.marquee-badge:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 60px 0;
  background: #0B0F17;
  border-top: 1px solid var(--border-color);
}

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

.stat-card {
  background: #121824;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ==================== REVIEWS GRID & LAYOUT ==================== */
.reviews-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

@media (max-width: 968px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

.reviews-summary-card {
  background: #121824;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.google-rating-box {
  background: #0B0F17;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-top: 15px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.review-card {
  background: #121824;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.review-stars {
  color: var(--accent-amber);
  margin-bottom: 12px;
}

.review-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-name {
  display: block;
  font-size: 0.9rem;
  color: #FFF;
  font-weight: 600;
}

.author-title {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ==================== TEAM CREW SECTION ==================== */
.team-section {
  padding: 80px 0;
  background: #070A10;
  border-bottom: 1px solid var(--border-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: #121824;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: 0 5px 20px rgba(0, 242, 254, 0.1);
}

.team-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.team-avatar-large {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
  border: 1px dashed var(--accent-cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.team-card:hover .team-avatar-large {
  border-style: solid;
  transform: scale(1.05);
}

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

.team-body h3 {
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 6px;
}

.team-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
