/* ===================================================
   Dukes Painting — Main Stylesheet
   tulsapaintcontractor.com
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

/* === Custom Properties === */
:root {
  --blue: #2E9FD4;
  --blue-dark: #2589b8;
  --charcoal: #4A4A4A;
  --bg: #ffffff;
  --light-bg: #F5F7F9;
  --dark-bg: #1e2a35;
  --font: 'Montserrat', sans-serif;
  --max-width: 1200px;
  --radius: 4px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* === Container === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* === Buttons === */
.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  line-height: 1.3;
}
.btn:hover { background: var(--blue-dark); text-decoration: none; color: #fff; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: #e8f5fd; color: var(--blue-dark); }
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === Typography === */
h1, h2, h3, h4, h5 { font-weight: 900; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}
.section-heading { margin-bottom: 16px; }
.section-sub {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 32px;
  max-width: 680px;
}
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* === Sections === */
section { padding: 72px 0; }
section.light { background: var(--light-bg); }

/* === Header === */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--light-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo img { height: 52px; width: auto; }
.logo:hover { text-decoration: none; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--blue); background: var(--light-bg); text-decoration: none; }
.main-nav a.active { color: var(--blue); }

/* Services Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.7; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 240px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
  background: none;
}
.dropdown-menu a:hover { background: var(--light-bg); color: var(--blue); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.9rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-phone:hover { color: var(--blue); text-decoration: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}
body.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--light-bg); }
body.nav-open .mobile-nav { display: block; }
.mobile-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: var(--blue);
  color: #fff;
  font-size: 0.9rem;
}
.mobile-phone-bar a { color: #fff; font-weight: 700; }
.mobile-nav > a {
  display: block;
  padding: 14px 24px;
  font-weight: 700;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-bg);
  font-size: 0.95rem;
}
.mobile-nav > a:hover { color: var(--blue); text-decoration: none; }
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.mobile-services-menu { display: none; background: var(--light-bg); }
.mobile-services-menu.open { display: block; }
.mobile-services-menu a {
  display: block;
  padding: 11px 24px 11px 40px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  border-bottom: 1px solid #e5e7eb;
}
.mobile-services-menu a:hover { color: var(--blue); text-decoration: none; }
.mobile-quote-btn {
  display: block;
  margin: 16px 24px 20px;
  text-align: center;
  background: var(--blue) !important;
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 700;
  padding: 14px !important;
}
.mobile-quote-btn:hover { background: var(--blue-dark) !important; }

/* Responsive Header */
@media (max-width: 900px) {
  .main-nav { gap: 0; }
  .main-nav a { padding: 8px 8px; font-size: 0.85rem; }
}
@media (max-width: 768px) {
  .main-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .header-phone { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .header-phone { display: none; }
}

/* === Hero (Homepage) === */
.hero {
  background: linear-gradient(135deg, #1a2a38 0%, #24374a 55%, #1a3348 100%);
  color: #fff;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}
.hero h1 { color: #fff; margin-bottom: 20px; max-width: 720px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero .btn-actions { gap: 14px; }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #1a2a38 0%, #24374a 100%);
  color: #fff;
  padding: 56px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255, 255, 255, 0.8); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: #fff; text-decoration: none; }

/* === Trust Strip === */
.trust-strip { background: var(--blue); color: #fff; padding: 44px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item { padding: 8px; }
.trust-number { font-size: 2.6rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.trust-label {
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; } }

/* === Service Cards (Homepage) === */
.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px 18px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(46, 159, 212, 0.14);
  transform: translateY(-3px);
  text-decoration: none;
}
.service-card-icon {
  width: 58px;
  height: 58px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.6rem;
}
.service-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--charcoal); }
.service-card p { font-size: 0.84rem; color: #666; line-height: 1.55; margin-bottom: 14px; flex: 1; }
.service-card .card-link { font-size: 0.82rem; font-weight: 700; color: var(--blue); margin-top: auto; }

@media (max-width: 1024px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 375px) { .service-cards { grid-template-columns: 1fr; } }

/* === About Intro (Homepage) === */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .about-intro-grid { grid-template-columns: 1fr; gap: 32px; } }

.photo-placeholder-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.875rem;
  border: 2px dashed #d0d7de;
  text-align: center;
  padding: 24px;
  gap: 12px;
}
.photo-placeholder-box svg { opacity: 0.35; }

/* === Review Cards === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--charcoal); line-height: 1.7; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.88rem; }
.review-date { font-size: 0.78rem; color: #999; }
.reviews-more { text-align: center; margin-top: 32px; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .reviews-grid { grid-template-columns: 1fr; } }

/* === Why Choose === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(46, 159, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-text h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-text p { font-size: 0.93rem; color: #555; margin: 0; }

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

/* === CTA Banner === */
.cta-banner { background: var(--blue); color: #fff; padding: 72px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); margin-bottom: 32px; font-size: 1.05rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-actions { justify-content: center; }
.cta-banner .btn-white { color: var(--blue); }
.cta-banner .btn-white:hover { color: var(--blue-dark); }

/* === Footer === */
.site-footer { background: #1e2a35; color: rgba(255, 255, 255, 0.75); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.68); line-height: 1.75; }
.footer-col a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.68); }
.footer-col a:hover { color: var(--blue); text-decoration: none; }
.footer-logo img { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-tagline { font-style: italic; margin-bottom: 14px !important; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { display: block; }
.footer-area { display: flex; flex-direction: column; gap: 6px; }
.footer-area li::before { content: '→ '; opacity: 0.45; font-size: 0.8rem; }
.footer-area li { font-size: 0.88rem; color: rgba(255, 255, 255, 0.68); }
.footer-contractor {
  background: rgba(46, 159, 212, 0.12);
  border: 1px solid rgba(46, 159, 212, 0.3);
  border-radius: 6px;
  padding: 18px;
}
.footer-contractor p { font-size: 0.855rem; margin-bottom: 12px; }
.footer-contractor .btn { font-size: 0.85rem; padding: 10px 18px; }
.footer-contractor-phone { margin-top: 10px !important; font-size: 0.82rem !important; }
.footer-contractor-phone a { color: rgba(255, 255, 255, 0.82); font-weight: 700; }
.footer-contractor-phone a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px 24px; }
}

/* === Service Page Layout === */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .service-intro-grid { grid-template-columns: 1fr; gap: 32px; } }

.service-includes h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 14px;
}
.service-includes ul { padding: 0; }
.service-includes li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-bg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
}
.service-includes li::before { content: '✓'; color: var(--blue); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.service-includes li:last-child { border-bottom: none; }

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 28px 20px 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.process-step h3 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.84rem; color: #666; margin: 0; }

@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* Photo Grid Placeholder */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.photo-item {
  aspect-ratio: 4 / 3;
  background: var(--light-bg);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.8rem;
  border: 2px dashed #d0d7de;
  text-align: center;
  padding: 16px;
  gap: 8px;
}
@media (max-width: 600px) { .photo-grid { grid-template-columns: 1fr; } }

/* Before / After Comparisons */
.before-after-grid { display: flex; flex-direction: column; gap: 48px; margin-top: 32px; }
.before-after-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.before-after-item { position: relative; border-radius: 8px; overflow: hidden; }
.before-after-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.before-after-label {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; line-height: 1;
}
.before-label { background: rgba(0,0,0,0.55); color: #fff; }
.after-label { background: var(--blue); color: #fff; }
@media (max-width: 640px) { .before-after-pair { grid-template-columns: 1fr; } }

/* Real photo gallery */
.photo-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.photo-gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; display: block; }
@media (max-width: 768px) { .photo-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .photo-gallery-grid { grid-template-columns: 1fr; } }

/* Process photos */
.process-photo-row { margin-top: 40px; }
.process-photo { margin: 0; }
.process-photo img { width: 100%; max-width: 640px; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; display: block; }
.process-photo figcaption { font-size: 0.875rem; color: #666; margin-top: 10px; line-height: 1.6; font-style: italic; max-width: 640px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue); }
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--blue); flex-shrink: 0; transition: transform 0.25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 20px; }
.faq-answer-inner p { color: #555; font-size: 0.94rem; line-height: 1.72; margin: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* Related Services */
.related-services-section { padding: 48px 0; }
.related-services { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.related-services a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s;
  border: 1px solid #e5e7eb;
}
.related-services a:hover { background: #daeef8; color: var(--blue); text-decoration: none; }
.related-services a::before { content: '→'; color: var(--blue); }

/* Contractor Callout (Drywall page) */
.contractor-callout {
  background: var(--dark-bg);
  color: #fff;
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.contractor-callout-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.contractor-callout h2 { color: #fff; margin-bottom: 12px; font-size: 1.8rem; }
.contractor-callout p { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; margin-bottom: 8px; }
.contractor-callout ul { margin: 16px 0; padding: 0; }
.contractor-callout li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contractor-callout li::before { content: '✓'; color: var(--blue); flex-shrink: 0; font-weight: 900; }
.contractor-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; min-width: 200px; }
.contractor-actions a { text-align: center; }
.contractor-phone-note { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); text-align: center; margin-top: 4px; }

@media (max-width: 768px) {
  .contractor-callout { grid-template-columns: 1fr; padding: 32px 24px; }
  .contractor-actions { flex-direction: row; flex-wrap: wrap; }
  .contractor-actions a { flex: 1; min-width: 160px; }
}

/* === Reviews Page === */
.rating-hero-section { background: var(--light-bg); padding: 48px 0; }
.rating-display {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rating-number-big { font-size: 5rem; font-weight: 900; color: var(--charcoal); line-height: 1; }
.rating-detail .stars-big { color: #f59e0b; font-size: 2rem; letter-spacing: 4px; }
.rating-detail .review-count { font-size: 0.9rem; color: #666; margin-top: 6px; }
.leave-review-area { margin-top: 32px; }
.leave-review-area p { font-size: 0.93rem; color: #666; margin-bottom: 12px; }

/* === Quote Page === */
.quote-intro { max-width: 640px; margin-bottom: 40px; }
.what-to-expect { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0 48px; }
.expect-step {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.expect-num {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1rem;
}
.expect-step h4 { margin-bottom: 6px; font-size: 0.95rem; }
.expect-step p { font-size: 0.85rem; color: #666; margin: 0; }
@media (max-width: 640px) { .what-to-expect { grid-template-columns: 1fr; } }

.jobber-placeholder {
  background: var(--light-bg);
  border: 2px dashed #cdd5df;
  border-radius: 8px;
  padding: 64px 32px;
  text-align: center;
  color: #888;
  margin-bottom: 40px;
}
.jobber-placeholder .placeholder-icon { font-size: 2.5rem; margin-bottom: 16px; }
.jobber-placeholder h3 { color: var(--charcoal); margin-bottom: 8px; }
.jobber-placeholder p { font-size: 0.9rem; max-width: 480px; margin: 0 auto; }
.quote-fallback { background: var(--light-bg); border-radius: 8px; padding: 40px; }
.quote-fallback h3 { margin-bottom: 24px; }
.contact-methods { display: flex; gap: 32px; flex-wrap: wrap; }
.contact-method { display: flex; align-items: center; gap: 14px; }
.contact-method-icon {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.contact-method-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: #888; margin-bottom: 2px; font-weight: 700; }
.contact-method a { font-weight: 700; font-size: 1.05rem; color: var(--charcoal); }
.contact-method a:hover { color: var(--blue); text-decoration: none; }

/* === Contact Page === */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 700; margin-bottom: 3px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #888; }
.contact-info-text a { color: var(--charcoal); font-weight: 600; font-size: 1rem; }
.contact-info-text a:hover { color: var(--blue); text-decoration: none; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.area-tag {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--charcoal);
  border: 1px solid #e5e7eb;
}
.service-area-map-block { margin-top: 32px; }
.service-area-map-heading {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 14px;
}
.service-area-map-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: block;
}
.service-area-map-caption {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.5;
}

/* Contact Form */
.contact-form-section { }
.contact-form-section h2 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 700; font-size: 0.84rem; color: var(--charcoal); }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1.5px solid #d0d7de;
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--charcoal);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 159, 212, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* === About Page === */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .about-story-grid { grid-template-columns: 1fr; gap: 32px; } }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: #666; margin: 0; }

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

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
}
.credential-icon {
  width: 44px;
  height: 44px;
  background: rgba(46, 159, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.credential-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.credential-item p { font-size: 0.85rem; color: #666; margin: 0; }

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

/* === Utilities === */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-blue { color: var(--blue); }
.font-bold { font-weight: 700; }

/* Footer review link */
.footer-review-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 4px;
  padding: 6px 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.footer-review-link:hover { background: var(--blue); color: #fff; }
