/* ========================================
   YETI PRESSURE WASHING - Fresh Modern Design
   Color Palette: Icy Blue, Electric Cyan, Bold Orange, Clean White
   ======================================== */

:root {
  --primary: #0077B6;
  --primary-dark: #005F8A;
  --primary-light: #00B4D8;
  --accent: #FF6B35;
  --accent-dark: #E5552A;
  --accent-light: #FF8C5A;
  --cyan: #00E5FF;
  --dark: #0A1628;
  --dark-blue: #0D2137;
  --gray-900: #1A2332;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #00B4D8, #0077B6, #FF6B35);
  --gradient-text: linear-gradient(135deg, #00E5FF, #00B4D8, #FF6B35);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 30px rgba(0,180,216,0.3);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(255,107,53,0.1));
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255,107,53,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  padding: 4px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Nav logo - hidden on desktop, shown on mobile */
.nav-logo-link {
  display: none;
}

.nav-logo-img {
  height: 45px;
  width: auto;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.3s;
}

.nav-phone:hover {
  color: var(--accent-dark);
}

.nav-phone svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero Logo */
.hero-logo {
  display: block;
  margin-bottom: 20px;
}

.hero-logo-img {
  height: 650px;
  width: auto;
}

.logo-text-fallback {
  align-items: center;
  gap: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-icon {
  font-size: 1.5rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 50%, #0A2A3F 100%);
  overflow: hidden;
  padding: 80px 24px 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,180,216,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,107,53,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0,229,255,0.08) 0%, transparent 40%);
}

/* Animated particle canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Floating bubble/water icons */
.floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.15;
  animation: floatUp linear infinite;
}

.icon-1 { left: 5%; animation-duration: 12s; animation-delay: 0s; font-size: 1.8rem; }
.icon-2 { left: 15%; animation-duration: 9s; animation-delay: 2s; font-size: 1.2rem; }
.icon-3 { left: 30%; animation-duration: 14s; animation-delay: 4s; font-size: 2rem; }
.icon-4 { left: 50%; animation-duration: 10s; animation-delay: 1s; font-size: 1rem; }
.icon-5 { left: 65%; animation-duration: 13s; animation-delay: 3s; font-size: 1.6rem; }
.icon-6 { left: 78%; animation-duration: 11s; animation-delay: 5s; font-size: 1.4rem; }
.icon-7 { left: 88%; animation-duration: 15s; animation-delay: 2.5s; font-size: 1.8rem; }
.icon-8 { left: 95%; animation-duration: 8s; animation-delay: 6s; font-size: 1.2rem; }

@keyframes floatUp {
  0% { bottom: -10%; opacity: 0; transform: translateX(0) rotate(0deg); }
  10% { opacity: 0.2; }
  90% { opacity: 0.15; }
  100% { bottom: 110%; opacity: 0; transform: translateX(-30px) rotate(360deg); }
}

/* Hero two-column layout */
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--cyan);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.6s ease both;
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* Pulsing CTA button */
.pulse-btn {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(255,107,53,0.4); }
  50% { box-shadow: 0 4px 30px rgba(255,107,53,0.7), 0 0 60px rgba(255,107,53,0.2); }
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ========================================
   HERO PHOTO COLLAGE (Right side)
   ======================================== */

.hero-photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

/* White frame for all photos */
.photo-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.photo-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 30px rgba(0,0,0,0.4),
    0 0 20px rgba(0,180,216,0.15);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  display: block;
}

/* Main large photo - spans full width */
.photo-main {
  grid-column: 1 / -1;
}

.photo-main img {
  height: 220px;
}

.photo-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Small photos in 2x2 grid */
.photo-small img {
  height: 130px;
}

/* Trust badges row */
.trust-badges {
  display: flex;
  gap: 12px;
}

.trust-badge {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,229,255,0.2);
}

.trust-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-badge span {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========================================
   SERVICES
   ======================================== */

.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--dark), var(--dark-blue));
  border-color: transparent;
  color: rgba(255,255,255,0.8);
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card.featured .service-link {
  color: var(--cyan);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--accent);
}

/* ========================================
   WHY US
   ======================================== */

.why-us {
  padding: 100px 0;
  background: var(--gray-100);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.why-us-content > p {
  color: var(--gray-500);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.why-us-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-light);
}

.visual-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.visual-card.card-1 { border-left-color: var(--cyan); }
.visual-card.card-2 { border-left-color: var(--primary); }
.visual-card.card-3 { border-left-color: var(--accent); }

.visual-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.visual-card h4 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.visual-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ========================================
   GALLERY
   ======================================== */

.gallery {
  padding: 100px 0;
  background: var(--white);
}

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

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-300);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-before-after {
  display: flex;
  height: 280px;
  overflow: hidden;
}

.gallery-before-after.combined {
  display: block;
}

.gallery-before-after.combined img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-half {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.gallery-label {
  background: rgba(0,0,0,0.5);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-card h4 {
  padding: 16px 20px 4px;
  font-size: 1.2rem;
}

.gallery-card > p {
  padding: 0 20px 20px;
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ========================================
   REVIEWS
   ======================================== */

.reviews {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), var(--dark-blue));
}

.reviews .section-tag {
  background: rgba(0,180,216,0.15);
  color: var(--cyan);
}

.reviews .section-header h2 {
  color: var(--white);
}

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

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.review-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.review-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.review-author span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* Google Review - Nav Button */
.nav-google-review {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FFD700;
  color: #1a1a1a !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(255,215,0,0.4);
  animation: reviewPulse 2s ease-in-out infinite;
}

.nav-google-review:hover {
  background: #FFE44D;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,215,0,0.6);
}

.nav-google-review svg {
  flex-shrink: 0;
}

@keyframes reviewPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 24px rgba(255,215,0,0.7); }
}

/* Google Review - Large CTA in Reviews Section */
.review-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-google-review-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFD700;
  color: #1a1a1a;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255,215,0,0.4);
  animation: reviewPulse 2s ease-in-out infinite;
}

.btn-google-review-lg:hover {
  background: #FFE44D;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.6);
}

.review-stars-cta {
  color: #FF6B35;
  font-size: 1.3rem;
  letter-spacing: 3px;
}

/* ========================================
   CONTACT
   ======================================== */

.contact {
  padding: 100px 0;
  background: var(--gray-100);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-item p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.contact-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.1);
}

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

.form-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.8rem;
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-500);
  font-size: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--dark);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.6);
}

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

.footer-logo-img {
  height: 150px;
  width: auto;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s;
}

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

.footer-service-area {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

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

@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    padding: 200px 24px 60px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-photos {
    max-width: 500px;
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-logo-link {
    display: block;
    flex-shrink: 0;
  }

  .nav-container {
    justify-content: space-between;
    gap: 12px;
  }

  .nav-phone {
    font-size: 1.4rem;
    flex: 1;
    justify-content: center;
  }

  .nav-phone svg {
    width: 22px;
    height: 22px;
  }

  .nav-google-review {
    display: none;
  }

  .hero-logo-img {
    height: 350px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,22,40,0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-stats {
    gap: 24px;
  }

  .trust-badges {
    flex-direction: column;
  }

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

  .btn-google-review-lg {
    font-size: 1.3rem;
    padding: 14px 28px;
    gap: 8px;
  }

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

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

  .contact-form-container {
    padding: 28px 20px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth hover effects */
.service-card,
.gallery-card,
.review-card,
.visual-card,
.area-card {
  will-change: transform;
}

/* ===== Service Areas Section ===== */
.service-areas {
  padding: 80px 0;
  background: var(--dark-navy);
}

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

.area-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 119, 182, 0.2);
  border-color: var(--primary-light);
}

.area-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.area-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

.areas-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--gray-300);
}

.areas-cta a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.areas-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 968px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== FAQ Section ===== */
.faq {
  padding: 80px 0;
  background: var(--gray-100);
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ========================================
   PROMO BANNER
   ======================================== */

.promo-banner {
  position: relative;
  z-index: 1100;
  background: linear-gradient(135deg, var(--accent), #e04e1a);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 48px 10px 16px;
  gap: 12px;
  text-align: center;
  min-height: 44px;
}

.promo-banner.hidden {
  display: none;
}

.promo-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.promo-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.promo-cta {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.promo-cta:hover {
  background: rgba(255,255,255,0.35);
}

.promo-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.promo-close:hover {
  color: var(--white);
}

/* ========================================
   BEFORE/AFTER SLIDER
   ======================================== */

.ba-slider-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ba-after-img,
.ba-before-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-before-img {
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.ba-handle-circle svg {
  stroke: var(--primary);
  stroke-width: 2.5;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 5;
}

.ba-label-before {
  left: 12px;
}

.ba-label-after {
  right: 12px;
}

.ba-drag-hint {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.ba-slider-wrap.interacted .ba-drag-hint {
  opacity: 0;
}

/* ========================================
   INSTANT ESTIMATE CALCULATOR
   ======================================== */

.estimator {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), var(--dark-blue));
}

.estimator .section-tag {
  background: rgba(0,180,216,0.15);
  color: var(--cyan);
}

.estimator .section-header h2,
.estimator .section-header p {
  color: var(--white);
}

.estimator .section-header p {
  color: rgba(255,255,255,0.6);
}

.estimator-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.estimator-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.est-group label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.est-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.est-group select:focus {
  outline: none;
  border-color: var(--cyan);
}

.est-group select option {
  background: var(--dark-blue);
  color: var(--white);
}

.est-size-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.est-size-btn {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8);
  padding: 14px 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.3;
}

.est-size-btn:hover {
  border-color: var(--cyan);
  background: rgba(0,229,255,0.08);
}

.est-size-btn.selected {
  border-color: var(--cyan);
  background: rgba(0,229,255,0.12);
  color: var(--cyan);
  font-weight: 600;
}

.est-size-btn strong {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 2px;
}

.estimator-result {
  margin-top: 32px;
  animation: fadeInUp 0.5s ease both;
}

.est-result-inner {
  background: linear-gradient(135deg, rgba(0,180,216,0.15), rgba(255,107,53,0.1));
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.est-result-label {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.est-result-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
}

.est-result-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .estimator-card {
    padding: 28px 20px;
  }
}

/* ========================================
   SERVICE AREA MAP
   ======================================== */

.service-area {
  padding: 100px 0;
  background: var(--gray-100);
}

.area-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.area-map-container {
  display: flex;
  justify-content: center;
}

.co-map {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 8px 30px rgba(0,119,182,0.25));
  border-radius: var(--radius);
}

.area-cities h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.area-desc {
  color: var(--gray-500);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.6;
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 32px;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.city-item.city-home {
  font-weight: 700;
  color: var(--accent);
}

.city-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.city-dot.cyan { background: var(--cyan); }
.city-dot.blue { background: var(--primary-light); }
.city-dot.primary { background: var(--primary); }
.city-dot.orange { background: var(--accent); }

.area-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.area-cta p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .area-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .co-map {
    max-width: 220px;
  }
}

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-item.open .faq-question {
  background: rgba(0,119,182,0.04);
  color: var(--primary);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--primary-light);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

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

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

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   STICKY FLOATING CALL/TEXT BUTTON
   ======================================== */

.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 999;
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}

.sticky-call {
  background: var(--accent);
  color: var(--white);
}

.sticky-text {
  background: var(--primary);
  color: var(--white);
}

/* On desktop, hide the sticky CTA (only useful for mobile) */
@media (min-width: 769px) {
  .sticky-cta {
    display: none;
  }
}

/* ========================================
   COUNTER ANIMATION
   ======================================== */

.counter {
  display: inline-block;
}
