/* ============================================================
   Workman Company LLC - Global CSS
   Consolidated from Astro source:
   - global.css (variables, reset, typography, utils, buttons, forms)
   - TopBar.astro styles
   - Header.astro styles
   - Footer.astro styles
   - index.astro inline styles (all homepage sections)
   - about-page.css
   - service-page.css
   - faq.astro, warranty.astro, portfolios.astro, contact.astro inline styles
   ============================================================ */

/* === Fonts === */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* === CSS Variables === */
:root {
  --navy: #324158;
  --navy-light: #3d4f6a;
  --blue-accent: #60a0b6;
  --blue-light: #7ab8cc;
  --green-accent: #84b660;
  --teal: #6084b6;

  --text-dark: #000000;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #f3f4f6;

  --section-padding: 80px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-serif: 'Montserrat', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

.section {
  padding: var(--section-padding);
}

.section-dark {
  background-color: var(--navy);
  color: #ffffff;
}

.section-light {
  background-color: var(--bg-light);
}

.text-accent {
  color: var(--blue-accent);
}

.text-green {
  color: var(--green-accent);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.heading-accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--blue-accent);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-primary {
  background-color: var(--blue-accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--blue-light);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--navy);
  color: #ffffff;
}

.btn-green {
  background-color: var(--green-accent);
  color: #ffffff;
}

.btn-navy {
  background-color: var(--navy);
  color: #ffffff;
}

/* === Cards === */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* === Forms === */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 196, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Mobile nav state control */
.mobile-nav.open {
  display: flex !important;
}

@media (min-width: 1024px) {
  .mobile-nav,
  .mobile-nav.open {
    display: none !important;
  }
}

/* === Blog Post Styles === */
.post-header { padding: 60px 0 0; }
.post-header h1 { font-size: 2.2rem; margin-bottom: 8px; text-align: center; }
.post-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 24px; }
.post-hero-image { width: 100%; max-width: 800px; height: 400px; object-fit: cover; border-radius: var(--radius-lg); margin: 0 auto; display: block; background: var(--bg-gray); }
.post-caption { text-align: center; font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; font-style: italic; }
.post-body { max-width: 750px; margin: 0 auto; }
.post-body h2 { font-size: 1.6rem; margin: 32px 0 12px; }
.post-body h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.post-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.post-body .intro-paragraph { font-size: 1.05rem; }
.post-body a { color: var(--blue-accent); text-decoration: underline; }
.cta-section h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-section p { margin-bottom: 24px; opacity: 0.8; font-size: 1.1rem; }

/* === Blog Index Styles === */
.blog-hero { padding-top: 140px; padding-bottom: 16px; text-align: center; }
.blog-hero h1 { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; line-height: 1.2; }
.blog-hero .hero-subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.blog-grid-section { padding: 64px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-image { position: relative; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, var(--blue-accent), #6084b6); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-date { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--text-muted); }
.blog-title { font-size: 1.1rem; font-weight: 700; line-height: 1.4; color: var(--text-dark); transition: color 0.2s; }
.blog-card:hover .blog-title { color: var(--blue-accent); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } .blog-hero h1 { font-size: 2rem; } }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background-color: #324158;
  color: #ffffff;
  font-size: 1rem;
  padding: 12px 0;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.topbar-link:hover {
  color: var(--blue-accent);
}

.topbar-divider {
  opacity: 0.5;
}

.topbar-roc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.05rem;
}

.topbar-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--blue-accent);
  color: #ffffff;
  transition: background-color 0.2s;
}

.social-icon:hover {
  background-color: var(--blue-light);
}

.social-icon.yelp {
  background-color: var(--green-accent);
}

.social-icon.yelp:hover {
  background-color: #6fa04e;
}

.yelp-svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
  .topbar-info {
    flex-direction: column;
    font-size: 0.9rem;
    gap: 4px;
  }
  .topbar-divider,
  .topbar-roc {
    display: none;
  }
  .topbar-social {
    display: none;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 32px;
}

.logo-wrap {
  flex-shrink: 0;
  position: relative;
  border: 5px solid var(--blue-accent);
  margin-top: 4px;
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  border: 10px solid #fff;
}

.logo img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: fill;
}

.nav {
  display: none;
  align-items: center;
  gap: 48px;
  margin-left: 24px;
  margin-right: auto;
  flex-wrap: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.nav-link:hover {
  color: var(--blue-accent);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--blue-accent, #60a0b6);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 12px 0;
  z-index: 200;
  list-style: none;
  margin: 0;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 10px 18px;
  font-size: 0.92rem;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.15s;
}

.dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: #84b660;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 0.2s;
  text-decoration: none;
}

.header-call:hover {
  background: #6fa04e;
}

.header-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--blue-accent);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 0.2s;
  text-decoration: none;
}

.header-portal:hover {
  background: var(--blue-light);
}

.btn-label {
  display: none;
}

.mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-logo img {
  height: 40px;
  width: auto;
}

.mobile-toggle {
  color: var(--blue-accent);
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .logo-wrap {
    display: block;
  }
  .nav {
    display: flex;
  }
  .header-actions {
    display: flex;
  }
  .mobile-bar {
    display: none;
  }
}

@media (min-width: 1536px) {
  .btn-label {
    display: inline;
  }
}

@media (min-width: 1536px) {
  .nav {
    gap: 56px;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-accent, #60a0b6);
  padding: 24px 24px 32px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-services-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.services-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.mobile-services-group.open .services-chevron {
  transform: rotate(180deg);
}

.mobile-services-list {
  display: none;
  flex-direction: column;
  padding-bottom: 8px;
}

.mobile-services-group.open .mobile-services-list {
  display: flex;
}

.mobile-nav-sublink {
  display: block;
  padding: 8px 0 8px 16px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mobile-nav-sublink:hover {
  color: #fff;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-nav-call {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--blue-accent, #60a0b6);
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-portal {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--navy);
  color: #ffffff;
  padding: 64px 0 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer .container {
  max-width: 1280px;
}

.footer-top {
  padding: 60px 0 30px;
  text-align: center;
}

.footer-brand {
  max-width: 700px;
  margin: 0 auto;
}

.footer-logo-frame {
  display: inline-block;
  border: 5px solid #fff;
  margin: 0 auto 20px;
}

.footer-logo {
  height: auto;
  width: 500px;
  max-width: 100%;
}

.footer-about {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.footer-info {
  padding: 0 0 40px;
}

.footer-info .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}

.footer-info .info-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px;
}

.footer-info .info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.footer-info .info-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info .info-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-info .info-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-info .info-card a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.footer-info .info-card a:hover {
  color: var(--blue-light);
}

.footer-info .info-card p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.footer-links {
  padding: 30px 0;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.links-section h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.links-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-links-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.service-links-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.links-section a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.links-section a:hover {
  color: var(--blue-light);
}

.portal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--blue-accent, #60a0b6);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.portal-btn:hover {
  background: var(--blue-light, #7ab8cc);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.bottom-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.powered-by {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.powered-by a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.powered-by a:hover {
  color: #ffffff;
}

.bottom-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.footer-bottom .social-icon {
  width: 44px;
  height: 44px;
  background-color: var(--blue-accent);
}

.footer-bottom .social-icon:hover {
  background-color: var(--blue-light);
}

@media (max-width: 768px) {
  .footer-info .info-grid {
    grid-template-columns: 1fr;
  }
  .links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .bottom-social {
    flex-direction: column;
  }
}

/* ============================================================
   HOMEPAGE - HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 55em;
  background: #324158;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 80rem;
  padding: 4rem 2rem;
}

.hero-concierge-card {
  background: #fff;
  border: 10px solid #60a0b6;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.concierge-pill {
  display: inline-block;
  background: #60a0b6;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

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

.concierge-slide {
  display: none;
}

.concierge-slide.active {
  display: block;
}

.concierge-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #6084B6, #60a0b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.concierge-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.concierge-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}

.concierge-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.concierge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s;
}

.concierge-dot.active {
  background: #60a0b6;
}

.hero-content {
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.hero-content h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-content > p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #60a0b6;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}

.btn-hero:hover {
  background: #60a0b6;
  color: #fff;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.hero-dot.active {
  background: #fff;
}

/* ============================================================
   HOMEPAGE - ESTIMATE + 1 STOP SHOP
   ============================================================ */
.text-center { text-align: center; }
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); margin-bottom: 40px; }

.estimate-services-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.estimate-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.estimate-wrapper .section-title { text-align: center; }
.estimate-wrapper .section-subtitle { text-align: center; font-size: 0.9rem; }

.step-progress {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.step-indicator { font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; }
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; flex: 1; }
.progress-fill { height: 100%; background: var(--blue-accent); border-radius: 3px; transition: width 0.3s; }
.progress-label { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }
.step { display: none; }
.step.active { display: block; }
.step h3 { margin-bottom: 16px; text-align: center; font-size: 1.2rem; }
.budget-slider { margin-top: 24px; }
.budget-slider p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.slider-track { position: relative; }
.budget-range { width: 100%; accent-color: var(--blue-accent); }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); }
.step-nav { display: flex; justify-content: space-between; margin-top: 24px; }
.step-prev { font-size: 0.85rem; }
.step-next { font-size: 0.85rem; }

.one-stop-shop .section-title { text-align: center; margin-bottom: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card svg { margin: 0 auto 8px; }
.service-card h3 { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }

/* ============================================================
   HOMEPAGE - CR BANNER
   ============================================================ */
.cr-banner {
  padding: 48px 0;
  background: #fff;
}

.cr-banner-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}

.cr-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   HOMEPAGE - WHY CHOOSE
   ============================================================ */
.cr-inline {
  text-align: center;
  margin: 48px 0 80px;
}

.cr-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cr-video-wrap {
  display: flex;
  justify-content: center;
}

.cr-youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: none;
  margin-bottom: 2rem;
}

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

.cr-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark, #111827);
  margin-bottom: 1rem;
}

.cr-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.cr-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cr-feature-card {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.cr-feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cr-feature-icon {
  margin-right: 0.75rem;
  color: #60a0b6;
  flex-shrink: 0;
}

.cr-feature-card span {
  color: #374151;
  font-size: 1.125rem;
  text-align: left;
}

.why-layout {
  display: flex;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.why-photo {
  position: relative;
  flex-shrink: 0;
  width: 33.333%;
  align-self: stretch;
}

.why-video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  height: 100%;
}

.why-video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.why-award-circle {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #6084b6;
  overflow: hidden;
  z-index: 2;
}

.why-award-circle img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.why-star-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: #60a0b6;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}

.why-text {
  flex: 1;
}

.why-text h2 {
  color: #6084b6;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-icon {
  padding: 0.75rem;
  border-radius: 50%;
  background: rgba(96, 132, 182, 0.2);
  color: #6084b6;
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.why-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-item-title.skills,
.why-item-title.mission,
.why-item-title.vision {
  color: #6084b6;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.award-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 2rem;
}

.award-badges img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================================
   HOMEPAGE - BEFORE & AFTER
   ============================================================ */
.before-after {
  background: #f9fafb;
  padding-top: 4rem;
  padding-bottom: 0;
}

.ba-showcases {
  background: #fff;
}

.ba-main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.2;
}

.ba-accent {
  color: #84b660;
}

.ba-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  line-height: 1.6;
}

.ba-roc-row {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.ba-roc-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #4b5563;
}

.ba-star-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #facc15;
}

.ba-cta-row {
  text-align: center;
  margin-bottom: 2rem;
}

.ba-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 9999px;
  background: #60a0b6;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.ba-cta-btn:hover {
  background: #4d8a9e;
}

.roc-badge { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 30px; }

.ba-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
}

.ba-showcase-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.ba-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-title { font-size: 1.875rem; font-weight: 700; color: #111827; margin-bottom: 16px; }
.ba-desc { font-size: 1.125rem; color: #4b5563; line-height: 1.6; margin-bottom: 24px; }
.ba-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.ba-feature-item {
  display: flex;
  align-items: center;
  color: #374151;
  font-size: 0.95rem;
}

.ba-dot {
  width: 8px;
  height: 8px;
  background: #60a0b6;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.ba-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ba-gallery-row img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  background: #1e293b;
  transition: transform 0.5s;
}

.ba-gallery-row img:hover {
  transform: scale(1.1);
}

/* ============================================================
   HOMEPAGE - TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #fff; padding-top: 60px; padding-bottom: 60px; }
.testimonials-header { margin-bottom: 48px; }
.rating-summary { margin: 24px 0; }
.rating-stars-row { display: flex; align-items: center; justify-content: center; gap: 4px; }
.star-icon { width: 20px; height: 20px; fill: #facc15; }
.rating-text { color: #4b5563; margin-left: 12px; }

.share-experience-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #60a0b6;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.2s;
}

.share-experience-btn:hover { background: #4e8a9e; }
.btn-star-icon { width: 16px; height: 16px; }

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  max-width: 80rem;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  border: 1px solid #e0eef3;
}

.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.star-review { width: 18px; height: 18px; fill: #f97316; }

.quote-icon {
  width: 24px;
  height: 24px;
  fill: #60a0b6;
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-text {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 24px;
}

.reviewer-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-top: auto;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e5e7eb;
  overflow: hidden;
  margin-right: 16px;
  flex-shrink: 0;
}

.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-info h4 { font-weight: 700; color: #111827; font-size: 0.95rem; }
.reviewer-info p { font-size: 0.85rem; color: #737373; margin-top: 2px; }

.testimonial-nav {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-prev, .testimonial-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #60a0b6;
  background: #fff;
  color: #60a0b6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.testimonial-prev:hover, .testimonial-next:hover {
  background: #60a0b6;
  color: #fff;
}

/* ============================================================
   HOMEPAGE - FAQ SECTION
   ============================================================ */
.faq-header-section { background: #fff; padding-top: 80px; padding-bottom: 40px; }

.faq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #60a0b6;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 40px;
  transition: background 0.2s;
}

.faq-more-btn:hover { background: #4e8a9e; }

.faq-content-section { padding-top: 0; background: #fff; }

.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 80rem;
  margin: 0 auto;
}

.process-card {
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
}

.process-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: #6084b6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.process-heading-icon {
  width: 32px;
  height: 32px;
  fill: #84b660;
  margin-right: 12px;
  display: none;
}

@media (min-width: 1024px) {
  .process-heading-icon { display: inline-flex; }
}

.process-step {
  display: flex;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  margin-bottom: 8px;
  padding: 12px 0;
}

.process-step-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.process-step-icon svg {
  width: 32px;
  height: 32px;
  fill: #84b660;
}

.process-step-text { flex: 1; }

.process-step-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.process-step-text p {
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.6;
}

.faq-subheading {
  font-size: 1.875rem;
  font-weight: 700;
  color: #6084b6;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-heading-icon {
  width: 32px;
  height: 32px;
  fill: #84b660;
  margin-right: 12px;
  display: none;
}

@media (min-width: 1024px) {
  .faq-heading-icon { display: inline-block; }
}

.faq-list { margin: 0 0 32px; max-width: none; }

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid #e0eef3;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item summary {
  width: 100%;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-item summary:hover { background: #f0f7fa; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #6084b6;
  padding-right: 16px;
  margin: 0;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: #737373;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-body {
  padding: 0 24px 24px;
  border-top: 1px solid #e0eef3;
  margin-top: -1px;
}

.faq-body p {
  color: #737373;
  line-height: 1.7;
  margin-top: 16px;
  padding: 0;
}

.faq-note {
  margin-top: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
}

.faq-note p {
  font-size: 0.875rem;
  margin-top: 0;
}

.faq-sub-list { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.faq-sub-item { display: flex; align-items: flex-start; gap: 12px; }

.faq-sub-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(96, 160, 182, 0.1);
  color: #60a0b6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.faq-sub-item strong { color: #0f172a; font-size: 0.95rem; display: block; margin-bottom: 2px; }
.faq-sub-item p { padding: 0; margin: 4px 0 0; font-size: 0.9rem; color: #737373; line-height: 1.6; }

.still-questions-bar {
  background: linear-gradient(to right, #6084b6, #60a0b6);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
}

.still-questions-bar h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.still-questions-bar > p { opacity: 0.9; margin-bottom: 16px; }

.still-questions-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .still-questions-actions { flex-direction: row; }
}

.btn-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-sq svg { fill: currentColor; flex-shrink: 0; }
.btn-sq-phone { background: #fff; color: #6084b6; }
.btn-sq-phone:hover { background: #f0f7fa; }
.btn-sq-email { background: #84b660; color: #fff; }
.btn-sq-email:hover { background: #739f55; }

/* ============================================================
   HOMEPAGE - WARRANTY PREVIEW
   ============================================================ */
.warranty-preview {
  background: linear-gradient(to bottom right, #f8fafc, #f5f0eb);
  padding-top: 64px;
  padding-bottom: 64px;
}

.warranty-header { margin-bottom: 48px; }

.warranty-shield-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #60a0b6;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  margin-bottom: 24px;
}

.warranty-shield-svg { color: #fff; }

.warranty-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.warranty-subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 48rem;
  margin: 0 auto 24px;
}

.warranty-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #84b660;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.warranty-coverage-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  padding: 32px;
  margin-bottom: 48px;
  border-left: 4px solid #60a0b6;
}

.warranty-coverage-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.warranty-coverage-card p {
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.6;
}

.warranty-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.warranty-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 32px;
}

.covered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.covered-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 24px;
  transition: box-shadow 0.3s;
}

.covered-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }

.covered-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.covered-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #84b660;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.covered-check { flex-shrink: 0; }
.covered-card h4 { font-size: 1.125rem; font-weight: 600; color: #0f172a; margin-bottom: 8px; }
.covered-card p { font-size: 0.875rem; color: #475569; }

.warranty-not-covered-section .warranty-section-title { text-align: left; }

.not-covered-list {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 32px;
}

.not-covered-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  transition: background 0.2s;
}

.not-covered-item:hover { background: #f8fafc; }
.not-covered-x { flex-shrink: 0; margin-top: 4px; }
.not-covered-item p { color: #475569; font-size: 1.125rem; }

.warranty-claims { margin-bottom: 48px; }

.claims-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.claims-step {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.claims-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.claims-step-1 { background: #60a0b6; }
.claims-step-2 { background: #84b660; }
.claims-step-3 { background: #6084b6; }
.claims-step h4 { font-size: 1.25rem; font-weight: 600; color: #0f172a; margin-bottom: 12px; }
.claims-step p { color: #475569; font-size: 0.875rem; }
.claims-step a { color: #3b82f6; font-weight: 600; }
.claims-step a:hover { color: #1d4ed8; }

.limitations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.limitation-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 24px;
  border-top: 4px solid #6084b6;
}

.limitation-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #6084b6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.limitation-card h4 { font-size: 1.125rem; font-weight: 600; color: #0f172a; margin-bottom: 12px; }
.limitation-card p { color: #475569; font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   HOMEPAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .hero { min-height: 36em; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-concierge-card { display: none; }
  .hero-content { text-align: center; }
  .hero-content h1 { font-size: 2rem; }
  .hero-actions { justify-content: center; }
  .estimate-services-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .ba-showcase { grid-template-columns: 1fr; gap: 24px; }
  .faq-two-col { grid-template-columns: 1fr; }
  .warranty-two-col { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; text-align: center; }
  .process-step-text h3 { text-align: center; }
  .process-step-text p { text-align: center; }
  .why-layout { flex-direction: column; }
  .why-photo { width: 100%; max-width: 400px; margin: 0 auto; }
  .why-award-circle { width: 5rem; height: 5rem; top: -1.5rem; right: -1rem; }
  .cr-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .claims-steps { grid-template-columns: 1fr; }
  .limitations-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cr-features-grid { grid-template-columns: 1fr; }
  .ba-main-heading { font-size: 2rem; }
  .award-badges { grid-template-columns: 1fr; }
  .covered-grid { grid-template-columns: 1fr; }
  .ba-gallery-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-carousel { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 100px 0 48px;
  text-align: center;
  background: #fff;
}

.about-hero h1 { font-size: 2.5rem; margin-bottom: 16px; font-weight: 800; }
.about-hero-subtitle { font-size: 1.25rem; color: #475569; max-width: 600px; margin: 0 auto 20px; }

.roc-badge-about {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  font-size: 0.9rem;
}

.roc-badge-about svg { color: #facc15; }

.about-badges { padding: 32px 0; text-align: center; }

.badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.badges-row img { height: 140px; width: auto; object-fit: contain; }

.about-videos { padding: 0 0 48px; }

.video-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.video-item {
  border-radius: 12px;
  overflow: hidden;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story { padding: 48px 0 60px; }
.story-heading { text-align: center; margin-bottom: 32px; font-size: 1.875rem; color: #6084b6; }
.story-content { max-width: 800px; margin: 0 auto; }
.story-content p { font-size: 1rem; line-height: 1.8; color: #334155; margin-bottom: 20px; }

.about-team-section { padding: 40px 0 20px; }

.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 6px solid #e0eef3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-pill.green { background: #84b660; color: #fff; }
.team-pill.blue { background: #60a0b6; color: #fff; }
.team-text h3 { font-size: 1.75rem; color: #6084b6; margin-bottom: 12px; }
.team-text p { font-size: 0.95rem; color: #475569; line-height: 1.7; }

.about-testimonials-cta {
  padding: 80px 0 40px;
  background: #f9fafb;
}

.about-reviews-section {
  padding: 0 0 80px;
  background: #fff;
}

.testimonials-header { text-align: center; margin-bottom: 0; }
.heading-accent-white { font-style: italic; color: #84b660; }

.testimonials-subtitle {
  color: #475569;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.about-star { width: 20px; height: 20px; fill: #facc15; }
.rating-row span { color: #475569; margin-left: 8px; }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #60a0b6;
  color: #fff;
  border-radius: 999px;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.share-btn:hover { background: #4e8a9e; }

.about-reviews {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.about-reviews::-webkit-scrollbar { display: none; }

.about-review-card {
  background: #fff;
  border: 1px solid #e0eef3;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-star { width: 16px; height: 16px; fill: #f97316; }

.review-text {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-author strong { color: #111827; font-size: 0.9rem; }
.review-author span { color: #737373; font-size: 0.8rem; }

@media (max-width: 768px) {
  .team-member { grid-template-columns: 1fr; text-align: center; }
  .about-reviews { flex-direction: column; }
  .about-hero h1 { font-size: 2rem; }
  .team-photo { width: 240px; height: 240px; }
  .video-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.service-hero {
  background: linear-gradient(135deg, #f8fafc, #f5f0eb);
  padding: 140px 0 0;
}

.service-hero .hero-header {
  text-align: center;
  margin-bottom: 48px;
}

.service-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.service-hero .hero-subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 48rem;
  margin: 0 auto;
}

.service-hero .hero-image {
  margin-bottom: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 16/9;
  max-width: 100%;
}

.service-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.service-intro-block {
  border-left: 4px solid var(--blue-accent);
  padding-left: 24px;
  margin: 0 0 48px;
}

.service-intro-block p {
  color: #334155;
  line-height: 1.7;
  font-size: 1.125rem;
}

.service-intro-block a {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.service-intro-block a:hover {
  color: #1d4ed8;
}

.service-handle-section {
  margin-bottom: 48px;
}

.service-handle-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
  text-align: center;
}

.service-handle-section h2 span {
  color: var(--green-accent);
}

.handle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.handle-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(96, 160, 182, 0.125);
  transition: background-color 0.3s;
}

.handle-card:hover {
  background-color: rgba(96, 160, 182, 0.05);
}

.handle-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: #0f172a;
}

.handle-icon svg {
  width: 18px;
  height: 18px;
  fill: #0f172a;
  stroke: #0f172a;
}

.handle-card-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.handle-card-content p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  border-top: 4px solid var(--teal);
}

.info-card:nth-child(2) {
  border-top-color: var(--green-accent);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card p {
  color: #334155;
  line-height: 1.7;
}

.service-showcase {
  margin-bottom: 48px;
}

.service-showcase h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
  text-align: center;
}

.service-showcase h2 span {
  color: var(--blue-accent);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showcase-item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.showcase-item .showcase-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.showcase-item:hover img {
  transform: scale(1.1);
}

.service-cta {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.service-cta .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.service-cta .cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  max-width: 56rem;
  margin: 0 auto;
}

.service-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-cta .cta-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 42rem;
}

.service-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  background: var(--green-accent);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: opacity 0.2s;
  text-decoration: none;
}

.service-cta .cta-btn:hover {
  opacity: 0.9;
}

.service-cta .cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.service-cta .cta-btn:hover svg {
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .service-hero { padding-top: 100px; }
  .service-hero h1 { font-size: 1.75rem; }
  .handle-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .service-cta h2 { font-size: 1.75rem; }
  .service-cta { height: 350px; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-hero {
  padding-top: 140px;
  padding-bottom: 48px;
  background: linear-gradient(135deg, #f8fafc, #f5f5f4);
  text-align: center;
}

.faq-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-content {
  padding: 48px 0 64px;
  background: linear-gradient(135deg, #f8fafc, #f5f5f4);
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  background: #f1f5f9;
}

.tab-btn.active {
  background: var(--blue-accent);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.faq-page-list {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-page-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.faq-page-item summary {
  padding: 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
}

.faq-page-item summary:hover { background: #f8fafc; }
.faq-page-item summary::-webkit-details-marker { display: none; }

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding-right: 16px;
}

.chevron {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.2s;
}

.faq-page-item[open] .chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

.faq-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.faq-sub-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-sub-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(96, 160, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent, #60a0b6);
  margin-top: 2px;
}

.faq-sub-icon svg { width: 18px; height: 18px; }
.faq-sub-item strong { color: var(--text-dark, #1a1a1a); font-size: 0.95rem; }
.faq-sub-desc { margin-top: 4px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.faq-suffix { margin-top: 16px; }

.faq-cta-section {
  padding: 0 0 64px;
  background: linear-gradient(135deg, #f8fafc, #f5f5f4);
}

.still-questions {
  background: linear-gradient(to right, #1e293b, #0f172a);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.still-questions h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.still-questions p { opacity: 0.9; margin-bottom: 16px; }

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-btn-light { background: #fff; color: #1e293b; }
.cta-btn-light:hover { background: #f1f5f9; }
.cta-btn-green { background: var(--green-accent); color: #fff; }
.cta-btn-green:hover { background: #6fa04e; }

@media (max-width: 640px) {
  .faq-hero h1 { font-size: 2rem; }
  .faq-page-item summary { padding: 16px; }
  .faq-answer { padding: 0 16px 16px; }
  .faq-question { font-size: 1rem; }
}

/* ============================================================
   WARRANTY PAGE
   ============================================================ */
.warranty-hero {
  padding-top: 140px;
  padding-bottom: 48px;
  background: linear-gradient(135deg, #f8fafc, #f5f5f4);
  text-align: center;
}

.hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #60a0b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

.warranty-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--green-accent);
  color: #fff;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
}

.warranty-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #f8fafc, #f5f5f4);
}

.warranty-page-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 32px;
}

.coverage-intro {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid #60a0b6;
}

.coverage-intro h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.coverage-intro p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.1rem;
}

.covered-not-covered-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.covered-not-covered-row .warranty-page-section-title {
  text-align: left;
  font-size: 1.5rem;
}

.warranty-page-covered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.warranty-covered-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  transition: box-shadow 0.3s;
}

.warranty-covered-card:hover { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); }

.covered-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.covered-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  box-shadow: var(--shadow-md);
}

.check-icon { color: var(--green-accent); }

.warranty-covered-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.warranty-covered-card p { font-size: 0.875rem; color: var(--text-muted); }
.icon-white { color: #fff; }

.not-covered-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.not-covered-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: background-color 0.2s;
}

.not-covered-row:hover { background: #f8fafc; }
.x-icon { flex-shrink: 0; color: #6084b6; margin-top: 2px; }
.not-covered-row p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.5; }

.warranty-claims-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.claim-step {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-lg);
}

.step-icon-primary { background: #60a0b6; }
.step-icon-green { background: var(--green-accent); }
.step-icon-secondary { background: #6084b6; }

.claim-step h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.claim-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.claim-step a { color: #3b82f6; font-weight: 600; }
.claim-step a:hover { color: #1d4ed8; }

.warranty-limitations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.warranty-limitation-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  border-top: 4px solid #6084b6;
}

.limitation-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #6084b6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.warranty-limitation-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.warranty-limitation-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.warranty-cta { position: relative; }

.cta-bg-wrap {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px;
  max-width: 800px;
}

.cta-inner h2 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-inner p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 32px; }

.warranty-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--green-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: background-color 0.2s;
}

.warranty-cta-btn:hover { background: #6fa04e; }

@media (max-width: 768px) {
  .covered-not-covered-row { grid-template-columns: 1fr; }
  .warranty-page-covered-grid { grid-template-columns: 1fr; }
  .warranty-claims-grid { grid-template-columns: 1fr; }
  .warranty-limitations-grid { grid-template-columns: 1fr; }
  .warranty-hero h1 { font-size: 2rem; }
  .cta-inner h2 { font-size: 1.8rem; }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-hero {
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
}

.gallery-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.heading-accent-green {
  color: var(--green-accent);
}

.gallery-content {
  padding-bottom: 80px;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-gray);
  transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-badge {
  background: var(--blue-accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.3); }

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

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

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-hero h1 { font-size: 2rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-content {
  padding-bottom: 64px;
}

.contact-grid {
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.map-card .map-embed iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.contact-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.detail-row a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.detail-row a:hover {
  color: var(--blue-accent);
  text-decoration: underline;
}

.icon { flex-shrink: 0; margin-top: 1px; }
.icon-green { color: var(--green-accent); }

.form-card { padding: 24px; }

.form-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6084b6;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e0eef3;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #737373;
  margin-bottom: 4px;
}

.required { color: #ef4444; }

.contact-form .form-input,
.contact-form textarea {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e0eef3;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  font-family: inherit;
}

.contact-form .form-input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6084b6;
  box-shadow: 0 0 0 3px rgba(96, 132, 182, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.slider-wrapper { padding: 16px 0; }
.priority-slider { width: 100%; accent-color: var(--blue-accent); }

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.submit-btn {
  width: 100%;
  padding: 12px 24px;
  background: #6084b6;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn:hover { background: #4a7e90; }

@media (max-width: 900px) {
  .contact-info-col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .contact-hero h1 { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .map-card, .form-card, .info-card, .card { max-width: 100%; width: 100%; box-sizing: border-box; overflow: hidden; }
  .contact-grid { padding: 0 16px; }
  .contact-content { overflow: hidden; }
  .contact-info-col { gap: 16px; }
}
