/*
Theme Name: ClearView
Theme URI: https://clearviewmv.com
Description: Custom WordPress theme for ClearView Window Cleaning & Pressure Washing — Martha's Vineyard. Built with brand guidelines: Outfit + Plus Jakarta Sans typography, ClearView Blue #157BB6 primary color.
Version: 1.0.0
Author: ClearView
Author URI: https://clearviewmv.com
Text Domain: clearview
Tags: business, service, custom
*/

/* ======================================================
   BRAND VARIABLES
   Primary Blue: #157BB6 (extracted from logo — brand guidelines)
   Dark Navy:    #1d313f (background/nav)
   Light Blue:   #59b3cf (accent/CTA)
   Teal:         #94d3c8 (secondary accent)
   Light Grey:   #f8f8f8 (section backgrounds)
   Fonts: Outfit (headings) + Plus Jakarta Sans (body)
   ====================================================== */

:root {
  --blue: #157BB6;
  --blue-dark: #0d5682;
  --dark: #1d313f;
  --grey: #373737;
  --white: #ffffff;
  --light-blue: #59b3cf;
  --teal: #94d3c8;
  --light-grey: #f8f8f8;
  --glacier: #E6F3FA;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ====== NAV ====== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--dark); height: 62px;
  display: flex; align-items: center; padding: 0 40px;
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 50px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: 0.12em;
  color: white; text-transform: uppercase; display: none;
}
.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-links > li > a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--teal); }
.nav-links > li > a.active,
.nav-links > li.current-menu-item > a,
.nav-links > li.current-menu-ancestor > a,
.nav-links > li.current-page-ancestor > a { color: var(--teal); }
.nav-dropdown,
.nav-links > li.menu-item-has-children { position: relative; }
.nav-dropdown > a,
.nav-links > li.menu-item-has-children > a { display: flex; align-items: center; gap: 5px; }
.dropdown-panel {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); background: var(--dark);
  border-top: 2px solid var(--light-blue); min-width: 240px;
  padding: 14px 0 8px; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.nav-dropdown:hover .dropdown-panel,
.nav-links > li.menu-item-has-children:hover .dropdown-panel { display: block; }
.dropdown-panel li { list-style: none; }
.dropdown-panel a {
  display: block; padding: 11px 20px;
  color: rgba(255,255,255,0.85) !important; text-decoration: none;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s;
}
.dropdown-panel a:hover,
.dropdown-panel a.active,
.dropdown-panel li.current-menu-item > a { background: rgba(89,179,207,0.15); color: var(--teal) !important; }
.nav-cta {
  background: var(--light-blue); color: white !important;
  padding: 10px 22px; text-decoration: none;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue); }
.hamburger {
  display: none; background: none; border: none;
  color: white; font-size: 22px; cursor: pointer; padding: 4px;
}
.mobile-nav {
  position: fixed; top: 62px; left: 0; right: 0;
  background: var(--dark); z-index: 999;
  max-height: calc(100vh - 62px); overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mob-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  display: block; color: rgba(255,255,255,0.9); text-decoration: none;
  padding: 14px 24px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a.indent { padding-left: 40px; background: rgba(0,0,0,0.15); }
.mobile-nav a:hover { background: rgba(89,179,207,0.15); }
.mobile-nav .mob-cta { background: var(--light-blue); text-align: center; }
.mob-services-toggle {
  width: 100%; background: none; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9); text-align: left;
  padding: 14px 24px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-body);
  transition: background 0.15s ease;
}
.mob-services-toggle:hover { background: rgba(89,179,207,0.12); }
.mob-services-toggle i { transition: transform 0.25s ease; font-size: 10px; }
.mob-services-toggle.open i { transform: rotate(180deg); }
.mob-services-panel { display: none; }
.mob-services-panel.open { display: block; }

/* ====== SHARED HERO (Service pages) ====== */
.hero {
  position: relative; min-height: 500px; height: auto; padding: 48px 0; margin-top: 62px;
  background-color: #0d1e2a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Crect width='120' height='120' fill='none' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Cline x1='60' y1='0' x2='60' y2='120' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Cline x1='0' y1='60' x2='120' y2='60' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Crect x='6' y='6' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='66' y='6' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='6' y='66' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='66' y='66' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,22,30,0.9) 0%, rgba(29,49,63,0.82) 55%, rgba(21,123,182,0.5) 100%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%; max-width: 1100px;
  margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 48px;
}
.hero-left { flex: 1; }
.hero-badge {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal); margin-bottom: 12px;
}
.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 42px); font-weight: 700; line-height: 1.15;
  color: white; margin-bottom: 16px; max-width: 480px;
  letter-spacing: -0.025em;
}
.hero-left p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.65; max-width: 420px; }

/* ====== HOMEPAGE HERO ====== */
.hero-home {
  position: relative; min-height: 560px; height: auto; padding: 40px 0; margin-top: 62px;
  background-color: #0d1e2a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Crect width='120' height='120' fill='none' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Cline x1='60' y1='0' x2='60' y2='120' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Cline x1='0' y1='60' x2='120' y2='60' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Crect x='6' y='6' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='66' y='6' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='6' y='66' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='66' y='66' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  display: flex; align-items: center;
}
.hero-home .hero-overlay {
  background: linear-gradient(105deg, rgba(10,22,30,0.92) 0%, rgba(29,49,63,0.82) 55%, rgba(21,123,182,0.6) 100%);
}
.hero-home .hero-left h1 { font-size: 44px; max-width: 460px; }
.hero-icons { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-icon-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: white; }
.icon-circle {
  width: 52px; height: 52px;
  border: 2px solid rgba(148,211,200,0.45); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 20px;
}
.hero-icon-item span {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; text-align: center; opacity: 0.85; line-height: 1.3;
}

/* ====== HERO FORM CARD ====== */
.hero-form-card {
  background: rgba(9,22,33,0.94); padding: 28px 30px 32px;
  width: 390px; flex-shrink: 0;
  border: 1px solid rgba(89,179,207,0.16);
  border-top: 3px solid var(--light-blue);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.55), 0 0 0 1px rgba(89,179,207,0.07);
  margin: 16px 0;
  align-self: flex-start;
}
.hero-form-card .form-title {
  color: white; font-size: 20px; margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(89,179,207,0.18);
}
.hero-form-card .form-title em { color: var(--teal); font-style: normal; }
.hero-form-card .fg label { color: rgba(255,255,255,0.6); }
.hero-form-card .fg input,
.hero-form-card .fg select {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: white;
}
.hero-form-card .fg input::placeholder { color: rgba(255,255,255,0.25); }
.hero-form-card .fg select option { background: var(--dark); color: white; }
.form-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.form-title em { font-style: normal; color: var(--light-blue); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fg { display: flex; flex-direction: column; gap: 3px; }
.fg.full { grid-column: 1 / -1; }
.fg label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--dark);
}
.fg input, .fg select, .fg textarea {
  border: 1px solid #d0d0d0; padding: 8px 10px;
  font-family: var(--font-body); font-size: 13px;
  color: #333; background: white; outline: none; width: 100%;
  transition: border-color 0.15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--light-blue); }
.fg select { appearance: none; cursor: pointer; }
.fg textarea { resize: vertical; min-height: 80px; }
.btn-form {
  grid-column: 1 / -1; width: 100%; background: var(--light-blue);
  color: white; border: none; padding: 13px 16px;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  cursor: pointer; margin-top: 4px; transition: background 0.2s;
}
.btn-form:hover { background: var(--blue); }

/* ====== PROOF BAR ====== */
.proof-bar {
  background: var(--dark); padding: 18px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.proof-score { font-family: var(--font-display); font-size: 50px; font-weight: 900; color: var(--teal); line-height: 1; }
.proof-stars { color: #ffc107; font-size: 22px; letter-spacing: 2px; }
.proof-divider { width: 1px; height: 42px; background: rgba(255,255,255,0.18); }
.proof-text { color: white; font-size: 15px; line-height: 1.55; }
.proof-text strong { color: var(--teal); }
.g-badge { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 600; }

/* ====== WELCOME SECTION (Homepage) ====== */
.welcome-section { padding: 80px 40px; }
.welcome-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 56px; align-items: center; }
.welcome-img { flex-shrink: 0; }
.welcome-img img { width: 490px; height: 360px; object-fit: cover; }
.welcome-text h2 {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 700; color: var(--dark);
  margin-bottom: 14px; line-height: 1.2; letter-spacing: -0.02em;
}
.welcome-text p { font-size: 16px; line-height: 1.7; color: #555; margin-bottom: 14px; }
.welcome-features { margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.wf-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--dark); font-weight: 600; }
.wf-item i { color: var(--blue); }
.btn-outline {
  display: inline-block; border: 2px solid var(--light-blue); color: var(--dark);
  padding: 12px 28px; text-decoration: none; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--light-blue); color: white; }

/* ====== WHY US (Homepage 4-grid) ====== */
.why-section { background: var(--light-grey); padding: 70px 40px; text-align: center; }
.why-section h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 48px;
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.3;
  letter-spacing: -0.02em;
}
.why-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-item { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.why-icon {
  width: 68px; height: 68px; background: var(--dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 26px;
}
.why-item h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark); }
.why-item p { font-size: 14px; color: #666; line-height: 1.6; }

/* ====== THANK YOU PAGE ====== */
.thankyou-section {
  min-height: calc(100vh - 62px);
  display: flex; align-items: center; justify-content: center;
  background-color: #0d1e2a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Crect width='120' height='120' fill='none' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Cline x1='60' y1='0' x2='60' y2='120' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Cline x1='0' y1='60' x2='120' y2='60' stroke='rgba(89,179,207,0.07)' stroke-width='1'/%3E%3Crect x='6' y='6' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='66' y='6' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='6' y='66' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3Crect x='66' y='66' width='48' height='48' fill='none' stroke='rgba(148,211,200,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  padding: 80px 40px;
  margin-top: 62px;
}
.thankyou-inner {
  text-align: center; max-width: 560px; margin: 0 auto;
}
.thankyou-icon {
  font-size: 64px; color: var(--teal);
  margin-bottom: 24px;
  opacity: 0;
  transform: scale(0.7);
  animation: thankyou-pop 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}
@keyframes thankyou-pop {
  to { opacity: 1; transform: scale(1); }
}
.thankyou-inner h1 {
  font-family: var(--font-display); font-size: 48px; font-weight: 700;
  color: white; margin-bottom: 20px; letter-spacing: -0.02em;
}
.thankyou-sub {
  font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7;
  margin-bottom: 16px;
}
.thankyou-note {
  font-size: 15px; color: var(--teal); font-weight: 600;
  margin-bottom: 36px;
}
@media (max-width: 480px) {
  .thankyou-inner h1 { font-size: 32px; }
  .thankyou-icon { font-size: 48px; }
}

/* ====== CTA BANNER ====== */
.cta-banner { background: var(--dark); padding: 44px 40px; text-align: center; }
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700; color: white; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.btn-teal {
  display: inline-block; background: var(--light-blue); color: white;
  padding: 14px 36px; text-decoration: none; font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.2s;
}
.btn-teal:hover { background: var(--blue); }

/* ====== FAQ ====== */
.faq-section { padding: 80px 40px; }
.faq-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 56px; align-items: flex-start; }
.faq-media { flex-shrink: 0; }
.faq-media img { width: 430px; height: 380px; object-fit: cover; }
.faq-content { flex: 1; }
.faq-content h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.faq-content.centered { max-width: 800px; margin: 0 auto; }
.faq-content.centered h2 { text-align: center; }
.faq-item { border-bottom: 1px solid #e0e0e0; background: white; margin-bottom: 2px; }
.faq-q {
  width: 100%; background: none; border: none; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-body); font-size: 15px;
  font-weight: 600; color: var(--dark); text-align: left;
}
.faq-section.standalone .faq-item { border: 1px solid #e0e0e0; margin-bottom: 2px; }
.faq-q i { color: var(--light-blue); font-size: 11px; transition: transform 0.25s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 20px 16px; font-size: 15px; line-height: 1.65; color: #555; }
.faq-item.open .faq-a { max-height: 400px; }

/* ====== TESTIMONIALS ====== */
.testimonials { background: var(--light-grey); padding: 80px 40px; text-align: center; }
.sec-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--blue); margin-bottom: 10px;
}
.testimonials h2 {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 700; color: var(--dark); margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.reviews-grid {
  max-width: 1100px; margin: 36px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left;
}
.review-card {
  background: white; padding: 26px 22px;
  border-top: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.reviewer-name { font-weight: 700; font-size: 16px; color: var(--dark); }
.review-source { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #777; }
.review-source .fa-google { color: #4285f4; }
.review-source .fa-facebook { color: #1877f2; }
.review-stars { color: #ffc107; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 14px; line-height: 1.65; color: #555; }

/* ====== COVERAGE ====== */
.coverage-section { padding: 60px 40px; }
.coverage-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 50px; align-items: center; }
.coverage-map { flex: 1; }
.coverage-map img { width: 100%; height: 370px; object-fit: cover; }
.coverage-info { width: 300px; flex-shrink: 0; }
.coverage-info h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.3;
  letter-spacing: -0.02em;
}
.coverage-info p { font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 12px; }
.coverage-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.coverage-list li {
  background: var(--light-grey); border-left: 3px solid var(--blue);
  padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--dark);
}

/* ====== READY CTA SECTION ====== */
.ready-section { background: var(--dark); padding: 60px 40px; }
.ready-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 56px; align-items: flex-start; }
.ready-text { flex: 1; }
.ready-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.ready-logo-row img { height: 40px; filter: brightness(0) invert(1); }
.ready-logo-row span { display: none; }
.ready-tagline {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; color: white; line-height: 1.3;
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: -0.01em;
}
.ready-phone { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--teal); text-decoration: none; display: block; margin-bottom: 14px; transition: color 0.2s; }
.ready-phone:hover { color: var(--light-blue); }
.ready-socials { display: flex; gap: 14px; }
.ready-socials a { color: rgba(255,255,255,0.65); font-size: 20px; text-decoration: none; transition: color 0.2s; }
.ready-socials a:hover { color: var(--teal); }
.ready-form-wrap {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 26px 24px; width: 380px; flex-shrink: 0;
}
.ready-form-wrap .form-title { color: white; }
.ready-form-wrap .form-title em { color: var(--teal); }
.ready-form-wrap .fg label { color: rgba(255,255,255,0.72); }
.ready-form-wrap .fg input,
.ready-form-wrap .fg select {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: white;
}
.ready-form-wrap .fg input::placeholder { color: rgba(255,255,255,0.3); }
.ready-form-wrap .fg select option { background: var(--dark); color: white; }

/* ====== WHY SECTION (Service pages — image+text) ====== */
.why-service-section { padding: 80px 40px; }
.why-service-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 56px; align-items: center; }
.why-img { flex-shrink: 0; }
.why-img img { width: 480px; height: 360px; object-fit: cover; }
.why-text h2 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.3;
  letter-spacing: -0.02em;
}
.why-text p { font-size: 16px; line-height: 1.7; color: #555; margin-bottom: 14px; }
.why-list { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: #444; line-height: 1.5; }
.why-list li i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }

/* ====== STEPS SECTION ====== */
.steps-section { background: var(--light-grey); padding: 64px 40px; text-align: center; }
.steps-section h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.steps-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--dark);
  color: var(--teal); font-family: var(--font-display); font-size: 26px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step-item h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark); }
.step-item p { font-size: 14px; color: #666; line-height: 1.6; }

/* ====== FEATURES GRID ====== */
.features-section { padding: 80px 40px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-section h2 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700; color: var(--dark); margin-bottom: 36px;
  text-align: center; letter-spacing: -0.02em;
}
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.feature-card { display: flex; gap: 20px; align-items: flex-start; }
.feature-card img { width: 220px; height: 160px; object-fit: cover; flex-shrink: 0; }
.feature-card-body h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.feature-card-body p { font-size: 14px; line-height: 1.65; color: #555; }

/* ====== CONTACT HERO ====== */
.contact-hero {
  position: relative; margin-top: 62px;
  background: #0d1e2a center/cover no-repeat;
  padding: 60px 40px;
}
.contact-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,22,30,0.93) 0%, rgba(29,49,63,0.88) 60%, rgba(21,123,182,0.6) 100%);
}
.contact-hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Cellipse cx='300' cy='200' rx='280' ry='180' fill='none' stroke='%2359b3cf' stroke-width='1'/%3E%3Cellipse cx='300' cy='200' rx='230' ry='140' fill='none' stroke='%2359b3cf' stroke-width='1'/%3E%3Cellipse cx='300' cy='200' rx='180' ry='100' fill='none' stroke='%2359b3cf' stroke-width='1'/%3E%3Cellipse cx='300' cy='200' rx='130' ry='60' fill='none' stroke='%2359b3cf' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 600px 400px;
}
.contact-hero-inner {
  position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
  display: flex; gap: 48px; align-items: flex-start;
}
.contact-info { flex: 1; color: white; }
.contact-info h1 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 700; line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.contact-info .sub { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 380px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-detail .ci-icon {
  width: 42px; height: 42px;
  background: rgba(89,179,207,0.2); border: 1px solid rgba(89,179,207,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 16px; flex-shrink: 0;
}
.contact-detail .ci-text { font-size: 15px; color: white; }
.contact-detail .ci-text a { color: white; text-decoration: none; }
.contact-detail .ci-text a:hover { color: var(--teal); }
.contact-socials { display: flex; gap: 14px; margin-top: 24px; }
.contact-socials a { color: rgba(255,255,255,0.65); font-size: 20px; text-decoration: none; transition: color 0.2s; }
.contact-socials a:hover { color: var(--teal); }
.contact-form-card {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px; width: 400px; flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.contact-form-card .fg label { color: rgba(255,255,255,0.72); }
.contact-form-card .fg input,
.contact-form-card .fg select,
.contact-form-card .fg textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: white;
}
.contact-form-card .fg input::placeholder,
.contact-form-card .fg textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form-card .fg select option { background: var(--dark); color: white; }

/* ====== FOOTER ====== */
.site-footer { background: #0d1e27; padding: 48px 40px 24px; }
.footer-top {
  max-width: 1100px; margin: 0 auto 28px;
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 38px; filter: brightness(0) invert(1); }
.footer-brand span { display: none; }
.footer-tagline { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; text-transform: uppercase; line-height: 1.3; max-width: 340px; }
.footer-phone { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--teal); text-decoration: none; }
.footer-phone:hover { color: var(--light-blue); }
.footer-socials { display: flex; gap: 14px; margin-top: 8px; }
.footer-socials a { color: rgba(255,255,255,0.5); font-size: 18px; text-decoration: none; transition: color 0.2s; }
.footer-socials a:hover { color: var(--teal); }
.footer-grid {
  max-width: 1100px; margin: 0 auto 36px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: white; margin-bottom: 14px;
}
.footer-col a,
.footer-col span {
  display: block; color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 13px; margin-bottom: 9px; line-height: 1.4;
}
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.32); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.32); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { height: auto; padding: 36px 0; }
  .hero-home { min-height: 480px; height: auto; padding: 60px 0 48px; }
  .hero-inner { flex-direction: column; padding: 0 20px; gap: 28px; }
  .hero-home .hero-left h1 { font-size: clamp(26px, 7.5vw, 40px); }
  .hero-icons { display: flex; gap: 20px; flex-wrap: wrap; }
  .hero-form-card { display: none !important; }
  .proof-bar { gap: 10px; padding: 18px 20px; }
  .proof-score { font-size: 38px; }
  .proof-divider { display: none; }
  .welcome-inner, .faq-inner, .coverage-inner, .ready-inner { flex-direction: column; }
  .welcome-section, .faq-section, .coverage-section, .ready-section { padding: 48px 20px; }
  .welcome-img img { width: 100%; height: 240px; }
  .faq-media img { width: 100%; height: 220px; }
  .coverage-map img { height: 260px; }
  .coverage-info { width: 100%; }
  .why-section, .cta-banner, .testimonials { padding: 48px 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cta-banner h3 { font-size: 24px; }
  .testimonials h2 { font-size: 26px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ready-form-wrap { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .why-service-inner { flex-direction: column; }
  .why-service-section, .features-section { padding: 48px 20px; }
  .why-img img { width: 100%; height: 240px; }
  .steps-section, .faq-section.standalone, .cta-banner { padding: 48px 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { flex-direction: column; }
  .feature-card img { width: 100%; height: 200px; }
  .contact-hero { padding: 40px 20px; }
  .contact-hero-inner { flex-direction: column; }
  .contact-form-card { width: 100%; }
  .contact-info h1 { font-size: 30px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-home .hero-left h1 { font-size: 26px; }
  .hero-icons { gap: 16px; }
}

/* ====== HERO TEXT IMPROVEMENTS ====== */
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.80);
  line-height: 1.7; max-width: 440px; margin: 12px 0 24px;
}
.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  align-items: center; margin-bottom: 32px;
}
.btn-hero-primary {
  display: inline-block; background: var(--light-blue); color: white;
  padding: 14px 30px; text-decoration: none; font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-hero-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-hero-primary:active { transform: translateY(0); }
.btn-hero-ghost {
  display: inline-block; border: 2px solid rgba(255,255,255,0.38); color: rgba(255,255,255,0.9);
  padding: 12px 26px; text-decoration: none; font-size: 13px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-hero-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* Mobile hero overrides */
@media (max-width: 900px) {
  .hero-sub { font-size: 15px; margin-bottom: 20px; max-width: 100%; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 28px; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; padding: 14px 24px; }
}

/* ====== GALLERY PAGE ====== */
.gallery-filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  padding: 48px 40px 0; max-width: 1000px; margin: 0 auto;
}
.gallery-filter-btn {
  background: var(--light-grey); border: 2px solid transparent; color: var(--dark);
  padding: 9px 20px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.gallery-filter-btn:hover { background: rgba(21,123,182,0.1); border-color: var(--blue); }
.gallery-filter-btn.active { background: var(--dark); color: var(--teal); border-color: var(--dark); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; padding: 32px 40px 80px; max-width: 1280px; margin: 0 auto;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3; background: var(--dark);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,30,0.72) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  color: white; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-display);
}

/* Lightbox */
.cv-lightbox {
  position: fixed; inset: 0; background: rgba(5,12,18,0.96);
  z-index: 9999; display: none; align-items: center; justify-content: center;
}
.cv-lightbox.open { display: flex; }
.cv-lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.cv-lightbox-close {
  position: absolute; top: 18px; right: 22px; background: none; border: none;
  color: rgba(255,255,255,0.7); font-size: 26px; cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.cv-lightbox-close:hover { color: white; transform: scale(1.15); }
.cv-lightbox-prev, .cv-lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); font-size: 20px; cursor: pointer;
  padding: 14px 16px; transition: background 0.2s ease, color 0.2s ease;
}
.cv-lightbox-prev:hover, .cv-lightbox-next:hover { background: rgba(255,255,255,0.18); color: white; }
.cv-lightbox-prev { left: 12px; }
.cv-lightbox-next { right: 12px; }

/* Gallery responsive */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 24px 20px 60px; }
  .gallery-filter-bar { padding: 32px 20px 0; gap: 8px; }
  .gallery-filter-btn { padding: 8px 14px; font-size: 11px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ====== SCROLL REVEAL ====== */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  }
  [data-reveal="left"]  { transform: translateX(-32px); }
  [data-reveal="right"] { transform: translateX(32px); }
  [data-reveal="scale"] { transform: scale(0.94); opacity: 0; }
  [data-reveal].revealed { opacity: 1; transform: none; }

  [data-reveal-stagger] > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  }
  [data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0ms; }
  [data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 80ms; }
  [data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 160ms; }
  [data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 240ms; }
  [data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 320ms; }
  [data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 400ms; }
  [data-reveal-stagger].revealed > * { opacity: 1; transform: none; }
}

/* Nav scroll glass effect */
.site-nav {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: rgba(29,49,63,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Card hover lift */
.why-item {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-item:hover { transform: translateY(-5px); }

.review-card {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(21,123,182,0.14), 0 2px 8px rgba(0,0,0,0.06);
}

/* Icon circle hover */
.icon-circle {
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.hero-icon-item:hover .icon-circle {
  transform: scale(1.12);
  border-color: var(--teal);
}

/* CTA button micro-interaction */
.btn-teal, .nav-cta, .btn-outline {
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-teal:hover, .nav-cta:hover { transform: translateY(-1px); }
.btn-teal:active, .nav-cta:active { transform: translateY(0); }

/* ====== WORDPRESS ADMIN BAR FIX ====== */
/* Prevents white gap between nav and hero when logged in */
.admin-bar .site-nav { top: 32px; }
.admin-bar .mobile-nav { top: calc(62px + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
  .admin-bar .mobile-nav { top: calc(62px + 46px); }
}

/* ====== MOBILE HERO CENTERING ====== */
@media (max-width: 900px) {
  .hero-home .hero-left { text-align: center; }
  .hero-home .hero-badge { text-align: center; }
  .hero-home .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-home .hero-icons { justify-content: center; }
  .hero-home .hero-left h1 { margin-left: auto; margin-right: auto; }
}

/* ====== COVERAGE MAP IFRAME ====== */
.map-iframe-wrap {
  position: relative; width: 100%; height: 370px; overflow: hidden;
}
.map-iframe-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: saturate(0.72) brightness(0.86) hue-rotate(8deg);
}
.map-iframe-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(21,123,182,0.1);
  pointer-events: none;
}
@media (max-width: 900px) { .map-iframe-wrap { height: 260px; } }

/* ====== SERVICES SECTION ====== */
.services-section {
  background: var(--light-grey); padding: 80px 40px;
}
.services-section-inner { max-width: 1140px; margin: 0 auto; }
.services-section-header { text-align: center; margin-bottom: 52px; }
.services-section-header h2 {
  font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px);
  color: var(--dark); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 14px;
}
.services-section-sub {
  font-size: 16px; color: #5a6a7a; max-width: 540px;
  margin: 0 auto; line-height: 1.7;
}
.services-category-block { margin-bottom: 44px; }
.services-category-block:last-child { margin-bottom: 0; }
.services-cat-title {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(21,123,182,0.15);
}
.services-cards {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.services-cards--commercial {
  grid-template-columns: repeat(2, 1fr); max-width: 640px;
}
.svc-card {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  padding: 24px 20px 20px; text-decoration: none;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.22s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.22s ease, border-color 0.22s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(21,123,182,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(21,123,182,0.2);
}
.svc-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(21,123,182,0.08); border: 1.5px solid rgba(21,123,182,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 16px; margin-bottom: 14px;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.svc-card:hover .svc-card-icon {
  background: rgba(21,123,182,0.14); border-color: var(--blue);
}
.svc-card h4 {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--dark); letter-spacing: -0.01em; margin: 0 0 8px; line-height: 1.3;
}
.svc-card p {
  font-size: 13px; line-height: 1.6; color: #6a7a8a; margin: 0 0 14px; flex: 1;
}
.svc-card-link {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--blue); margin-top: auto;
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.15s ease;
}
.svc-card:hover .svc-card-link { gap: 9px; }
.svc-card--commercial { padding: 28px 24px 22px; }
@media (max-width: 900px) {
  .services-section { padding: 48px 20px; }
  .services-section-header { margin-bottom: 36px; }
  .services-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-cards--commercial { max-width: 100%; grid-template-columns: repeat(2, 1fr); }
  .services-category-block { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .services-cards { grid-template-columns: 1fr; }
  .services-cards--commercial { grid-template-columns: 1fr; }
}

/* ====== MOBILE IMAGE FULL WIDTH ====== */
@media (max-width: 900px) {
  .welcome-img { width: 100%; }
  .faq-media { width: 100%; }
}

/* ====== BREADCRUMBS ====== */
.cv-breadcrumbs {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.cv-breadcrumbs a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.18s ease;
}
.cv-breadcrumbs a:hover { color: var(--teal); }
.cv-breadcrumbs .cv-bc-sep { color: rgba(255,255,255,0.2); font-weight: 400; text-transform: none; letter-spacing: 0; }
.cv-breadcrumbs .cv-bc-current { color: var(--teal); }
.cv-breadcrumbs .cv-bc-plain { color: rgba(255,255,255,0.45); }

/* ====== SHARED PAGE UTILITIES ====== */
.section-label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--blue); margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 34px);
  color: var(--dark); letter-spacing: -0.02em; margin-bottom: 48px; line-height: 1.2;
}
/* CTA section used as simple centered block (about / service pages) */
.page-cta .ready-inner {
  flex-direction: column; align-items: center; text-align: center; max-width: 700px; gap: 16px;
}
.page-cta .ready-inner h2 {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px);
  color: white; letter-spacing: -0.02em; margin: 0;
}
.page-cta .ready-inner p {
  color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.65; margin: 0;
}
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }

/* ====== ABOUT PAGE ====== */
.about-story { padding: 80px 40px; background: #fff; }
.about-story-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-story-text .section-label { color: var(--blue); }
.about-story-text h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 38px);
  color: var(--dark); line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 20px;
}
.about-story-text p { font-size: 15px; line-height: 1.75; color: #4a5568; margin-bottom: 16px; }
.about-story-text p:last-child { margin-bottom: 0; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--light-grey); border: 2px dashed rgba(21,123,182,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--blue); border-radius: 2px;
}
.about-img-placeholder i { font-size: 32px; opacity: 0.5; }
.about-img-placeholder span {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6;
}
.about-img-portrait { aspect-ratio: 3/4; }
.about-owner { padding: 80px 40px; background: var(--dark); }
.about-owner-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start;
}
.about-owner-text .section-label { color: var(--teal); }
.about-owner-text h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px);
  color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 6px;
}
.about-owner-title {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--light-blue); margin: 0 0 20px !important;
}
.about-owner-text p {
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 16px;
}
.about-owner-text p:last-child { margin-bottom: 0; }
.about-values { padding: 80px 40px; background: var(--light-grey); }
.about-values-inner { max-width: 1100px; margin: 0 auto; }
.about-values-inner .section-heading { margin: 8px 0 48px; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-value-card {
  background: #fff; padding: 36px 28px;
  box-shadow: 0 4px 12px rgba(21,123,182,0.07), 0 12px 32px rgba(0,0,0,0.06);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-value-card:hover { transform: translateY(-5px); }
.about-value-card .icon-circle { margin-bottom: 20px; }
.about-value-card h3 {
  font-family: var(--font-display); font-size: 17px; color: var(--dark);
  margin: 0 0 12px; letter-spacing: -0.01em;
}
.about-value-card p { font-size: 14px; line-height: 1.7; color: #5a6a7a; margin: 0; }
@media (max-width: 900px) {
  .about-story { padding: 48px 20px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-owner { padding: 48px 20px; }
  .about-owner-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-owner-inner .about-img-portrait { max-width: 260px; aspect-ratio: 1/1; margin: 0 auto; }
  .about-values { padding: 48px 20px; }
  .about-values-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .about-story-text h2, .about-owner-text h2 { font-size: 24px; }
}

/* ====== COMMERCIAL WINDOW CLEANING PAGE ====== */
.why-service { padding: 80px 40px; background: #fff; }
.why-service .why-service-inner { display: flex; gap: 56px; align-items: center; max-width: 1100px; margin: 0 auto; }
.why-service-text { flex: 1; }
.why-service-text h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px);
  color: var(--dark); margin-bottom: 20px; letter-spacing: -0.02em; line-height: 1.2;
}
.why-service-text p { font-size: 15px; line-height: 1.75; color: #4a5568; margin-bottom: 16px; }
.why-service-image { flex: 1; }
.why-service-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.service-steps { padding: 80px 40px; background: var(--light-grey); text-align: center; }
.service-steps-inner { max-width: 1100px; margin: 0 auto; }
.step-card { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%; background: var(--dark);
  color: var(--teal); font-family: var(--font-display); font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark); margin: 0; }
.step-card p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }
.service-features { padding: 80px 40px; background: #fff; text-align: center; }
.service-features-inner { max-width: 1100px; margin: 0 auto; }
.service-features .features-grid { grid-template-columns: repeat(3, 1fr); }
.service-steps .steps-grid { grid-template-columns: repeat(4, 1fr); }
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 28px; background: var(--light-grey); text-align: left;
}
.feature-item h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark); margin: 0; }
.feature-item p { font-size: 14px; line-height: 1.65; color: #555; margin: 0; }
@media (max-width: 900px) {
  .why-service { padding: 48px 20px; }
  .why-service .why-service-inner { flex-direction: column; }
  .service-steps, .service-features { padding: 48px 20px; }
  .service-features .features-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .service-steps .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .service-features .features-grid { grid-template-columns: 1fr; }
  .service-steps .steps-grid { grid-template-columns: 1fr; }
}

/* ====== SOCIAL "COMING SOON" TOOLTIP ====== */
.footer-socials [data-tooltip],
.ready-socials [data-tooltip],
.contact-socials [data-tooltip] {
  position: relative;
}
.footer-socials [data-tooltip]::after,
.ready-socials [data-tooltip]::after,
.contact-socials [data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(29,49,63,0.97);
  color: var(--teal);
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 9px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(148,211,200,0.3);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-socials [data-tooltip]:hover::after,
.ready-socials [data-tooltip]:hover::after,
.contact-socials [data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
