/*
Theme Name: Dirty Truth Power Wash
Theme URI: https://dirtytruthpowerwash.com
Author: Dirty Truth Power Wash
Author URI: https://dirtytruthpowerwash.com
Description: Custom theme for Dirty Truth Power Wash — Soft Wash & Pressure Cleaning, Florida Panhandle.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dirty-truth-powerwash
Tags: one-page, business, custom
*/

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

:root {
  --navy: #060d1a;
  --deep: #0a1628;
  --brand: #1565c0;
  --bright: #1e88e5;
  --electric: #42a5f5;
  --ice: #90caf9;
  --white: #ffffff;
  --off: #e8f0fe;
  --gray: #78909c;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--white); background: var(--navy); overflow-x: hidden; }

/* ===== WATER RIPPLE ANIMATION ===== */
@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes splash-in {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes water-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes drip {
  0% { transform: translateY(-10px); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(60px); opacity: 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(66,165,245,0.3); }
  50% { box-shadow: 0 0 50px rgba(66,165,245,0.7), 0 0 80px rgba(21,101,192,0.3); }
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,13,26,0.95);
  backdrop-filter: blur(12px);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  border-bottom: 2px solid rgba(66,165,245,0.4);
}
.nav::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric), var(--brand), var(--electric), transparent);
  animation: water-flow 3s ease infinite;
  background-size: 200% 100%;
}
.nav-logo-wrap { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--electric); }
.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px; text-transform: uppercase; letter-spacing: 1px; color: var(--white);
}
.nav-brand span { color: var(--electric); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--electric); transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--electric); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--brand), var(--bright));
  color: var(--white) !important; padding: 11px 24px; border-radius: 4px;
  font-weight: 800 !important; letter-spacing: 1px !important;
  box-shadow: 0 4px 20px rgba(21,101,192,0.5);
  transition: all 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(66,165,245,0.6) !important; }
.nav-cta::after { display: none !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(21,101,192,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(66,165,245,0.12) 0%, transparent 45%),
    var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 110px 24px 60px;
  position: relative; overflow: hidden;
}

/* Animated water drops background */
.water-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.drop {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(144,202,249,0.6), rgba(66,165,245,0.1));
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.ripple-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(66,165,245,0.3);
  animation: ripple var(--dur, 3s) ease-out infinite;
  animation-delay: var(--delay, 0s);
}

/* Drip line at top */
.drip-bar {
  position: absolute; top: 68px; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, transparent 0%, rgba(66,165,245,0.6) 30%, rgba(144,202,249,0.8) 50%, rgba(66,165,245,0.6) 70%, transparent 100%);
}
.drips { position: absolute; top: 74px; left: 0; right: 0; display: flex; justify-content: space-around; }
.drip-drop {
  width: 6px; height: 40px;
  background: linear-gradient(180deg, rgba(66,165,245,0.8), transparent);
  border-radius: 0 0 50% 50%;
  animation: drip 2s ease-in infinite;
  animation-delay: var(--d, 0s);
}

.hero-logo {
  width: 300px; height: 300px;
  border-radius: 50%; object-fit: cover;
  border: 5px solid var(--electric);
  animation: float 4s ease-in-out infinite, pulse-glow 3s ease-in-out infinite;
  margin-bottom: 24px;
  position: relative; z-index: 2;
  box-shadow: 0 0 60px rgba(66,165,245,0.35), 0 0 120px rgba(21,101,192,0.15);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(60px, 9vw, 110px);
  line-height: 0.88; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px; position: relative; z-index: 2;
}
.hero h1 .dirty {
  background: linear-gradient(180deg, #c8a97a 0%, #8b6340 50%, #c8a97a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
}
.hero h1 .truth {
  background: linear-gradient(180deg, #ffffff 0%, var(--ice) 40%, var(--electric) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 20px rgba(66,165,245,0.8));
}
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: clamp(18px, 3vw, 28px);
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--electric); margin-bottom: 14px; position: relative; z-index: 2;
}
.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 16px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 44px; position: relative; z-index: 2;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; position: relative; z-index: 2; }
.btn-splash {
  background: linear-gradient(135deg, var(--brand) 0%, var(--bright) 100%);
  color: var(--white); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 19px; letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 40px; border-radius: 4px;
  box-shadow: 0 6px 30px rgba(21,101,192,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-splash::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.4s;
}
.btn-splash:hover::before { left: 100%; }
.btn-splash:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(66,165,245,0.7); }

.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--white); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 19px; letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 40px; border-radius: 4px;
  border: 1.5px solid rgba(66,165,245,0.5);
  transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { background: rgba(66,165,245,0.15); border-color: var(--electric); transform: translateY(-2px); }

/* Trust badges */
.trust-bar {
  display: flex; gap: 36px; flex-wrap: wrap; justify-content: center;
  padding-top: 40px; border-top: 1px solid rgba(66,165,245,0.2);
  width: 100%; max-width: 860px; position: relative; z-index: 2;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(21,101,192,0.2); border: 1px solid rgba(66,165,245,0.5);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}
.trust-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.8); line-height: 1.3;
}

/* ===== WATER WAVE DIVIDER ===== */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ===== SERVICES STRIP ===== */
.services-strip {
  background: linear-gradient(135deg, var(--brand) 0%, #0d47a1 100%);
  padding: 22px 24px;
  position: relative; overflow: hidden;
}
.services-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 60px,
    rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 61px
  );
}
.strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.strip-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--white);
}
.strip-dot { color: rgba(255,255,255,0.4); font-size: 20px; margin: 0 8px; }
.strip-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
}

/* ===== BEFORE / AFTER SECTION ===== */
.ba-section {
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(21,101,192,0.15) 0%, transparent 60%),
    var(--deep);
  padding: 90px 24px;
  position: relative;
}
.ba-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--electric), var(--brand), var(--electric), transparent);
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--electric); margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(38px, 5vw, 64px);
  text-transform: uppercase; line-height: 0.92; margin-bottom: 16px;
}
.section-desc {
  font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7;
  max-width: 540px; margin-bottom: 60px;
}

.ba-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 28px; max-width: 1100px; margin: 0 auto;
}

.ba-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(66,165,245,0.2);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ba-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66,165,245,0.5);
  box-shadow: 0 12px 40px rgba(21,101,192,0.25);
}
.ba-label-row {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px 12px;
}
.ba-service-icon { font-size: 22px; }
.ba-service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--white);
}
.ba-service-tag {
  margin-left: auto; background: rgba(21,101,192,0.3);
  border: 1px solid rgba(66,165,245,0.4);
  color: var(--electric);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}

/* Photo pair */
.ba-photos { display: grid; grid-template-columns: 1fr 1fr; }
.ba-photo { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.ba-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s; display: block;
  filter: var(--photo-filter, none);
}
.ba-card:hover .ba-photo img { transform: scale(1.04); }
.ba-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.before-badge { background: rgba(139,99,64,0.9); color: #f5d5a8; border: 1px solid #8b6340; }
.after-badge { background: rgba(21,101,192,0.9); color: var(--ice); border: 1px solid var(--electric); }
.ba-divider {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.ba-arrow-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); border: 2px solid var(--electric);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; position: absolute; z-index: 2;
  box-shadow: 0 0 20px rgba(66,165,245,0.5);
}
.ba-desc {
  padding: 14px 20px 16px;
  font-size: 14px; color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.06); line-height: 1.5;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: linear-gradient(135deg, #0d2347 0%, var(--brand) 50%, #0d2347 100%);
  background-size: 200% 100%;
  animation: water-flow 6s ease infinite;
  padding: 48px 24px;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px; background: rgba(0,0,0,0.2); border-radius: 6px; overflow: hidden;
}
.stat-block { text-align: center; padding: 32px 20px; background: rgba(0,0,0,0.2); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 56px; line-height: 1; color: var(--white);
  text-shadow: 0 0 30px rgba(144,202,249,0.6);
}
.stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 6px;
}

/* ===== SERVICES LIST ===== */
.services-section { background: var(--navy); padding: 90px 24px; position: relative; overflow: hidden; }
.services-section::before {
  content: '';
  position: absolute; bottom: 0; left: -200px; right: -200px; height: 400px;
  background: radial-gradient(ellipse, rgba(21,101,192,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.svcs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(66,165,245,0.15);
  border-radius: 6px; padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,101,192,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.svc-card:hover { border-color: rgba(66,165,245,0.5); transform: translateY(-3px); }
.svc-card:hover::before { opacity: 1; }
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--electric));
  transform: scaleX(0); transition: transform 0.3s;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(21,101,192,0.2); border: 1px solid rgba(66,165,245,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.svc-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); margin-bottom: 6px;
}
.svc-info p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ===== WHY US ===== */
.why-section {
  background: var(--deep);
  padding: 90px 24px; position: relative; overflow: hidden;
}
.why-section::after {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(66,165,245,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.reasons-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.reason {
  border: 1px solid rgba(66,165,245,0.15); border-radius: 6px;
  padding: 28px 24px; transition: all 0.3s;
  background: rgba(66,165,245,0.03);
}
.reason:hover { border-color: rgba(66,165,245,0.4); background: rgba(66,165,245,0.07); }
.reason-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 48px; line-height: 1;
  color: rgba(66,165,245,0.2); margin-bottom: 12px;
}
.reason h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 20px; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.reason p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ===== PROCESS ===== */
.process-section { background: var(--navy); padding: 90px 24px; }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; max-width: 1100px; margin: 0 auto; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 34px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--electric), var(--brand), transparent);
  z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--deep); border: 3px solid var(--electric);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px;
  color: var(--electric);
  box-shadow: 0 0 24px rgba(66,165,245,0.4);
}
.step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.step p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ===== BOOKING ===== */
.booking-section {
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(21,101,192,0.18) 0%, transparent 55%),
    var(--deep);
  padding: 90px 24px; position: relative; overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(66,165,245,0.02) 80px, rgba(66,165,245,0.02) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(66,165,245,0.02) 80px, rgba(66,165,245,0.02) 81px);
  pointer-events: none;
}
.booking-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; max-width: 1100px; margin: 0 auto;
}
.booking-info .section-desc { margin-bottom: 36px; }
.perks { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.perks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; color: rgba(255,255,255,0.8); font-weight: 500;
}
.perk-chk {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--bright));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; font-weight: 900;
}
.phone-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(66,165,245,0.3);
  border-radius: 6px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  border-left: 4px solid var(--electric);
}
.phone-card a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 30px; color: var(--white); text-decoration: none;
  transition: color 0.2s;
}
.phone-card a:hover { color: var(--electric); }
.phone-lbl { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.phone-icon { font-size: 32px; }

/* FORM */
.form-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(66,165,245,0.2);
  border-radius: 8px; padding: 40px 36px;
  backdrop-filter: blur(10px);
  border-top: 4px solid var(--electric);
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 30px; text-transform: uppercase; color: var(--white);
  margin-bottom: 6px;
}
.form-sub { font-size: 15px; color: rgba(255,255,255,0.4); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.form-sub strong { color: var(--electric); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgrp { margin-bottom: 18px; }
.fgrp label {
  display: block; font-weight: 700; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 7px;
}
.fgrp input, .fgrp select, .fgrp textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(66,165,245,0.2);
  border-radius: 4px;
  font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--white);
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.fgrp input::placeholder, .fgrp textarea::placeholder { color: rgba(255,255,255,0.25); }
.fgrp input:focus, .fgrp select:focus, .fgrp textarea:focus {
  border-color: var(--electric); background: rgba(66,165,245,0.08);
}
.fgrp select { color: rgba(255,255,255,0.7); }
.fgrp select option { background: #0d2347; color: var(--white); }
.fgrp textarea { min-height: 88px; resize: vertical; }
.submit-btn {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--bright) 100%);
  color: var(--white); border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; margin-top: 8px;
  box-shadow: 0 6px 30px rgba(21,101,192,0.5);
  transition: all 0.2s; position: relative; overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}
.submit-btn:hover::before { left: 100%; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(66,165,245,0.6); }
.form-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 12px; }

/* ===== AREA ===== */
.area-section {
  background: var(--brand);
  padding: 48px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.area-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 30px,
    rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px
  );
}
.area-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.area-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 36px; text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-pill {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 30px;
  transition: all 0.2s;
}
.area-pill:hover { background: rgba(255,255,255,0.22); transform: scale(1.04); }

/* ===== FOOTER ===== */
.footer {
  background: #030810;
  padding: 72px 24px 32px;
  border-top: 4px solid var(--brand);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--electric), var(--brand), var(--electric), transparent);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr;
  gap: 64px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px;
  align-items: start;
}
.footer-logo-wrap {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 20px; margin-bottom: 28px;
}
.footer-logo {
  width: 160px; height: 160px;
  border-radius: 50%; object-fit: cover;
  border: 4px solid var(--electric);
  box-shadow: 0 0 40px rgba(66,165,245,0.3), 0 0 80px rgba(21,101,192,0.15);
}
.footer-brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 34px;
  text-transform: uppercase; color: var(--white); line-height: 1.05;
}
.footer-brand-text span { color: var(--electric); }
.footer-tagline-text {
  font-size: 15px; color: rgba(255,255,255,0.45);
  letter-spacing: 2px; font-style: italic; margin-top: 4px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 14px; }
.footer-contacts p {
  font-size: 17px; color: rgba(255,255,255,0.7);
  line-height: 1.5; display: flex; align-items: center; gap: 10px;
}
.footer-contacts a {
  color: var(--electric); text-decoration: none;
  font-weight: 700; font-size: 20px;
  transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--white); }
.fcol h5 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px;
  text-transform: uppercase; letter-spacing: 2px; color: var(--white);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 3px solid var(--brand);
  display: block;
}
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fcol ul li { font-size: 17px; color: rgba(255,255,255,0.65); }
.fcol ul li a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 0.2s; font-weight: 500;
}
.fcol ul li a:hover { color: var(--electric); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 8px;
}
.footer-bottom p, .footer-bottom span {
  font-size: 15px; color: rgba(255,255,255,0.35); font-weight: 500;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(0,50,20,0.95); color: #5dff72;
  padding: 16px 32px; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px;
  border: 1px solid rgba(93,255,114,0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 9999; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 1100;
}
.hamburger span {
  display: block; height: 3px; border-radius: 2px;
  background: var(--white); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1050;
  background: rgba(6,13,26,0.98); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  padding: 80px 32px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 32px; text-transform: uppercase; letter-spacing: 2px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--electric); }
.mobile-menu .mob-cta {
  background: linear-gradient(135deg, var(--brand), var(--bright));
  padding: 16px 40px; border-radius: 4px; margin-top: 12px;
  font-size: 28px; color: var(--white) !important;
  box-shadow: 0 6px 30px rgba(21,101,192,0.5);
}
.mobile-menu .mob-phone {
  font-size: 26px; color: var(--electric) !important; letter-spacing: 1px;
}

/* ===== RESPONSIVE — TABLET 768px ===== */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 0 16px; height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding-top: 64px; }
  .hero-logo {
    width: 220px; height: 220px;
    border-width: 3px;
  }
  .hero h1 { font-size: clamp(52px, 13vw, 80px); }
  .hero-sub { font-size: 20px; letter-spacing: 4px; }
  .hero-tagline { font-size: 13px; letter-spacing: 2px; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 36px; }
  .btn-splash, .btn-ghost { width: 100%; max-width: 320px; text-align: center; font-size: 18px; padding: 15px 24px; }
  .trust-bar { gap: 16px; padding-top: 28px; }
  .trust-icon-wrap { width: 36px; height: 36px; font-size: 16px; }
  .trust-text { font-size: 12px; }

  /* Wave / Strip */
  .wave-divider { display: none; }
  .services-strip { padding: 16px; }
  .strip-inner { gap: 6px; }
  .strip-text { font-size: 17px; }
  .strip-sub { font-size: 12px; letter-spacing: 1px; text-align: center; }

  /* Before/After */
  .ba-section { padding: 56px 16px; }
  .ba-grid { grid-template-columns: 1fr; gap: 20px; }
  .ba-photos { grid-template-columns: 1fr 1fr; }
  .ba-service-name { font-size: 16px; }

  /* Stats */
  .stats-band { padding: 32px 16px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 44px; }
  .stat-lbl { font-size: 11px; letter-spacing: 2px; }

  /* Services */
  .services-section { padding: 56px 16px; }
  .svcs-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-card { padding: 20px 18px; }

  /* Why Us */
  .why-section { padding: 56px 16px; }
  .reasons-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Process */
  .process-section { padding: 56px 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .step { padding: 0; display: flex; gap: 20px; align-items: flex-start; text-align: left; }
  .step-circle { margin: 0; flex-shrink: 0; width: 56px; height: 56px; font-size: 22px; }

  /* Booking */
  .booking-section { padding: 56px 16px; }
  .booking-wrap { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 28px 20px; }
  .frow { grid-template-columns: 1fr; }
  .phone-card a { font-size: 24px; }
  .submit-btn { font-size: 18px; padding: 16px; }

  /* Section labels / titles */
  .section-title { font-size: clamp(32px, 8vw, 52px); }
  .section-desc { font-size: 15px; margin-bottom: 36px; }

  /* Area */
  .area-section { padding: 40px 16px; }
  .area-title { font-size: 24px; }
  .area-pills { gap: 8px; }
  .area-pill { font-size: 13px; padding: 7px 14px; }

  /* Footer */
  .footer { padding: 48px 16px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-logo { width: 110px; height: 110px; }
  .footer-brand-text { font-size: 26px; }
  .footer-logo-wrap { flex-direction: row; align-items: center; gap: 16px; }
  .footer-contacts p { font-size: 15px; }
  .footer-contacts a { font-size: 17px; }
  .fcol h5 { font-size: 17px; }
  .fcol ul li { font-size: 15px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom p, .footer-bottom span { font-size: 13px; }
}

/* ===== RESPONSIVE — PHONE 480px ===== */
@media (max-width: 480px) {
  .nav-brand { font-size: 16px; }
  .nav-logo { width: 44px; height: 44px; }

  .hero-logo { width: 180px; height: 180px; }
  .hero h1 { font-size: clamp(46px, 14vw, 64px); }

  /* Trust bar — 2x2 grid on small phones */
  .trust-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; padding-top: 20px;
  }
  .trust-item { justify-content: flex-start; }

  /* Before/After photos stack vertically on tiny screens */
  .ba-photos { grid-template-columns: 1fr; }
  .ba-label-row { flex-wrap: wrap; gap: 8px; }

  /* Stats 2-col stays, just tighter */
  .stat-num { font-size: 38px; }
  .stat-block { padding: 20px 12px; }

  /* Process stays horizontal with icon + text */
  .step-circle { width: 48px; height: 48px; font-size: 18px; }

  /* Booking phone number fits */
  .phone-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .phone-card a { font-size: 28px; }

  /* Toast fits phone */
  .toast { font-size: 15px; padding: 14px 20px; white-space: normal; text-align: center; width: 90%; }
}

/* ===== SERVICE AREAS ===== */
.areas-section {
  background: var(--deep);
  padding: 90px 24px;
  position: relative;
}
.areas-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--electric), var(--brand), var(--electric), transparent);
}
.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}
.area-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(66,165,245,0.18);
  border-radius: 8px;
  padding: 28px 26px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.area-card:hover {
  border-color: rgba(66,165,245,0.45);
  transform: translateY(-3px);
}
.area-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px; text-transform: uppercase;
  color: var(--electric); margin-bottom: 12px; line-height: 1.15;
}
.area-card-desc {
  font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7;
  margin-bottom: 18px;
}
.area-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.area-tag {
  background: transparent;
  border: 1px solid rgba(66,165,245,0.35);
  color: rgba(255,255,255,0.65);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 0.5px;
  padding: 5px 12px; border-radius: 30px;
  transition: all 0.2s;
}
.area-card:hover .area-tag {
  border-color: rgba(66,165,245,0.6);
  color: var(--electric);
}
@media (max-width: 768px) {
  .area-cards-grid { grid-template-columns: 1fr; }
  .area-card-title { font-size: 20px; }
}

