/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8f9fb;
  color: #111;
  line-height: 1.6;
}

a { text-decoration:none; color:#333; transition:color 0.2s; }
a:hover { color:#0071e3; }

img { max-width:100%; display:block; }

/* ============================================================
   HEADER  —  3-column grid: [left 3] [logo] [right 2]
   nav-left uses justify-content:flex-end  → items push RIGHT toward logo
   nav-right uses justify-content:flex-start → items push LEFT toward logo
   Reducing font-size to 14px and gap to 28px keeps 5 items clear of the logo
   ============================================================ */
header {
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #e8eaed;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  height: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-left a,
.nav-right a,
.dropbtn {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 6px 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-left a:hover,
.nav-right a:hover,
.dropbtn:hover { color: #0071e3; }

.nav-active { color: #0071e3 !important; }

/* ============================================================
   DROPDOWN
   ============================================================ */
.dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 8px 0;
  z-index: 999;
  border: 1px solid #e8eaed;
}

.dropdown-content a {
  display: block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #333 !important;
  height: auto;
  transition: background 0.15s, color 0.15s;
}

.dropdown-content a:hover {
  background: #f0f4ff;
  color: #0071e3 !important;
  padding-left: 28px;
}

.dropdown:hover .dropdown-content { display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.cta {
  display: inline-block;
  padding: 14px 30px;
  background: #0071e3;
  color: #fff !important;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,113,227,0.3);
}

.cta:hover {
  background: #005bb5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,113,227,0.4);
}

.cta-white {
  background: #ffffff;
  color: #0071e3 !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.cta-white:hover {
  background: #f0f4ff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.cta-button {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 28px;
  background: #0071e3;
  color: #fff !important;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(0,113,227,0.3);
}

.cta-button:hover {
  background: #005bb5;
  transform: translateY(-2px);
}

/* ============================================================
   PAGE HERO (used on gallery sub pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 100%);
  padding: 80px 32px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero-upgraded {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
}

.hero-white { background: #ffffff; }

.hero-upgraded-content { flex: 1; }

.hero-upgraded-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #0a1628;
  letter-spacing: -0.02em;
}

.hero-upgraded-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-upgraded-image { flex: 1; }

.hero-upgraded-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

/* ============================================================
   WHAT WE DO
   ============================================================ */
.home-services {
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 32px;
  text-align: center;
}

.home-services h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0a1628;
}

.home-services > p {
  font-size: 17px;
  color: #666;
  margin-bottom: 36px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 0 0 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 18px 20px 8px;
  color: #0a1628;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin: 0 20px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 100%);
  padding: 80px 32px;
  text-align: center;
}

.why-us h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.01em;
}

.why-us > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-size: 17px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 36px auto 0;
}

.why-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 20px;
  border-radius: 16px;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.why-box:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.why-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.why-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: #0071e3;
  text-align: center;
  padding: 80px 32px;
}

.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-home {
  max-width: 1280px;
  margin: 80px auto;
  padding: 0 32px;
  text-align: center;
}

.reviews-home h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0a1628;
}

.reviews-home > p {
  font-size: 17px;
  color: #666;
  margin-bottom: 36px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.review-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid #0071e3;
}

.review-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
}

.stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-box p {
  font-size: 14px;
  color: #444;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.7;
}

.review-box strong {
  font-size: 13px;
  color: #0a1628;
  font-weight: 700;
}

/* ============================================================
   GALLERY HUB PAGE
   ============================================================ */
.gallery-hub {
  max-width: 1280px;
  margin: 56px auto 80px;
  padding: 0 32px;
}

.gallery-hub-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}

.gallery-cat-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  display: block;
  min-height: 340px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}

.gallery-cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.gallery-cat-card:hover .gallery-cat-img {
  transform: scale(1.06);
}

.gallery-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
}

.gallery-cat-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.gallery-cat-overlay h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.gallery-cat-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
  line-height: 1.5;
}

.gallery-cat-btn {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  width: fit-content;
  transition: background 0.2s;
}

.gallery-cat-card:hover .gallery-cat-btn {
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   GALLERY SUB-PAGES (residential, commercial etc.)
   ============================================================ */
.gallery-sub-hero {
  background: linear-gradient(135deg, var(--hero-color, #1a3a6e) 0%, #0a1628 100%);
  padding: 72px 32px 64px;
  text-align: center;
  color: #fff;
}

.gallery-breadcrumb {
  margin-bottom: 20px;
}

.gallery-breadcrumb a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  background: rgba(255,255,255,0.1);
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
}

.gallery-breadcrumb a:hover { color: #fff; background: rgba(255,255,255,0.18); }

.gallery-sub-icon {
  font-size: 48px;
  margin-bottom: 14px;
}

.gallery-sub-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.gallery-sub-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-sub-grid-section {
  max-width: 1280px;
  margin: 60px auto 80px;
  padding: 0 32px;
}

.gallery-sub-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.gallery-photo-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}

.gallery-photo-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-photo-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-photo-card:hover .gallery-photo-wrap img {
  transform: scale(1.05);
}

.gallery-photo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0071e3;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-photo-info {
  padding: 20px 22px 24px;
}

.gallery-photo-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 8px;
  line-height: 1.3;
}

.gallery-photo-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* Gallery CTA strip */
.gallery-cta-strip {
  background: #f0f4ff;
  border-top: 1px solid #dde5f5;
  padding: 48px 32px;
}

.gallery-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.gallery-cta-inner h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0a1628;
  margin-bottom: 6px;
}

.gallery-cta-inner p {
  font-size: 15px;
  color: #555;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-header {
  text-align: center;
  padding: 72px 32px 40px;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 100%);
  color: #fff;
}

.contact-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.contact-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
}

.contact-body {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 60px 32px 0;
  display: flex;
  gap: 56px;
}

.contact-left, .contact-right { flex: 1; }

.contact-left h2, .contact-right h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0a1628;
}

.contact-left p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.7;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-right label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -6px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #ddd;
  font-size: 15px;
  font-family: inherit;
  color: #111;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0,113,227,0.1);
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.service-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 100%);
  padding: 72px 32px;
  text-align: center;
  color: #fff;
}

.service-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.02em;
}

.service-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
}

.service-content {
  max-width: 900px;
  margin: 56px auto 80px;
  padding: 0 24px;
}

.service-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  margin-top: 40px;
  color: #0a1628;
}

.service-content h2:first-child { margin-top: 0; }

.service-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 8px;
  color: #0071e3;
}

.service-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-top: 8px;
}

/* ============================================================
   QUOTE PAGES
   ============================================================ */
.quote-header {
  text-align: center;
  padding: 64px 32px 20px;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 100%);
  color: #fff;
}

.quote-header h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.quote-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
}

.quote-options-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 55vh;
  padding: 40px 32px 60px;
  background: #f8f9fb;
}

.quote-options {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.quote-box {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  border-top: 7px solid #0071e3;
  color: #333;
  transition: transform 0.2s, box-shadow 0.2s;
}

.quote-box:nth-child(2) { border-top-color: #0e7a5c; }
.quote-box:nth-child(3) { border-top-color: #6d28d9; }

.quote-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.quote-box h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0a1628;
}

.quote-box p { font-size: 14px; color: #666; }

.back-link {
  display: block;
  text-align: center;
  margin: 20px auto 40px;
  color: #0071e3;
  font-size: 15px;
  font-weight: 600;
}

.back-link:hover { color: #005bb5; }

/* ============================================================
   REPAIR PAGES
   ============================================================ */
.repair1 { border-top-color: #0071e3 !important; }
.repair2 { border-top-color: #0e7a5c !important; }
.repair3 { border-top-color: #f59e0b !important; }

.repair-gallery {
  max-width: 1280px;
  margin: 64px auto;
  padding: 0 32px;
  text-align: center;
}

.repair-gallery h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0a1628;
}

.repair-gallery p { font-size: 17px; color: #666; margin-bottom: 36px; }

.repair-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.repair-photo {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.repair-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.repair-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.repair-photo h4 { font-size: 16px; font-weight: 700; color: #0a1628; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 32px;
}

.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 32px;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: #333;
  display: block;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}

.pricing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.pricing-card-body {
  padding: 22px 24px 28px;
}

.pricing-card h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0a1628;
}

.pricing-card p { font-size: 14px; color: #666; line-height: 1.6; }

.pricing-card-urgent { background: #0a1628; }
.pricing-card-urgent .pricing-card-body h2 { color: #fff; }
.pricing-card-urgent .pricing-card-body p { color: rgba(255,255,255,0.7); }

/* ============================================================
   GENERIC PAGES (portfolio, services)
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px;
}

.container h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0a1628;
}

.container p { font-size: 17px; color: #666; margin-bottom: 32px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.tile {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.split-left { flex: 1; }
.split-left h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; color: #0a1628; }
.split-left p  { font-size: 17px; color: #444; margin-bottom: 20px; }
.split-right { flex: 1; }
.split-right img { width:100%; border-radius:16px; box-shadow:0 8px 24px rgba(0,0,0,0.1); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-hub-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .home-services-grid,
  .recent-grid,
  .repair-grid,
  .reviews-grid,
  .gallery-sub-grid { grid-template-columns: 1fr 1fr; }

  .hero-upgraded {
    flex-direction: column;
    padding: 48px 24px;
    gap: 32px;
  }

  .hero-upgraded-content h1 { font-size: 32px; }

  .contact-body,
  .split-section { flex-direction: column; gap: 32px; }

  .pricing-grid { grid-template-columns: 1fr 1fr; }

  .gallery-cta-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 680px) {
  .nav-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 12px 20px;
    gap: 10px;
  }

  .logo {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 4px 0 0;
  }

  .logo img { height: 44px; }

  .nav-left {
    justify-content: flex-start;
    gap: 16px;
    height: auto;
    font-size: 13px;
  }

  .nav-right {
    justify-content: flex-end;
    gap: 16px;
    height: auto;
    font-size: 13px;
  }

  .home-services-grid,
  .recent-grid,
  .repair-grid,
  .reviews-grid,
  .why-grid,
  .gallery-hub-grid,
  .gallery-sub-grid,
  .grid,
  .pricing-grid,
  .pricing-grid-2 { grid-template-columns: 1fr; }

  .hero-upgraded-content h1 { font-size: 26px; }
  .quote-box { max-width: 100%; min-width: unset; }
  .page-hero h1 { font-size: 30px; }
  .gallery-sub-hero h1 { font-size: 30px; }
}