/* ============================================================
   Shoreline Plumbing — styles.css
   ============================================================ */

/* Reset & Variables */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1a5276;
  --navy-dark: #0e2f44;
  --navy-mid: #1f6591;
  --teal: #2e86ab;
  --orange: #f0820f;
  --orange-dark: #d4720b;
  --white: #ffffff;
  --light: #f7f5f2;
  --gray: #6b7280;
  --text: #1a1a2e;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); overflow-x: hidden; background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- NAV ---- */
nav {
  background: var(--white);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
.logo img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--orange); color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 9px; }
.phone-num { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); }
.phone-sub { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.btn-nav {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 2px;
  display: inline-block;
}
.btn-nav:hover { background: var(--orange-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(14,47,68,0.97) 0%, rgba(14,47,68,0.92) 36%, rgba(14,47,68,0.5) 60%, rgba(14,47,68,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 5%;
  max-width: 580px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-content h1 span { color: var(--orange); }
.hero-divider { width: 52px; height: 3px; background: var(--orange); margin: 18px 0; }
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 400px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  font-size: 13px;
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  display: inline-block;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ---- WAVE ---- */
.wave-sep { display: block; width: 100%; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white);
  padding: 20px 5%;
  border-bottom: 1px solid #e5e7eb;
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 14px;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item svg { color: var(--teal); flex-shrink: 0; }
.trust-item span {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
}
.accent-line { width: 48px; height: 3px; background: var(--orange); margin: 14px auto 0; }

/* ---- SERVICES GRID (home) ---- */
.services { padding: 72px 5%; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid transparent;
  transition: all 0.25s;
  border-radius: 2px;
}
.service-card:hover { border-color: #e5e7eb; box-shadow: 0 6px 28px rgba(26,82,118,0.09); }
.service-icon { width: 72px; height: 72px; margin: 0 auto 18px; display: block; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.72; margin-bottom: 16px; }
.learn-more {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  cursor: pointer;
  transition: opacity 0.2s;
}
.learn-more:hover { opacity: 0.75; }

/* ---- RECENT WORK ---- */
.recent-work { padding: 60px 5%; background: var(--light); }
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 20px;
}
.work-header h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}
.view-all {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  cursor: pointer;
  transition: opacity 0.2s;
}
.view-all:hover { opacity: 0.75; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item { height: 196px; overflow: hidden; cursor: pointer; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

/* ---- ABOUT (home section) ---- */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.about-left {
  background: var(--navy-dark);
  padding: 72px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-left h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.about-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.88;
  margin-bottom: 28px;
}
.about-right {
  position: relative;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-overlay { position: absolute; inset: 0; background: rgba(14,47,68,0.78); }
.about-logo-block { position: relative; z-index: 2; text-align: center; padding: 40px; }
.about-logo-block img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* ---- REVIEWS ---- */
.reviews { padding: 72px 5%; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.review-card { padding: 28px 24px; border: 1px solid #e5e7eb; border-radius: 2px; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: #f59e0b; font-size: 18px; }
.review-card p { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.reviewer { font-size: 13px; font-weight: 600; color: var(--navy); }
.google-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
}
.google-btn:hover { background: var(--orange-dark); }

/* ---- ESTIMATE FORM ---- */
.estimate-section { background: var(--navy-dark); padding: 68px 5%; }
.estimate-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.estimate-left h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.estimate-left p { font-size: 14px; color: rgba(255,255,255,0.70); line-height: 1.78; }
.estimate-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  background: var(--white);
  border: none;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  width: 100%;
}
.estimate-form input::placeholder,
.estimate-form textarea::placeholder { color: #9ca3af; }
.estimate-form select { cursor: pointer; }
.estimate-form select.placeholder { color: #9ca3af; }
.estimate-form textarea { grid-column: 1 / -1; resize: vertical; min-height: 82px; }
.file-row { grid-column: 3 / 4; }
.file-label {
  display: flex;
  align-items: stretch;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  height: 46px;
}
.file-label-text {
  flex: 1;
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}
.file-label-btn {
  background: var(--navy-mid);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 14px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.real-file-input { display: none; }
.submit-row { grid-column: 1 / -1; text-align: center; margin-top: 6px; }
.btn-submit {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 52px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 2px;
}
.btn-submit:hover { background: var(--orange-dark); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.form-success p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.7; }

/* ---- FOOTER ---- */
footer { background: #0a1e2d; padding: 52px 5% 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 220px 160px 200px 240px;
  gap: 44px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.footer-logo img { height: 64px; width: auto; margin-bottom: 10px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); margin: 4px 0 16px; letter-spacing: 1px; }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  cursor: pointer;
  border-radius: 2px;
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.contact-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; }
.contact-row svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.contact-row span { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.55; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: var(--navy-dark); padding: 60px 5%; text-align: center; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.70);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- SERVICES PAGE ---- */
.service-page-section { padding: 72px 5%; }
.service-page-section:nth-child(even) { background: var(--light); }
.service-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.service-detail-wrap.reverse { direction: rtl; }
.service-detail-wrap.reverse > * { direction: ltr; }
.service-detail-content h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-detail-content .accent-line { margin: 0 0 20px; }
.service-detail-content p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.service-list { list-style: none; margin-bottom: 28px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}
.service-img-wrap { border-radius: 2px; overflow: hidden; height: 340px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-cta-banner { background: var(--navy-dark); padding: 52px 5%; text-align: center; }
.service-cta-banner h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 14px;
}
.service-cta-banner p { color: rgba(255,255,255,0.70); font-size: 15px; margin-bottom: 28px; }

/* ---- ABOUT PAGE ---- */
.about-page-intro {
  padding: 72px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-page-text h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 8px;
}
.about-page-text .accent-line { margin: 0 0 20px; }
.about-page-text p { font-size: 15px; color: var(--gray); line-height: 1.88; margin-bottom: 16px; }
.about-page-photo { border-radius: 2px; overflow: hidden; height: 420px; }
.about-page-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.differentiators { background: var(--light); padding: 72px 5%; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.diff-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(26,82,118,0.07);
}
.diff-icon {
  width: 52px;
  height: 52px;
  background: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.diff-card h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.diff-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }
.about-cta { background: var(--navy-dark); padding: 52px 5%; text-align: center; }
.about-cta h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 14px;
}
.about-cta p { color: rgba(255,255,255,0.70); font-size: 15px; margin-bottom: 28px; }

/* ---- GALLERY PAGE ---- */
.gallery-page { padding: 60px 5%; background: var(--light); }
.filter-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.filter-btn.active,
.filter-btn:hover { background: var(--navy); color: var(--white); }
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-card {
  height: 240px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-card:hover img { transform: scale(1.07); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,47,68,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-card:hover .gallery-card-overlay { background: rgba(14,47,68,0.45); }
.gallery-card-overlay svg { opacity: 0; transition: opacity 0.3s; color: white; }
.gallery-card:hover .gallery-card-overlay svg { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; }

/* ---- CONTACT PAGE ---- */
.contact-page { padding: 72px 5%; }
.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-info .accent-line { margin: 0 0 20px; }
.contact-info p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-detail svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong {
  display: block;
  font-size: 12px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
  font-family: var(--font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-detail-text span { font-size: 14px; color: var(--gray); line-height: 1.55; }
.service-area-list { margin-top: 28px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.service-area-list h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-area-list ul { list-style: none; }
.service-area-list li {
  font-size: 14px;
  color: var(--gray);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-area-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap .accent-line { margin: 0 0 28px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--light);
  border: 1px solid #e5e7eb;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--navy); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9ca3af; }
.contact-form select { cursor: pointer; }
.contact-form select.placeholder { color: #9ca3af; }
.contact-form textarea { grid-column: 1 / -1; resize: vertical; min-height: 120px; }
.contact-form .full-width { grid-column: 1 / -1; }
.contact-form .file-label {
  display: flex;
  align-items: stretch;
  background: var(--light);
  border: 1px solid #e5e7eb;
  cursor: pointer;
  overflow: hidden;
  height: 46px;
  transition: border-color 0.2s;
}
.contact-form .file-label:focus-within { border-color: var(--navy); }
.contact-form .submit-row { grid-column: 1 / -1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 8px 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 150;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px 5%;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    border-bottom-color: var(--orange);
    border-bottom-width: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links a:last-child { border-bottom: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-right { min-height: 300px; }
  .estimate-inner { grid-template-columns: 1fr; gap: 32px; }
  .estimate-form { grid-template-columns: 1fr 1fr; }
  .estimate-form .file-row { grid-column: 1 / -1; }
  .hero-content h1 { font-size: 40px; }
  .page-hero h1 { font-size: 32px; }
  .service-detail-wrap { grid-template-columns: 1fr; }
  .service-detail-wrap.reverse { direction: ltr; }
  .service-img-wrap { height: 260px; }
  .about-page-intro { grid-template-columns: 1fr; }
  .about-page-photo { height: 280px; }
  .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-page-inner { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form textarea { grid-column: 1 / -1; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .estimate-form { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 34px; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone { display: none; }
}
