/* ========================================================================
   FULL SPEED PLUMBING - PHOTOREALISTIC DESIGN SYSTEM v2.0
   Ultimate Cinematic Experience with Advanced Effects
   ======================================================================== */

:root {
  --steel-900: #0a0f14;
  --steel-800: #131b24;
  --steel-700: #1d2938;
  --steel-600: #2a3a4e;
  --steel-500: #3d5168;
  --steel-400: #5a7491;
  --steel-300: #8ba3bf;
  --steel-200: #b8c9db;
  --steel-100: #e8eff5;

  --copper-600: #8b4513;
  --copper-500: #b8622c;
  --copper-400: #d97b3a;
  --copper-300: #e89850;
  --copper-200: #f4b97b;
  --copper-100: #fbe4d0;
  --copper-glow: rgba(232, 115, 42, 0.4);

  --trust-600: #0d4f8c;
  --trust-500: #1468b2;
  --trust-400: #2d89d6;
  --trust-300: #5aa6e8;

  --emergency-500: #c62828;
  --emergency-400: #e53935;
  --emergency-glow: rgba(229, 57, 53, 0.35);

  --success-500: #2e7d32;
  --success-400: #43a047;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--steel-900);
  color: var(--steel-100);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* === LOADING SCREEN === */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--steel-900);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--copper-400), var(--copper-500));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-logo svg {
  width: 44px;
  height: 44px;
  fill: white;
}

@keyframes loadingPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--copper-glow); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px 10px var(--copper-glow); }
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper-400), var(--copper-300));
  border-radius: 2px;
  animation: loadingProgress 1.5s ease-in-out infinite;
}

@keyframes loadingProgress {
  0% { width: 0%; transform: translateX(0); }
  50% { width: 70%; }
  100% { width: 100%; transform: translateX(0); }
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-400), var(--copper-300), var(--trust-400));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* === NOISE TEXTURE OVERLAY === */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* === PHOTOREALISTIC BACKGROUND SYSTEM === */
.scene-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.fog-layer {
  position: absolute;
  width: 200%; height: 200%;
  top: -50%; left: -50%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(43, 185, 170, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(232, 115, 42, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(136, 176, 220, 0.04) 0%, transparent 70%);
  animation: fogDrift 45s ease-in-out infinite;
}

@keyframes fogDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(2%, -1%) rotate(0.5deg); }
  50% { transform: translate(-1%, 2%) rotate(-0.3deg); }
  75% { transform: translate(-2%, -1%) rotate(0.2deg); }
}

/* Morphing Blob Shapes */
.blob-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobMorph 25s ease-in-out infinite;
}

.blob-1 {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: linear-gradient(135deg, rgba(232, 115, 42, 0.15), rgba(217, 123, 58, 0.1));
  animation-delay: 0s;
}

.blob-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -150px;
  background: linear-gradient(135deg, rgba(43, 185, 170, 0.12), rgba(45, 137, 214, 0.08));
  animation-delay: -8s;
}

.blob-3 {
  width: 400px; height: 400px;
  top: 40%; left: 30%;
  background: linear-gradient(135deg, rgba(136, 176, 220, 0.08), rgba(43, 185, 170, 0.06));
  animation-delay: -16s;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg) scale(1); }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(90deg) scale(1.1); }
  50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; transform: rotate(180deg) scale(0.95); }
  75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; transform: rotate(270deg) scale(1.05); }
}

.light-rays {
  position: absolute;
  top: -20%; right: -10%;
  width: 80%; height: 120%;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,250,240,0.025) 45%, transparent 55%),
    linear-gradient(125deg, transparent 35%, rgba(255,250,240,0.02) 48%, transparent 58%),
    linear-gradient(135deg, transparent 40%, rgba(255,250,240,0.015) 52%, transparent 62%);
  animation: lightPulse 8s ease-in-out infinite;
}

@keyframes lightPulse {
  0%, 100% { opacity: 0.6; transform: rotate(0deg) scale(1); }
  50% { opacity: 1; transform: rotate(1deg) scale(1.02); }
}

.particle-field { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: radial-gradient(circle, rgba(43, 185, 170, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: particleFloat 20s linear infinite;
  opacity: 0;
}
.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 22s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 25s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 20s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 23s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 19s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 0.5s; animation-duration: 24s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 17s; }
.particle:nth-child(10) { left: 15%; animation-delay: 1.5s; animation-duration: 26s; }
.particle:nth-child(11) { left: 25%; animation-delay: 3.5s; animation-duration: 19s; }
.particle:nth-child(12) { left: 35%; animation-delay: 0.8s; animation-duration: 22s; }
.particle:nth-child(13) { left: 55%; animation-delay: 2.2s; animation-duration: 20s; }
.particle:nth-child(14) { left: 75%; animation-delay: 4.2s; animation-duration: 24s; }
.particle:nth-child(15) { left: 85%; animation-delay: 1.8s; animation-duration: 21s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  50% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

.water-ripple {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 40%;
  background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(43, 185, 170, 0.025) 50px, rgba(43, 185, 170, 0.025) 100px);
  animation: rippleFlow 12s linear infinite;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

@keyframes rippleFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100px); }
}

/* Grid Pattern Overlay */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
}

/* === GLASSMORPHISM COMPONENTS === */
.glass-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* === LAYOUT === */
.site-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* === FLOATING CTA BAR === */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: linear-gradient(135deg, rgba(20, 30, 45, 0.95), rgba(10, 15, 20, 0.98));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 12px 16px 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.5s var(--ease-out-expo);
}

.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
}

.floating-cta-text {
  font-size: 0.95rem;
  color: var(--steel-200);
}

.floating-cta-text strong {
  color: var(--copper-300);
}

.floating-cta .btn {
  padding: 12px 20px;
  font-size: 0.9rem;
}

/* === NAVIGATION === */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav-bar.scrolled {
  background: rgba(10, 15, 20, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--steel-100);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--copper-400) 0%, var(--copper-500) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
  0%, 100% { transform: translateX(-100%) rotate(45deg); }
  50% { transform: translateX(100%) rotate(45deg); }
}

.logo-icon svg {
  width: 24px; height: 24px;
  fill: white;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--steel-300);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 6px; left: 16px; right: 16px;
  height: 2px;
  background: var(--copper-400);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--steel-100);
  background: rgba(255,255,255,0.05);
}

.nav-links a:hover::before { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--copper-400) 0%, var(--copper-500) 100%) !important;
  color: white !important;
  box-shadow: 0 4px 20px var(--copper-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--copper-glow);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.mobile-menu-btn span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--steel-200);
  transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) { top: 14px; }
.mobile-menu-btn span:nth-child(2) { top: 21px; }
.mobile-menu-btn span:nth-child(3) { top: 28px; }

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

/* === TOP BAR === */
.top-bar {
  background: linear-gradient(90deg, var(--steel-900), var(--steel-800));
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--steel-400);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.top-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(43, 185, 170, 0.1), transparent);
  animation: topBarShimmer 8s ease-in-out infinite;
}

@keyframes topBarShimmer {
  0%, 100% { left: -100%; }
  50% { left: 200%; }
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-icon {
  width: 18px; height: 18px;
  fill: var(--copper-400);
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(43, 185, 170, 0.1);
  border: 1px solid rgba(43, 185, 170, 0.2);
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2bb9aa;
  margin-bottom: 20px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 185, 170, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(43, 185, 170, 0); }
}

.badge-dot {
  width: 8px; height: 8px;
  background: #2bb9aa;
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--steel-100);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--copper-300) 0%, var(--copper-400) 50%, var(--copper-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Text Reveal Animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  animation: textReveal 0.8s var(--ease-out-expo) forwards;
}

@keyframes textReveal {
  to { transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--steel-400);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}

/* === CTA BUTTONS === */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper-400) 0%, var(--copper-500) 100%);
  color: white;
  box-shadow: 0 4px 15px var(--copper-glow), 0 1px 0 rgba(255,255,255,0.2) inset;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s var(--ease-out-expo);
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--copper-glow), 0 1px 0 rgba(255,255,255,0.2) inset;
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--steel-200);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.btn-emergency {
  background: linear-gradient(135deg, var(--emergency-400) 0%, var(--emergency-500) 100%);
  color: white;
  box-shadow: 0 4px 20px var(--emergency-glow);
  animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--emergency-glow); }
  50% { box-shadow: 0 4px 35px var(--emergency-glow), 0 0 60px var(--emergency-glow); }
}

.btn-icon {
  width: 20px; height: 20px;
  fill: currentColor;
}

/* === HERO PANEL === */
.hero-panel { padding: 32px; }
.hero-panel-header { margin-bottom: 24px; }

.hero-panel-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--steel-100);
  margin-bottom: 8px;
}

.hero-panel-subtitle {
  font-size: 0.95rem;
  color: var(--steel-400);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(43, 185, 170, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 185, 170, 0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.stat-card:hover::before { opacity: 1; }

.stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--steel-100);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--steel-500);
  position: relative;
  z-index: 1;
}

/* === TRUST BADGES === */
.trust-section {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--steel-400);
  font-size: 0.9rem;
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(43, 185, 170, 0.1);
  border: 1px solid rgba(43, 185, 170, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 22px;
  height: 22px;
  fill: #2bb9aa;
}

/* === SECTIONS === */
.content-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 185, 170, 0.08);
  border: 1px solid rgba(43, 185, 170, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2bb9aa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--steel-100);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--steel-400);
  line-height: 1.7;
}

/* === SERVICE CARDS WITH 3D TILT === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card.animate-in {
  animation: cardReveal 0.8s var(--ease-out-expo) forwards;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(232, 115, 42, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(43, 185, 170, 0.08) 0%, transparent 50%);
  transform: scale(0);
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(232, 115, 42, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(232, 115, 42, 0.08);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scale(1); }

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--copper-400) 0%, var(--copper-500) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px var(--copper-glow);
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
  width: 28px; height: 28px;
  fill: white;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--steel-100);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--steel-400);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(232, 115, 42, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--copper-400);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--steel-300);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--copper-400), var(--trust-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.testimonial-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--steel-100);
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--steel-500);
}

/* === PROCESS SECTION === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50%; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 115, 42, 0.3) 20%, rgba(232, 115, 42, 0.3) 80%, transparent);
  z-index: 0;
}

.process-step {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease-out-expo);
}

.process-step:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(232, 115, 42, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.step-number {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--copper-400), var(--copper-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 30px var(--copper-glow);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed rgba(232, 115, 42, 0.3);
  border-radius: 50%;
  animation: stepRotate 20s linear infinite;
}

@keyframes stepRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--steel-100);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--steel-400);
  line-height: 1.7;
}

/* === FAQ ACCORDION === */
.faq-section {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.faq-item:hover {
  border-color: rgba(232, 115, 42, 0.2);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--steel-100);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--copper-300);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--copper-400);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out-expo);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--copper-400);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.4s var(--ease-out-expo);
}

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

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--steel-400);
  line-height: 1.7;
}

/* === SERVICE AREA MAP === */
.map-section {
  position: relative;
  overflow: hidden;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.map-visual {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-graphic {
  width: 100%;
  max-width: 350px;
  position: relative;
}

.map-state {
  fill: rgba(43, 185, 170, 0.1);
  stroke: rgba(43, 185, 170, 0.3);
  stroke-width: 2;
  transition: all 0.4s ease;
}

.map-state:hover {
  fill: rgba(43, 185, 170, 0.2);
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--copper-400);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px var(--copper-glow);
  animation: pinBounce 2s ease-in-out infinite;
}

.map-pin::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

@keyframes pinBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}

.map-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--steel-100);
  margin-bottom: 16px;
}

.map-info p {
  color: var(--steel-400);
  margin-bottom: 24px;
  line-height: 1.7;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--steel-300);
  font-size: 0.95rem;
}

.area-list svg {
  width: 18px;
  height: 18px;
  fill: var(--copper-400);
  flex-shrink: 0;
}

/* === CONTACT SECTION === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info { padding: 40px; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--steel-100);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--steel-400);
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  color: var(--steel-200);
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
}

.contact-link:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(232, 115, 42, 0.2);
  transform: translateX(8px);
}

.contact-link-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--copper-400), var(--copper-500));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-icon svg {
  width: 22px; height: 22px;
  fill: white;
}

/* === FORM === */
.contact-form { padding: 40px; }
.form-grid { display: grid; gap: 20px; }
.form-group { position: relative; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel-300);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--steel-100);
  transition: all 0.3s var(--ease-out-expo);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238ba3bf' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--steel-500);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--copper-400);
  box-shadow: 0 0 0 4px rgba(232, 115, 42, 0.15);
  background: rgba(255,255,255,0.05);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

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

/* === COUNTER STATS === */
.counter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(232, 115, 42, 0.05) 0%, rgba(43, 185, 170, 0.03) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.counter-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--copper-300), var(--copper-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 1rem;
  color: var(--steel-400);
}

/* === FOOTER === */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--steel-100);
  margin-bottom: 16px;
}

.footer-brand-section p {
  color: var(--steel-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--copper-400);
  border-color: var(--copper-400);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--steel-300);
  transition: fill 0.3s ease;
}

.footer-social a:hover svg {
  fill: white;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--steel-100);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--steel-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--copper-400);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  color: var(--steel-500);
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: var(--steel-500);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--copper-400);
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .map-container { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .services-grid, .process-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .hero-title { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .floating-cta { display: none; }
}

@media (max-width: 480px) {
  .top-bar-content { flex-direction: column; text-align: center; }
  .hero-section { padding: 100px 0 60px; }
  .hero-panel, .contact-info, .contact-form { padding: 24px; }
  .counter-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 24px; }
}
