/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: Inter, Arial, sans-serif; line-height: 1.6; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; }
a { background: none; text-decoration: none; }
a:hover { text-decoration: underline; }
img { border: 0; max-width: 100%; height: auto; display: inline-block; vertical-align: middle; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-family: Montserrat, sans-serif; font-weight: 700; margin: 0 0 0.5rem; line-height: 1.2; }
p { margin: 0 0 1rem; }
table { border-collapse: collapse; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
[hidden], template { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; padding: 12px 20px; margin: 0; background: var(--vp-primary); color: #fff; z-index: 10000; clip: auto; overflow: visible; font-size: 14px; font-weight: 600; text-decoration: none; outline: 3px solid #f59e0b; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section.cc-cta { color: #fff; }
.section.cc-home-wrap { padding: 0; }
.sticky { position: sticky; top: 0; z-index: 100; }
.hidden { display: none !important; }

/* ===== LOCAL UTILITIES ===== */
.inline-block { display: inline-block; }
.grid-layout { display: grid; grid-auto-columns: 1fr; gap: 40px; }
.grid-span-full { grid-column: 1 / -1; }
.form-shell { margin: 0 0 15px; }
.form-success { display: none; padding: 20px; text-align: center; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; color: #166534; }
.form-error { display: none; margin-top: 10px; padding: 10px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; color: #dc2626; }
.honey-field { position: absolute; left: -9999px; opacity: 0; }

/* ===== NAVIGATION ===== */
.navigation { background: #fff; position: relative; width: 100%; }
.site-nav { background: #fff; position: relative; width: 100%; z-index: 1000; }
.navigation-wrap { display: flex; align-items: center; justify-content: space-between; max-width: 1140px; margin: 0 auto; padding: 0 20px; min-height: 70px; }
.logo-link { flex-shrink: 0; display: inline-block; }
.nav-brand { flex-shrink: 0; padding: 0; }
.logo-image { height: auto; max-height: 60px; width: auto; max-width: 235px; display: block; }
.menu { display: flex; align-items: center; }
.navigation-items { display: flex; align-items: center; gap: 0; }
.nav-menu { display: flex; align-items: center; gap: 0; }
.navigation-item { padding: 28px 15px; font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.nav-link { padding: 28px 15px; font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; display: block; }
.navigation-item:hover { background: #f8fafc; }
.nav-link:hover { background: #f8fafc; }
.menu-button { display: none; width: 40px; height: 40px; padding: 10px; cursor: pointer; background: none; border: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-button { display: none; width: 40px; height: 40px; padding: 10px; cursor: pointer; background: none; border: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-icon { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-icon-bars { display: flex; flex-direction: column; gap: 4px; }
.menu-icon-bars span { display: block; width: 22px; height: 2px; background: #475569; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.menu-button.is-open .menu-icon-bars span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-button.is-open .menu-icon-bars span:nth-child(2) { opacity: 0; }
.menu-button.is-open .menu-icon-bars span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 991px) {
  .menu-button { display: flex; }
  .nav-button { display: flex; }
  .navigation-items { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; border-bottom: 1px solid #e2e8f0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 99; }
  .nav-menu { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; flex-direction: column; border-bottom: 1px solid #e2e8f0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 99; }
  .navigation-items.is-open { display: flex; }
  .nav-menu.is-open { display: flex; }
  .navigation-item { padding: 15px 20px; width: 100%; border-bottom: 1px solid #f1f5f9; }
  .nav-link { padding: 15px 20px; width: 100%; border-bottom: 1px solid #f1f5f9; }
  .cc-contact-us { display: none; }
}

/* ===== BUTTONS ===== */
.button { display: inline-block; padding: 12px 24px; color: #fff !important; text-decoration: none !important; font-size: 14px; font-weight: 600; border-radius: 6px; border: none; cursor: pointer; text-align: center; transition: background 0.2s; }
.button-secondary { background: transparent; border-width: 2px; border-style: solid; }
.button-secondary:hover { color: #fff !important; }
.cc-contact-us { padding: 8px 20px; font-size: 13px; }
.cc-jumbo-button { padding: 16px 36px; font-size: 16px; border-radius: 8px; }

/* ===== HERO / INTRO ===== */
.intro-header { height: 420px; background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%); display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; position: relative; background-size: cover; background-position: center; }
.intro-header.cc-subpage { height: 320px; }
.intro-header.service-hero { height: 260px; background: linear-gradient(135deg, var(--vp-primary) 0%, var(--vp-primary-dark) 100%); }
.intro-content { max-width: 700px; padding: 20px; }
.hero-copy { max-width: 600px; margin: 0 auto; font-size: 16px; opacity: 0.9; }
.heading-jumbo { font-size: 52px; font-weight: 800; line-height: 1.1; font-family: Montserrat, sans-serif; }
.heading-jumbo-small { font-size: 36px; font-weight: 700; line-height: 1.2; font-family: Montserrat, sans-serif; }

@media (max-width: 767px) {
  .intro-header { height: 320px; }
  .intro-header.cc-subpage { height: 260px; min-height: 260px; }
  .intro-header.service-hero { height: 220px; }
  .heading-jumbo { font-size: 36px; }
  .heading-jumbo-small { font-size: 28px; }
}

/* ===== TYPOGRAPHY ===== */
.paragraph-light { font-size: 16px; line-height: 1.7; }
.paragraph-bigger { font-size: 18px; line-height: 1.6; }
.cc-bigger-light { color: var(--vp-muted); }
.cc-bigger-white-light { color: rgba(255,255,255,0.85); }
.label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.cc-light { color: var(--vp-muted); }
.section-heading-wrap { text-align: center; margin-bottom: 40px; }
.section-heading-wrap h2 { font-size: 32px; font-weight: 700; }
.section-heading { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.section-header { text-align: center; margin-bottom: 30px; }
.section-eyebrow { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.spaced-section-heading { margin-top: 2.5rem; }
.review-link-wrap { margin-top: 0.75rem; }
.review-link { color: var(--vp-primary); font-weight: 600; text-decoration: underline; }

/* ===== HOMEPAGE ===== */
.home-content-wrap { padding: 60px 0; }
.home-section-wrap { margin-bottom: 60px; }
.motto-wrap { max-width: 600px; margin-bottom: 40px; }
.cc-homepage { }
.cc-home-wrap { }
.cc-store-home-wrap { }

/* ===== FAQ ===== */
.faq-section { padding: 40px 0; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid #e2e8f0; padding: 16px 0; }
.faq-list summary { font-weight: 600; cursor: pointer; font-size: 16px; color: #1e293b; }
.faq-list summary::-webkit-details-marker { color: var(--vp-primary); }
.faq-list p { margin-top: 12px; font-size: 15px; line-height: 1.7; }

/* ===== SERVICE SECTIONS ===== */
.services-preview-section { padding: 60px 0; background: #f8fafc; }
.service-area-section { padding: 60px 0; }
.service-area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-area-copy { }
.service-area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; }
.service-area-list li,
.service-area-list span { padding: 8px 12px; background: #f1f5f9; border-radius: 6px; font-size: 14px; color: #475569; }
.service-area-actions { margin-top: 24px; }
.service-area-intro { max-width: 700px; margin-bottom: 1rem; }
.service-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.service-detail-card { background: #f8fafc; border-radius: 12px; padding: 24px; border: 1px solid #e2e8f0; }
.service-detail-copy { }
.service-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-page-card { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #e2e8f0; }
.service-page-card img { width: 52px; height: 52px; margin-bottom: 14px; }
.service-page-card h3 { color: var(--vp-primary, #0f3b5e); }
@media (max-width: 767px) {
  .service-area-layout, .service-detail-layout { grid-template-columns: 1fr; }
  .service-area-list { grid-template-columns: 1fr; }
}

/* ===== CTA SECTION ===== */
.cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-text { flex: 1; }
.cta-text .heading-jumbo-small { color: #fff; }
.cta-text .paragraph-bigger { color: rgba(255,255,255,0.8); }

@media (max-width: 767px) {
  .cta-wrap { flex-direction: column; text-align: center; }
}

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.project-cover-link { display: block; border-radius: 10px; overflow: hidden; }
.project-cover-pic { width: 100%; height: 240px; object-fit: cover; display: block; border-radius: 10px; transition: transform 0.3s; }
.project-cover-pic:hover { transform: scale(1.03); }
.project-name-wrap { padding: 12px 0; }
.project-name-wrap .paragraph-light { font-size: 15px; font-weight: 500; color: #475569; }

/* ===== TEAM / SERVICES ===== */
.team-members { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.team-service-item { justify-self: stretch; }
.team-pic { width: 80px; height: 80px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.team-pic .icons { width: 40px; height: 40px; }
.team-member-title-wrap { }
.team-member-name { font-size: 18px; font-weight: 600; margin-bottom: 4px; }

/* ===== ICONS ===== */
.icons { width: 40px; height: auto; }

/* ===== CONTACT FORM ===== */
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form-wrap { }
.contact-form-heading-wrap { margin-bottom: 24px; }
.contact-heading { font-size: 24px; font-weight: 700; }
.contact-form { }
.get-in-touch-form { }
.trust-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.trust-pill { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px; border: 1px solid var(--vp-border); border-radius: 6px; background: var(--vp-surface); color: var(--vp-primary); font-size: 12px; font-weight: 700; line-height: 1.2; }
.text-field { width: 100%; padding: 12px 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 14px; transition: border-color 0.2s; background: #fff; }
.cc-contact-field { margin-bottom: 16px; }
.cc-textarea { min-height: 120px; resize: vertical; }
.form-input { width: 100%; padding: 12px 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 14px; transition: border-color 0.2s; background: #fff; }
.form-select { width: 100%; padding: 12px 14px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 14px; transition: border-color 0.2s; background: #fff; appearance: auto; }
.status-message { }
.cc-success-message { }
.cc-error-message { }
.contact-next-steps { padding: 20px; margin-bottom: 24px; border: 1px solid var(--vp-border); border-radius: 8px; background: var(--vp-surface); }
.contact-next-steps ol { margin: 0; padding-left: 1.25rem; color: var(--vp-muted); }
.contact-next-steps li + li { margin-top: 0.5rem; }
.details-wrap { margin-bottom: 24px; }
.contact-email-link { font-weight: 500; display: block; margin-bottom: 4px; }
.contact-email-link:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .contact-form-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer { color: #fff; padding: 40px 0 24px; }
.site-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.site-footer-brand { }
.site-footer-logo { width: 180px; height: auto; margin-bottom: 12px; }
.site-footer-brand p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.site-footer-license { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 8px; }
.footer-trust-list { display: grid; gap: 6px; margin-top: 14px; color: rgba(255,255,255,0.78); font-size: 13px; }
.footer-trust-list span::before { content: "\2713 "; color: #fff; font-weight: 700; }
.site-footer-column h2 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: #fff; }
.site-footer-column a { display: block; color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 8px; text-decoration: none; }
.site-footer-column a:hover { color: #fff; }
.site-footer-column p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
@media (max-width: 767px) {
  .site-footer-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE CALL BAR ===== */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; }
.mobile-call-bar a { flex: 1; text-align: center; padding: 14px 10px; color: #fff; font-weight: 600; font-size: 14px; text-decoration: none; }
.mobile-call-bar a:first-child { border-right: 1px solid rgba(255,255,255,0.2); }
@media (max-width: 767px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 52px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.testimonial-card { background: #fff; border-radius: 12px; padding: 1.5rem; border: 1px solid #e2e8f0; position: relative; }
.testimonial-stars { font-size: 1.125rem; letter-spacing: 2px; margin-bottom: 0.75rem; color: #f59e0b; }
.testimonial-text { font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.875rem; }
.testimonial-location { font-size: 0.8125rem; }
.testimonial-card::before { content: "\201C"; position: absolute; top: 0.5rem; right: 1rem; font-size: 3rem; color: #e2e8f0; line-height: 1; font-family: Georgia, serif; }

/* ===== SKELETON LOADING ===== */
.skeleton { background: linear-gradient(90deg, var(--vp-surface) 25%, #f1f5f9 50%, var(--vp-surface) 75%); background-size: 200% 100%; animation: skeleton-pulse 1.5s ease-in-out infinite; border-radius: 6px; }
@keyframes skeleton-pulse { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card { min-height: 180px; padding: 1.5rem; }
.skeleton-line { height: 14px; margin-bottom: 10px; width: 100%; }
.skeleton-line:last-child { width: 60%; }
.skeleton-icon { width: 48px; height: 48px; border-radius: 50%; margin-bottom: 1rem; }

/* --- Google Review Badge --- */
.g-review-link:hover { background: var(--vp-primary) !important; color: #fff !important; border-color: var(--vp-primary) !important; }

/* --- Error Page --- */
.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; text-align: center; padding: 4rem 2rem; }
.error-code { font-size: 6rem; font-weight: 800; color: var(--vp-primary); line-height: 1; margin-bottom: 0.5rem; }
.error-title { font-size: 1.5rem; font-weight: 600; color: var(--vp-text); margin-bottom: 1rem; }
.error-text { color: var(--vp-muted); margin-bottom: 2rem; max-width: 480px; }
.error-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ===== MISC ===== */
.divider { height: 1px; background: #e2e8f0; margin: 16px 0; }
.empty-state { text-align: center; padding: 2rem 1rem; color: var(--vp-muted); }
.empty-state p { margin-top: 0.5rem; }
/* ===== HOMEPAGE EXTRA ===== */
.intro-text { margin-bottom: 2rem; }
.testimonials-section { background: #f8fafc; }
.testimonials-section .section-header { margin-bottom: 0; }

/* ===== ABOUT GRID (service area on about.html) ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.cc-about-2 { margin-top: 2.5rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }

/* ===== SERVICE AREAS PAGE ===== */
.area-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.area-card { background: #f8fafc; border-radius: 12px; padding: 1.5rem; border: 1px solid #e2e8f0; }
.area-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--vp-primary); margin-bottom: 0.75rem; }
.area-card ul { list-style: none; }
.area-card li { padding: 0.35rem 0; color: #475569; font-size: 0.9375rem; }
.area-card li::before { content: "\2713 "; color: #16a34a; font-weight: 700; }
.coverage-note { background: var(--vp-primary); color: #fff; border-radius: 12px; padding: 2rem; text-align: center; margin-top: 3rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  .navigation-wrap { min-height: 64px; }
  .navigation-items,
  .nav-menu { top: 64px; }
  .logo-image { max-width: 200px; max-height: 54px; }
  .projects-grid { gap: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .project-cover-pic { height: 220px; }
}

@media (max-width: 767px) {
  .section { padding: 32px 0; }
  .section-heading-wrap h2 { font-size: 26px; }
  .heading-jumbo-small { font-size: 24px; }
  .button,
  input[type="submit"].button { width: 100%; max-width: 320px; }
  .service-area-actions,
  .hero-action-row { align-items: stretch; }
  .service-page-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .team-members { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .site-footer-grid { gap: 22px; }
  .footer-trust-list { max-width: 320px; }
}

@media (max-width: 479px) {
  .intro-header { height: 280px; min-height: 280px; }
  .intro-header.cc-subpage { height: 220px; min-height: 220px; }
  .heading-jumbo { font-size: 28px; }
  .logo-image { max-width: 175px; }
  .navigation-wrap { padding: 0 12px; }
  .team-members { grid-template-columns: 1fr; }
}

/* ===== Theme System ===== */
:root {
  --vp-primary: #12385b;
  --vp-primary-dark: #0d2c49;
  --vp-accent: #c5312e;
  --vp-accent-dark: #a92422;
  --vp-surface: #f4f7fb;
  --vp-text: #102134;
  --vp-muted: #4f647a;
  --vp-border: #d7e1ec;
  --vp-focus-ring: rgba(18, 56, 91, 0.18);
}

/* ===== TOP SERVICE BAR ===== */
.top-service-bar {
  background: var(--vp-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.top-service-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.top-service-inner p {
  margin: 0;
}

.top-service-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-service-links a {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.top-service-links a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
}

.navigation,
.site-nav {
  border-bottom: 1px solid var(--vp-border);
  box-shadow: 0 4px 18px rgba(16, 33, 52, 0.06);
}

.navigation-item,
.nav-link {
  color: #2a3f57;
  font-weight: 600;
}

.navigation-item:hover,
.nav-link:hover {
  color: var(--vp-primary);
  background: #f3f7fc;
}

/* ===== HOMEPAGE HERO ===== */
.page-home .intro-header {
  min-height: 540px;
  height: auto;
  position: relative;
  background-image: linear-gradient(100deg, rgba(16, 33, 52, 0.88) 0%, rgba(18, 56, 91, 0.66) 48%, rgba(18, 56, 91, 0.4) 100%), url("images/landing-b.jpg");
  background-position: center;
  background-size: cover;
  text-align: left;
}

.page-home .intro-content {
  max-width: 740px;
  margin-right: auto;
  margin-left: 0;
  padding: 48px 20px;
}

.page-home .heading-jumbo {
  font-size: 58px;
  color: #fff;
  line-height: 1.03;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-action-row .cc-jumbo-white {
  background: #fff;
  color: var(--vp-primary) !important;
}

.hero-action-row .cc-jumbo-white:hover {
  background: #eef3fa;
}

/* ===== SERVICE HIGHLIGHTS ===== */
.service-highlights-bar {
  background: var(--vp-surface);
  border-top: 1px solid var(--vp-border);
  border-bottom: 1px solid var(--vp-border);
}

.service-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.service-highlight-item {
  background: #fff;
  border: 1px solid var(--vp-border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #1f3851;
  text-align: center;
}

.page-home .services-preview-section,
.page-home .testimonials-section,
.customer-review-section {
  background: var(--vp-surface);
}

.page-home .service-page-card,
.page-home .testimonial-card {
  border: 1px solid var(--vp-border);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(15, 34, 54, 0.05);
}

.section.cc-cta {
  background: linear-gradient(115deg, var(--vp-primary) 0%, var(--vp-primary) 64%, #1f4f79 100%);
}

@media (max-width: 991px) {
  .top-service-inner {
    min-height: 52px;
    flex-direction: column;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .service-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .top-service-inner p {
    text-align: center;
  }

  .top-service-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-highlights-grid {
    grid-template-columns: 1fr;
  }

  .page-home .intro-header {
    min-height: 460px;
  }

  .page-home .heading-jumbo {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-action-row .button {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 479px) {
  .page-home .heading-jumbo {
    font-size: 34px;
  }
}

body {
  color: var(--vp-text);
}

a {
  color: var(--vp-primary);
}

.navigation {
  border-bottom-color: var(--vp-border);
}

.navigation-item {
  color: var(--vp-muted);
}

.navigation-item:hover,
.navigation-item.is-current {
  color: var(--vp-primary);
}

.button:not(.cc-jumbo-white),
.cc-contact-us {
  background-color: var(--vp-accent);
  border-color: var(--vp-accent);
}

.button:not(.cc-jumbo-white):hover,
.cc-contact-us:hover {
  background-color: var(--vp-accent-dark);
  border-color: var(--vp-accent-dark);
}

.button.cc-jumbo-button.cc-jumbo-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--vp-primary);
}

.button.cc-jumbo-button.cc-jumbo-white:hover {
  background-color: var(--vp-surface);
  border-color: var(--vp-surface);
  color: var(--vp-primary);
}

.button.button-secondary,
.button-secondary {
  color: var(--vp-primary);
  border-color: var(--vp-primary);
}

.button.button-secondary:hover,
.button-secondary:hover {
  background-color: var(--vp-primary);
  color: #fff;
}

.label,
.section-eyebrow,
.testimonial-author,
.contact-email-link {
  color: var(--vp-primary);
}

.paragraph-light,
.testimonial-text,
.testimonial-location,
.faq-list p {
  color: var(--vp-muted);
}

.intro-header {
  background-color: var(--vp-primary);
}

.section.cc-cta,
.site-footer,
.mobile-call-bar {
  background-color: var(--vp-primary);
}

.mobile-call-bar a {
  background-color: var(--vp-primary);
}

.mobile-call-bar a:last-child {
  background-color: #fff;
  color: var(--vp-primary);
}

.site-footer .footer-utility-link {
  display: inline-block;
  margin-top: 0.5rem;
  background: #fff;
  color: var(--vp-primary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--vp-border);
  line-height: 1.3;
}

.site-footer .footer-utility-link + .footer-utility-link {
  margin-top: 0.375rem;
}

.site-footer .footer-utility-link:hover {
  background: var(--vp-primary);
  color: #fff;
  border-color: var(--vp-primary);
}

.services-preview-section,
.testimonials-section,
.customer-review-section,
.area-card,
.service-detail-card,
.service-page-card,
.testimonial-card {
  border-color: var(--vp-border);
}

.services-preview-section,
.testimonials-section,
.customer-review-section {
  background-color: var(--vp-surface);
}

.text-field:focus,
.form-input:focus,
.form-select:focus {
  border-color: var(--vp-primary);
  box-shadow: 0 0 0 3px var(--vp-focus-ring);
  outline: 2px solid var(--vp-primary);
  outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
