/* ============================================================
   HydroRinse Exterior Cleaning - Main Stylesheet
   Colors: Navy #0D2D6B | Red #CC1616 | White #FFFFFF
   ============================================================ */

:root {
  --navy: #0D2D6B;
  --navy-light: #1A4DA8;
  --red: #CC1616;
  --red-dark: #A50F0F;
  --white: #FFFFFF;
  --off-white: #F4F7FC;
  --light-gray: #E8EDF5;
  --mid-gray: #6B7A99;
  --dark: #0A0F1E;
  --text: #1C2340;
  --shadow: 0 4px 24px rgba(13, 45, 107, 0.12);
  --shadow-lg: 0 12px 48px rgba(13, 45, 107, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-title {
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--mid-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(204, 22, 22, 0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 22, 22, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 45, 107, 0.3);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(13,45,107,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.nav-logo-text span:first-child em {
  font-style: normal;
  color: var(--red);
}
.nav-logo-text span:last-child {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

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

.nav-links a {
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--off-white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.nav-phone:hover { color: var(--red); }
.nav-phone i { color: var(--red); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--light-gray);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 1rem;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--off-white);
  color: var(--navy);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

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

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #050F28 0%, #0D2D6B 50%, #0A1F4E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26, 77, 168, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(204, 22, 22, 0.15) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
  50% { transform: translateY(-30px) translateX(10px); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge i { color: var(--red); font-size: 0.75rem; }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #4a9eff, #cc3333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SITE BANNER (full-width brand image, all pages)
   ============================================================ */

.site-banner {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: 75px;
}

.site-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   PAGE TITLE BAR (below banner on inner pages)
   ============================================================ */

.page-title-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
  padding: 2rem 2rem 1.75rem;
  text-align: center;
}

.page-title-bar h1 {
  color: var(--navy);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.page-title-bar p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: 90px 2rem;
}

.section-alt {
  background: var(--off-white);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

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

/* ============================================================
   SERVICES OVERVIEW (Home)
   ============================================================ */

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,45,107,0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--off-white), var(--light-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--mid-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .learn-more { gap: 0.6rem; }

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

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

.feature-item {
  text-align: center;
  padding: 2rem 1.25rem;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  margin: 0 auto 1.25rem;
}

.feature-item h3 {
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1A4DA8 100%);
  padding: 70px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(204, 22, 22, 0.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  font-weight: 500;
}
.cta-banner-phone a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.cta-banner-phone a:hover { color: #ff8080; }

/* ============================================================
   SERVICES PAGE - Detail Cards
   ============================================================ */

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

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

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

.service-detail-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.service-detail-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(0deg, rgba(13,45,107,0.6), transparent);
}

.service-detail-body {
  padding: 1.75rem;
}

.service-detail-body h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-detail-body p {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.3rem 0;
}

.service-includes li i {
  color: var(--red);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   CLIENT TYPES
   ============================================================ */

.client-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.client-type-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-gray);
  background: var(--white);
  transition: var(--transition);
}

.client-type-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.client-type-card i {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.client-type-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.client-type-card p {
  color: var(--mid-gray);
  font-size: 0.9rem;
}

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

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.reviews-score {
  text-align: center;
}

.reviews-score .score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.reviews-score .score-label {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-top: 0.25rem;
}

.stars-display {
  display: flex;
  gap: 0.2rem;
  color: #f5a623;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.review-meta h4 {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}

.review-meta span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  color: #f5a623;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

/* Areas We Cover */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.3rem;
  border-radius: 50px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.area-chip i { color: var(--red); }

.area-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.area-chip:hover i { color: var(--white); }

.review-service-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-top: 1rem;
}

/* Review Form */
.review-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  max-width: 680px;
  margin: 0 auto;
}

.review-form-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.review-form-card > p {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.star-select {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.star-select input { display: none; }

.star-select label {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.star-select input:checked ~ label,
.star-select label:hover,
.star-select label:hover ~ label {
  color: #f5a623;
}

/* ============================================================
   FORM STYLES
   ============================================================ */

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.form-group label .required {
  color: var(--red);
  margin-left: 0.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,45,107,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b8cc;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230D2D6B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #81c784;
  color: #2e7d32;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
  align-items: center;
  gap: 0.5rem;
}

.form-error-msg {
  display: none;
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #c62828;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-item-body strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 0.2rem;
}

.contact-item-body a,
.contact-item-body p {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.contact-item-body a:hover { color: var(--red); }

.contact-social h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

.contact-form-card h3 {
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}

.contact-form-card > p {
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

.footer-brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 6px 10px;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 240px;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--navy);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

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

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col ul a i { font-size: 0.65rem; color: var(--red); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   UTILITIES
   ============================================================ */

.loading-placeholder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton {
  background: linear-gradient(90deg, var(--light-gray) 25%, var(--off-white) 50%, var(--light-gray) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.no-reviews {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--mid-gray);
}
.no-reviews i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--light-gray);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .nav-hamburger { display: flex; }
  .nav-phone { display: none; }
  .nav-cta .nav-phone-mobile {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .section { padding: 60px 1.25rem; }
  .hero { padding: 100px 1.25rem 60px; }
  .hero-stats { gap: 2rem; }
  .hero-stat strong { font-size: 1.8rem; }
  .cta-banner { padding: 50px 1.25rem; }
  .reviews-summary { gap: 1.5rem; }
}

/* ============================================================
   HERO — light background (banner image sits above)
   ============================================================ */

.hero {
  background: var(--off-white) !important;
  min-height: unset !important;
  padding: 60px 2rem 70px !important;
}

.hero::before { display: none; }
.hero-particles { display: none; }
.hero-scroll { display: none; }

.hero h1 { color: var(--navy) !important; -webkit-text-fill-color: var(--navy) !important; }
.hero-desc { color: var(--mid-gray) !important; }

.hero-badge {
  background: rgba(13,45,107,0.07) !important;
  border-color: rgba(13,45,107,0.15) !important;
  color: var(--navy) !important;
  backdrop-filter: none !important;
}

.hero-stat strong { color: var(--navy) !important; }
.hero-stat span   { color: var(--mid-gray) !important; }

/* ============================================================
   PROFESSIONAL REFINEMENTS
   Sharper corners, no cartoon animations, tighter typography
   ============================================================ */

/* Tighter global radius */
:root {
  --radius: 6px;
  --radius-lg: 10px;
}

/* Hero headline — single colour, tight weight */
.hero h1 {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  background-clip: unset;
  color: white;
  font-weight: 800;
}

/* Hero badge — flat border, not pill */
.hero-badge { border-radius: 4px; }

/* Buttons — sharp rectangle, no bounce */
.btn { border-radius: 5px; letter-spacing: 0.01em; }
.btn-primary { box-shadow: none; }
.btn-primary:hover { transform: none; box-shadow: none; background: var(--red-dark); }
.btn-secondary:hover { transform: none; }
.btn-navy { box-shadow: none; }
.btn-navy:hover { transform: none; }
.btn-outline-white:hover { transform: none; }

/* Nav */
.nav-links a { border-radius: 4px; }
.mobile-menu a { border-radius: 4px; }

/* Service cards */
.service-card { border-radius: 8px; }
.service-card:hover { transform: none; box-shadow: var(--shadow-lg); }
.service-icon { width: 42px; height: 42px; border-radius: 7px; font-size: 1.1rem; }

/* Feature section */
.feature-icon { width: 50px; height: 50px; border-radius: 10px; font-size: 1.35rem; margin-bottom: 1rem; }

/* Steps */
.step-icon-wrap { width: 60px; height: 60px; border-radius: 10px; font-size: 1.4rem; }
.step-icon-wrap:hover { transform: none; box-shadow: var(--shadow); }
.step-number { border-radius: 3px; }

/* Client cards */
.client-type-card { border-radius: 8px; }
.client-type-card:hover { transform: none; box-shadow: var(--shadow); }
.client-type-card i { font-size: 2rem; }

/* Gallery preview tiles */
.gallery-preview-card { border-radius: 6px; }
.gallery-preview-card:hover { transform: none; box-shadow: 0 8px 32px rgba(13,45,107,0.25); }
.gp-icon-wrap { border-radius: 6px; }
.gallery-preview-card.gp-large .gp-icon-wrap { border-radius: 8px; }

/* Tackle items */
.tackle-icon { border-radius: 5px; width: 34px; height: 34px; font-size: 0.85rem; }
.tackle-item:hover { transform: none; }

/* Tags & badges */
.review-service-tag { border-radius: 3px; }
.gallery-filter-btn { border-radius: 4px; }
.ph-badge { border-radius: 3px; }

/* Result badges */
.result-badge { border-radius: 8px; }
.result-badge:hover { transform: none; }
.result-badge-icon { border-radius: 6px; }

/* Power stat items */
.power-stat-item { border-radius: 4px; }

/* Social */
.social-link { border-radius: 5px; }
.social-link:hover { transform: none; }
.footer-social a { border-radius: 5px; }

/* Cards */
.review-card { border-radius: 8px; }
.review-card:hover { transform: none; box-shadow: var(--shadow-lg); }
.review-form-card { border-radius: 8px; }
.contact-form-card { border-radius: 8px; }
.gallery-coming-soon { border-radius: 8px; }
.ph-card { border-radius: 8px; }
.service-detail-card { border-radius: 8px; }
.service-detail-card:hover { transform: none; }
.ba-card { border-radius: 8px; }
.ba-card:hover { transform: none; box-shadow: var(--shadow-lg); }

/* Contact */
.contact-item-icon { border-radius: 7px; }

/* Kill cartoony animations */
.droplet                    { animation: none !important; opacity: 0.4; }
.gp-water-drops span        { animation: none !important; opacity: 0.1; }
.ph-spray span              { display: none !important; }
.spray-line                 { animation: none !important; stroke-dashoffset: 0 !important; }

/* Equipment strip (replaces power-strip SVG layout) */
.equip-strip {
  background: linear-gradient(135deg, #050F28 0%, #0D2D6B 60%, #0A1F4E 100%);
  padding: 70px 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.equip-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .equip-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .equip-strip-divider { display: none; }
}

.equip-strip-divider {
  background: rgba(255,255,255,0.1);
  height: 140px;
  align-self: center;
}

.equip-strip-left {
  padding-right: 4rem;
}

.equip-strip-right {
  padding-left: 4rem;
}

@media (max-width: 860px) {
  .equip-strip-left,
  .equip-strip-right { padding: 0; }
}

.equip-strip-left h2 {
  color: white;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.equip-strip-left p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.equip-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.equip-stat {
  background: rgba(255,255,255,0.04);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: var(--transition);
}

.equip-stat:hover {
  background: rgba(255,255,255,0.08);
}

.equip-stat i {
  font-size: 1.1rem;
  color: #4FC3F7;
  margin-bottom: 0.2rem;
}

.equip-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.equip-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* Professional before/after cards */
.ba-pro-card {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.ba-pro-card:hover { box-shadow: var(--shadow-lg); }

.ba-pro-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 220px;
}

.ba-pro-before {
  background: linear-gradient(145deg, #1a1a2e, #2d2d44);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-pro-after {
  background: linear-gradient(145deg, #f0f4fa, #e8edf5);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-pro-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  width: 36px;
  position: relative;
  z-index: 2;
  box-shadow: 2px 0 8px rgba(0,0,0,0.08), -2px 0 8px rgba(0,0,0,0.08);
}

.ba-pro-arrow i {
  font-size: 0.7rem;
  color: var(--red);
}

.ba-pro-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  display: inline-flex;
  align-self: flex-start;
}

.before-tag {
  background: rgba(204,22,22,0.15);
  color: #ff8080;
  border: 1px solid rgba(204,22,22,0.25);
}

.after-tag {
  background: rgba(13,45,107,0.12);
  color: var(--navy);
  border: 1px solid rgba(13,45,107,0.2);
}

.ba-pro-icon-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ba-pro-icon-row i:first-child {
  font-size: 1.3rem;
}

.ba-pro-icon-row strong {
  font-size: 0.9rem;
  font-weight: 700;
}

.ba-pro-before .ba-pro-icon-row { color: rgba(255,255,255,0.9); }
.ba-pro-after .ba-pro-icon-row { color: var(--navy); }

.ba-pro-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.ba-pro-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.ba-pro-before .ba-pro-list li { color: rgba(255,255,255,0.65); }
.ba-pro-after  .ba-pro-list li { color: var(--text); }

.ba-pro-before .ba-pro-list li i { color: #ff6b6b; font-size: 0.65rem; flex-shrink: 0; }
.ba-pro-after  .ba-pro-list li i { color: #27ae60; font-size: 0.65rem; flex-shrink: 0; }

.ba-pro-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--light-gray);
}

.ba-pro-caption > i { font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.ba-pro-caption strong { display: block; font-size: 0.88rem; color: var(--navy); font-weight: 600; }
.ba-pro-caption span { font-size: 0.76rem; color: var(--mid-gray); }

/* Page visual sections (used on inner pages) */
.page-stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 28px 2rem;
}

.page-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.page-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-stat-item i {
  font-size: 1.3rem;
  color: var(--navy);
}

.page-stat-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.page-stat-item span {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

.page-divider {
  width: 1px;
  height: 36px;
  background: var(--light-gray);
}

@media (max-width: 600px) {
  .page-divider { display: none; }
  .page-stats-inner { justify-content: center; }
}

/* Two-column visual section */
.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 760px) {
  .split-visual { grid-template-columns: 1fr; gap: 2.5rem; }
}

.split-visual-text h2 { color: var(--navy); margin-bottom: 0.75rem; font-weight: 600; letter-spacing: -0.02em; }
.split-visual-text p  { color: var(--mid-gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }

.split-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.split-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.split-checklist li i {
  color: var(--navy);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.split-visual-graphic {
  background: linear-gradient(135deg, #050F28, #0D2D6B);
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svgraphic-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  border-left: 3px solid;
  transition: var(--transition);
}

.svgraphic-row:hover { background: rgba(255,255,255,0.1); }
.svgraphic-row:nth-child(odd)  { border-left-color: var(--navy-light); }
.svgraphic-row:nth-child(even) { border-left-color: var(--red); }

.svgraphic-row i { font-size: 1.2rem; color: #4FC3F7; flex-shrink: 0; }
.svgraphic-row strong { display: block; font-size: 0.9rem; font-weight: 700; color: white; }
.svgraphic-row span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* Reviews page visual banner */
.reviews-banner {
  background: linear-gradient(135deg, #050F28 0%, #0D2D6B 100%);
  padding: 50px 2rem;
}

.reviews-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

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

.reviews-banner-stat {
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.reviews-banner-stat:hover { background: rgba(255,255,255,0.08); }

.reviews-banner-stat strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.reviews-banner-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.reviews-banner-stat i {
  font-size: 1.5rem;
  color: #4FC3F7;
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================================
   POWER STRIP
   ============================================================ */

.power-strip {
  background: linear-gradient(135deg, #050F28 0%, #0D2D6B 60%, #0A1F4E 100%);
  padding: 70px 2rem;
  overflow: hidden;
}

.power-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 860px) {
  .power-strip-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .power-graphic { order: 2; }
  .power-stats   { order: 1; }
}

/* SVG Jet Wash Graphic */
.jetwash-svg {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 8px 32px rgba(79,195,247,0.25));
}

/* Spray line animation */
.spray-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: spray-in 0.8s ease forwards;
}
.s1 { animation-delay: 0.05s; }
.s2 { animation-delay: 0.1s;  }
.s3 { animation-delay: 0.15s; }
.s4 { animation-delay: 0.0s;  }
.s5 { animation-delay: 0.15s; }
.s6 { animation-delay: 0.1s;  }
.s7 { animation-delay: 0.05s; }

@keyframes spray-in {
  to { stroke-dashoffset: 0; }
}

.droplet {
  animation: droplet-pulse 2.5s ease-in-out infinite;
}
.d1 { animation-delay: 0s;    }
.d2 { animation-delay: 0.4s;  }
.d3 { animation-delay: 0.8s;  }
.d4 { animation-delay: 0.2s;  }
.d5 { animation-delay: 0.6s;  }
.d6 { animation-delay: 1.0s;  }
.d7 { animation-delay: 1.4s;  }

@keyframes droplet-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1);    }
  50%       { opacity: 0.9; transform: scale(1.4);  }
}

/* Power stats side */
.power-stats h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.power-stats > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.power-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.power-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  backdrop-filter: blur(8px);
}

.power-stat-item i {
  font-size: 1.25rem;
  color: #4FC3F7;
  flex-shrink: 0;
}

.power-stat-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.power-stat-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.steps-container {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-item:hover .step-icon-wrap {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-item h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--mid-gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 68px;
  color: var(--light-gray);
  font-size: 0.7rem;
  gap: 2px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .step-connector { display: none; }
  .steps-container { gap: 2rem; }
  .step-item { max-width: 100%; min-width: 140px; }
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 860px) {
  .ba-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 3rem; }
}

.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  background: var(--white);
  transition: var(--transition);
}

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

.ba-split {
  display: flex;
  height: 200px;
  position: relative;
}

.ba-before,
.ba-after {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Surface textures */
.ba-surface {
  position: absolute;
  inset: 0;
}

/* Dirty driveway */
.driveway-dirty {
  background: #4a3f35;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(0,0,0,0.15) 18px, rgba(0,0,0,0.15) 20px),
    repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(0,0,0,0.1) 18px, rgba(0,0,0,0.1) 20px);
}

/* Clean driveway */
.driveway-clean {
  background: #c8bfb4;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(255,255,255,0.3) 18px, rgba(255,255,255,0.3) 20px),
    repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(255,255,255,0.2) 18px, rgba(255,255,255,0.2) 20px);
}

/* Dirty roof */
.roof-dirty {
  background: linear-gradient(180deg, #2d2a24 0%, #3d3830 40%, #2a2520 100%);
  background-image:
    repeating-linear-gradient(160deg, transparent, transparent 12px, rgba(0,0,0,0.2) 12px, rgba(0,0,0,0.2) 14px);
}

/* Clean roof */
.roof-clean {
  background: linear-gradient(180deg, #5a524a 0%, #6b6259 40%, #5a524a 100%);
  background-image:
    repeating-linear-gradient(160deg, transparent, transparent 12px, rgba(255,255,255,0.15) 12px, rgba(255,255,255,0.15) 14px);
}

/* Dirty patio */
.patio-dirty {
  background: #3e3830;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(0,0,0,0.2) 22px, rgba(0,0,0,0.2) 24px),
    repeating-linear-gradient(90deg, transparent, transparent 22px, rgba(0,0,0,0.15) 22px, rgba(0,0,0,0.15) 24px);
}

/* Clean patio */
.patio-clean {
  background: #b8a898;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(255,255,255,0.25) 22px, rgba(255,255,255,0.25) 24px),
    repeating-linear-gradient(90deg, transparent, transparent 22px, rgba(255,255,255,0.2) 22px, rgba(255,255,255,0.2) 24px);
}

.ba-grime-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 40% 60%, rgba(30,50,10,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 30%, rgba(10,30,10,0.4) 0%, transparent 60%);
}

.ba-moss-patches span {
  position: absolute;
  border-radius: 50%;
  background: rgba(30,90,20,0.6);
}
.ba-moss-patches span:nth-child(1) { width:40px; height:25px; top:20%; left:15%; }
.ba-moss-patches span:nth-child(2) { width:55px; height:30px; top:55%; left:45%; }
.ba-moss-patches span:nth-child(3) { width:30px; height:20px; top:30%; left:70%; }

.ba-weed-lines span {
  position: absolute;
  background: rgba(20,80,10,0.5);
}
.ba-weed-lines span:nth-child(1) { width:2px; height:100%; top:0; left:30%; }
.ba-weed-lines span:nth-child(2) { width:2px; height:100%; top:0; left:55%; }
.ba-weed-lines span:nth-child(3) { width:100%; height:2px; top:45%; left:0; }

.ba-sparkle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,0.15), transparent);
}

/* Divider */
.ba-divider {
  position: relative;
  width: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: white;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-divider-badge {
  position: relative;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--navy);
}

.ba-label {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.ba-label-before {
  background: rgba(180,30,30,0.85);
  color: white;
}

.ba-label-after {
  background: rgba(20,120,50,0.85);
  color: white;
}

.ba-caption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--light-gray);
}

.ba-caption > i {
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.ba-caption strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.2;
}

.ba-caption span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* Result badges */
.result-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

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

.result-badge {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.result-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.result-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  margin: 0 auto 0.75rem;
}

.result-badge strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.result-badge span {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* ============================================================
   WHAT WE TACKLE
   ============================================================ */

.tackle-section {
  background: var(--white);
}

.tackle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 860px) { .tackle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tackle-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; } }

.tackle-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--light-gray);
  transition: var(--transition);
}

.tackle-item:hover {
  border-color: var(--navy);
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.tackle-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
}

.tackle-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   GALLERY PREVIEW (Home page)
   ============================================================ */

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

@media (max-width: 700px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.gallery-preview-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--gp-color), var(--gp-color2));
  aspect-ratio: 1;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-preview-card.gp-large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-preview-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gp-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.gp-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.25rem;
}

.gallery-preview-card.gp-large .gp-icon-wrap {
  width: 72px;
  height: 72px;
  font-size: 1.9rem;
  border-radius: 20px;
}

.gp-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.gallery-preview-card.gp-large .gp-label {
  font-size: 1.1rem;
}

.gp-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Animated water drops on large cards */
.gp-water-drops span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  animation: gp-drop 3s ease-in-out infinite;
}

.gp-water-drops span:nth-child(1) { width:6px;  height:6px;  top:15%; left:10%; animation-delay:0s;    }
.gp-water-drops span:nth-child(2) { width:4px;  height:4px;  top:30%; left:85%; animation-delay:0.6s;  }
.gp-water-drops span:nth-child(3) { width:8px;  height:8px;  top:70%; left:20%; animation-delay:1.2s;  }
.gp-water-drops span:nth-child(4) { width:5px;  height:5px;  top:80%; left:75%; animation-delay:1.8s;  }
.gp-water-drops span:nth-child(5) { width:4px;  height:4px;  top:50%; left:50%; animation-delay:2.4s;  }

@keyframes gp-drop {
  0%, 100% { transform: translateY(0) scale(1);   opacity: 0.3; }
  50%       { transform: translateY(-8px) scale(1.3); opacity: 0.8; }
}

/* Photo-backed preview cards */
.gp-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-preview-card:hover .gp-photo-img {
  transform: scale(1.07);
}

.gp-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,16,36,0) 40%, rgba(8,16,36,0.88) 100%);
}

.gp-badge-icon {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  z-index: 1;
}

.gp-inner-bottom {
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

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

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

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.gallery-filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-coming-soon {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--light-gray);
}

.gallery-coming-soon-icon {
  font-size: 4rem;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  display: block;
}

.gallery-coming-soon h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.gallery-coming-soon p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.gallery-coming-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.gallery-item-inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,45,107,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background: rgba(255,255,255,0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.gallery-zoom {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-zoom:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Placeholder gallery cards */
.placeholder-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .placeholder-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .placeholder-gallery-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

.ph-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ph-col), var(--ph-col2));
  overflow: hidden;
  transition: var(--transition);
}

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

.ph-card-inner {
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ph-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 1.25rem;
}

.ph-card-inner h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ph-card-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ph-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Water spray effect on placeholder cards */
.ph-spray span {
  position: absolute;
  width: 2px;
  border-radius: 1px;
  background: rgba(255,255,255,0.2);
  animation: ph-spray 2s ease-in-out infinite;
}
.ph-spray span:nth-child(1) { height:40px; top:10%; right:8%;  animation-delay:0s;    }
.ph-spray span:nth-child(2) { height:28px; top:25%; right:12%; animation-delay:0.5s;  }
.ph-spray span:nth-child(3) { height:35px; top:15%; right:5%;  animation-delay:1.0s;  }

@keyframes ph-spray {
  0%, 100% { opacity: 0.15; height: 30px; }
  50%       { opacity: 0.5;  height: 50px; }
}

/* ============================================================
   SUCCESS POPUP (Portcycles-style)
   ============================================================ */

.enquiry-success-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9000;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 360px;
  width: calc(100% - 4rem);
  transform: translateX(calc(-100% - 2rem));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  border-left: 4px solid var(--navy);
}

.enquiry-success-popup.show {
  transform: translateX(0);
  opacity: 1;
}

.esp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #2e7d32;
  flex-shrink: 0;
}

.esp-content { flex: 1; }

.esp-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.esp-text {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.esp-close {
  background: none;
  border: none;
  color: var(--mid-gray);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: var(--transition);
}

.esp-close:hover { color: var(--red); }

.esp-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: 0 0 0 var(--radius-lg);
  width: 100%;
  transform-origin: left;
  animation: esp-bar 6s linear forwards;
}

.enquiry-success-popup.show .esp-progress {
  animation-play-state: running;
}

@keyframes esp-bar {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}
