/* ============================================================
   Painters Lane LLC — Main Stylesheet
   painterslanellc.com  |  Dark Modern Minimalist
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Backgrounds */
  --bg:          #0e1117;   /* deepest background */
  --bg-2:        #161b24;   /* cards / surfaces */
  --bg-3:        #1c2230;   /* elevated / hover */
  --border:      #252d3d;   /* standard border */
  --border-soft: #1c2230;   /* very subtle divider */

  /* Accent – clean professional blue */
  --accent:      #3d8ef0;
  --accent-dark: #2571cc;
  --accent-light: #6aaaf5;
  --accent-glow: rgba(61,142,240,0.15);

  /* Text */
  --text:        #e8ecf2;   /* primary */
  --text-2:      #8494a8;   /* secondary */
  --text-3:      #4d5b6e;   /* faint / placeholder */

  /* Stars / ratings only */
  --star:        #f4b942;

  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.35);
  --shadow:      0 6px 28px rgba(0,0,0,0.50);
  --shadow-lg:   0 12px 50px rgba(0,0,0,0.60);

  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --font:        'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-width:   1140px;
  --transition:  0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-2); }
p:last-child { margin-bottom: 0; }

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

.section { padding: 80px 0; }

.section-alt { background: var(--bg-2); }
.section-dark { background: var(--bg); }

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-heading {
  margin-bottom: 16px;
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,142,240,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  background: var(--bg-3);
  color: var(--white);
  border-color: var(--text-2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--bg-3);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--border);
  color: var(--white);
}

.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14,17,23,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
  color: var(--white);
}
.nav-logo-img {
  height: 38px;
  width: auto;
  opacity: 0.9;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 1; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  gap: 2px;
}

.nav-logo .logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo .logo-tag {
  font-size: 0.62rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-logo:hover .logo-name { color: var(--accent-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 12px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: var(--bg-3); }

.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown > a::after { content: ' ▾'; font-size: 0.6rem; opacity: 0.6; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 6px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  border-radius: var(--radius);
  color: var(--text-2);
}
.nav-dropdown-menu a:hover { background: var(--bg-3); color: var(--white); }

.nav-cta { margin-left: 12px; }

.nav-phone {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  margin-left: 8px;
}
.nav-phone:hover { color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 7px 10px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Animate hamburger → X when open */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--bg);
  padding: 96px 0 84px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(61,142,240,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 80%, rgba(61,142,240,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(61,142,240,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.hero-phone-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-phone-link:hover { color: var(--white); }

.hero-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero-stat .stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-top: 6px;
  display: block;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--bg-2);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.trust-item .trust-icon { font-size: 0.95rem; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), var(--shadow-sm);
  transform: translateY(-3px);
}

.service-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }

.service-card h3 { margin-bottom: 10px; font-size: 1.08rem; color: var(--white); }
.service-card p { font-size: 0.9rem; margin-bottom: 18px; color: var(--text-2); }

.service-card .card-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card .card-link:hover { color: var(--accent-light); }

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
  margin-top: 14px;
}

.step-card { text-align: center; padding: 24px 16px; }

.step-num {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1.5px solid rgba(61,142,240,0.30);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h4 { color: var(--white); margin-bottom: 8px; }
.step-card p { font-size: 0.86rem; color: var(--text-2); }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.why-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.why-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.why-card h4 { color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.86rem; color: var(--text-2); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }

.review-stars { color: var(--star); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.93rem; color: var(--text-2); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.review-author { font-weight: 700; font-size: 0.87rem; color: var(--white); }
.review-location { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }

/* ---------- Areas We Serve ---------- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}
.area-tag {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
  display: inline-block;
}
a.area-tag.has-page {
  color: var(--accent-light);
  border-color: rgba(61,142,240,0.25);
  background: var(--accent-glow);
}
.area-tag:hover, a.area-tag.has-page:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--bg-2);
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(61,142,240,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-banner p { color: var(--text-2); margin-bottom: 32px; font-size: 1.05rem; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; position: relative; }
.cta-phone { font-size: 1.35rem; font-weight: 800; color: var(--white); }
.cta-phone:hover { color: var(--accent-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  color: var(--text-2);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  opacity: 0.75;
  display: block;
  margin-bottom: 14px;
}

.footer-brand .logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.footer-brand .logo-tag {
  font-size: 0.64rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 0.86rem; line-height: 1.65; color: var(--text-2); margin-bottom: 18px; }

.footer-nav h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-nav ul li { margin-bottom: 9px; }
.footer-nav ul li a { font-size: 0.86rem; color: var(--text-2); }
.footer-nav ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  margin-bottom: 12px;
}
.footer-contact-item .fc-icon { color: var(--accent); margin-top: 2px; }
.footer-contact-item a { color: var(--text-2); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.77rem;
  color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  background: var(--bg-2);
  padding: 60px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: var(--text-2); font-size: 1.03rem; max-width: 560px; margin: 0 auto 24px; }
.page-hero .breadcrumb { font-size: 0.78rem; color: var(--text-3); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--text-2); }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* ---------- Service Page Content ---------- */
.service-content { max-width: 820px; margin: 0 auto; }

.service-content h2 {
  margin: 52px 0 16px;
  font-size: 1.45rem;
  color: var(--white);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.service-content ul { list-style: none; margin: 0 0 24px; }
.service-content ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-soft);
}
.service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.process-steps { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 32px; }
.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
}
.process-step .ps-num {
  width: 30px;
  height: 30px;
  background: var(--accent-glow);
  border: 1.5px solid rgba(61,142,240,0.30);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.84rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.process-step h4 { color: var(--white); margin-bottom: 4px; }
.process-step p { font-size: 0.9rem; margin: 0; color: var(--text-2); }

.pricing-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin: 20px 0 32px;
}
.pricing-box h3 { color: var(--white); margin-bottom: 12px; }

/* ---------- FAQ Accordion ---------- */
.faq-list { margin: 20px 0 32px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg-2);
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
  font-family: var(--font);
}
.faq-question:hover { background: var(--bg-3); }
.faq-question .faq-icon { color: var(--accent); font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.91rem;
  color: var(--text-2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.faq-item.open .faq-answer { display: block; }

/* ---------- City Page ---------- */
.city-info-box {
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px;
  margin: 28px 0;
  font-size: 0.94rem;
  color: var(--text-2);
}
.city-info-box a { color: var(--accent); }
.city-info-box a:hover { color: var(--accent-light); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.gallery-item {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { text-align: center; padding: 20px; color: var(--text-3); }
.gallery-placeholder .gp-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.gallery-placeholder p { font-size: 0.8rem; margin: 0; line-height: 1.4; color: var(--text-3); }
.gallery-placeholder strong { color: var(--text-2); font-size: 0.84rem; }

.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.gallery-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 48px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.upload-note {
  background: var(--bg-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  margin: 30px 0;
}
.upload-note h3 { color: var(--white); margin-bottom: 8px; }
.upload-note p { font-size: 0.91rem; color: var(--text-2); margin: 0; }

/* ---------- Service Page Photo Grid ---------- */
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.service-photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-2);
}
.service-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.service-photo-item:hover img { transform: scale(1.04); }

/* ---------- Team Grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(61,142,240,0.12);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo-wrap img { transform: scale(1.05); }

.team-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select option { background: var(--bg); color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h3 { color: var(--white); margin-bottom: 20px; }
.contact-info p { color: var(--text-2); }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cd-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border: 1px solid rgba(61,142,240,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; color: var(--text-3); }
.cd-value { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.cd-value a { color: var(--white); }
.cd-value a:hover { color: var(--accent-light); }

/* ---------- Inline CTA ---------- */
.inline-cta {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin: 48px 0;
}
.inline-cta h3 { color: var(--white); margin-bottom: 10px; }
.inline-cta p { color: var(--text-2); margin-bottom: 22px; font-size: 0.94rem; }

/* ---------- Warranty Badges ---------- */
.warranty-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.warranty-badge {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  flex: 1 1 120px;
}
.warranty-badge .wb-years {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.warranty-badge .wb-label {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

/* ---------- Mobile Sticky Call Bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  border-top: 1px solid var(--accent-dark);
  z-index: 900;
  padding: 12px 20px;
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}
.mobile-cta-bar a:hover { color: var(--white); opacity: 0.9; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 14px;
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open .nav-cta { display: block; margin: 10px 0 0; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; border-left: 2px solid var(--accent); padding: 4px 0 4px 14px; margin-top: 4px; background: transparent; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 8px 20px; }
  .hero { padding: 64px 0 52px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 58px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-list { justify-content: flex-start; }
  .contact-form { padding: 24px 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
