/* ══════════════════════════════════════════════════════════
   Palm Bay Epoxy Flooring — palmbayepoxyflooring.com
   Design System — Dark Navy / Electric Blue
   ══════════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ── */
:root {
  /* Colors */
  --primary: #1e3a5f;
  --primary-dark: #0f2744;
  --primary-light: #2a5080;
  --accent: #00a8ff;
  --accent-hover: #0090dd;
  --accent-glow: rgba(0, 168, 255, 0.3);
  --dark: #0d1117;
  --dark-mid: #161b22;
  --dark-light: #21262d;
  --light: #f0f6fc;
  --white: #ffffff;
  --muted: #8b949e;
  --text-body: #c9d1d9;
  --success: #2ea043;
  --border: #30363d;

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --fs-h1: 2rem;
  --fs-h2: 1.6rem;
  --fs-h3: 1.25rem;
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.8rem;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.24);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
  --transition: 0.3s ease;
}

@media (min-width: 1024px) {
  :root {
    --fs-h1: 3rem;
    --fs-h2: 2.2rem;
    --fs-h3: 1.5rem;
    --header-height: 80px;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 52px;
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { text-decoration: none; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* ── 3. Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

/* ── 4. Utility Classes ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ── 5. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}

.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn--phone {
  font-size: 1.1rem;
  padding: 16px 32px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--wide {
  width: 100%;
  justify-content: center;
}

/* ── 6. Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 39, 68, 0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 36px;
  height: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1;
}

/* Desktop nav */
.site-header__nav { display: none; }

.site-header__nav a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--accent);
}

/* Header CTA */
.site-header__cta { display: none; }

/* Hamburger toggle */
.site-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .site-header__cta {
    display: inline-flex;
    margin-left: 16px;
  }

  .site-header__toggle { display: none; }
}

/* ── 7. Mobile Navigation ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  z-index: 999;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--accent); }

.mobile-nav__cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav__cta .btn { width: 100%; justify-content: center; }

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

/* ── 8. Sticky Mobile CTA ── */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.25);
}

.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition);
}

.sticky-cta__call { background: var(--accent); }
.sticky-cta__call:hover { background: var(--accent-hover); color: var(--white); }

.sticky-cta__text { background: var(--primary); }
.sticky-cta__text:hover { background: var(--primary-light); color: var(--white); }

@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ── 9. Hero Section ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

/* Responsive hero background */
.hero--home { background-image: url('images/webp/hero-epoxy-garage-floor-palm-bay-400w.webp'); }
@media (min-width: 768px) { .hero--home { background-image: url('images/webp/hero-epoxy-garage-floor-palm-bay-800w.webp'); } }
@media (min-width: 1024px) { .hero--home { background-image: url('images/webp/hero-epoxy-garage-floor-palm-bay-1200w.webp'); } }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.92), rgba(30, 58, 95, 0.85));
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, var(--dark) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__title {
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
  font-family: var(--font-body);
  text-transform: none;
}

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

@media (min-width: 1024px) {
  .hero {
    min-height: 70vh;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
  }

  .hero__content { padding: 0 40px; }
}

/* ── 10. Page Hero ── */
.page-hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  background: var(--primary-dark);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero__breadcrumb {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
  text-transform: none;
}

.page-hero__breadcrumb a {
  color: var(--accent);
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { color: var(--muted); margin: 0 6px; }

.page-hero__title {
  margin-bottom: 12px;
}

.page-hero__subtitle {
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  font-family: var(--font-body);
  text-transform: none;
}

/* ── 10b. Page Hero Overlay (for background images) ── */
.page-hero { position: relative; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.88), rgba(30,58,95,0.82));
  z-index: 0;
}
.page-hero .container, .page-hero__breadcrumb, .page-hero__title, .page-hero__subtitle {
  position: relative; z-index: 1;
}
.page-hero__actions { position: relative; z-index: 1; }
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, var(--dark) 100%);
  pointer-events: none;
}

/* ── 10c. Nav Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown__label {
  color: rgba(255,255,255,0.85); font-family: var(--font-heading); font-weight: 500;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.03em;
  cursor: pointer; transition: color var(--transition); background: none; border: none;
  display: flex; align-items: center; gap: 4px; padding: 0;
}
.nav-dropdown__label:hover { color: var(--accent); }
.nav-dropdown__label svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown__label svg { transform: rotate(180deg); }
.nav-dropdown__menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--primary-dark); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 0; min-width: 200px; z-index: 1001; padding-top: 20px; margin-top: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-dropdown__menu::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 20px;
  background: transparent;
}
.nav-dropdown__menu > a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.nav-dropdown__menu > a:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.nav-dropdown:hover .nav-dropdown__menu { display: block; }
.nav-dropdown__menu a {
  display: block; padding: 10px 20px; color: rgba(255,255,255,0.85);
  font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.03em; white-space: nowrap; transition: all 0.2s;
}
.nav-dropdown__menu a:hover { color: var(--accent); background: rgba(255,255,255,0.05); }

/* ── 10d. Trust Badges Dark Variant ── */
.trust-badges--dark { background: transparent; padding: 32px 0; }
.trust-badges--dark .trust-badge__label { color: var(--white); }
.trust-badges--dark .trust-badge__img {
  background: var(--white); border-radius: 50%; padding: 8px;
}

/* ── 11. Sections ── */
.section { padding: 48px 0; }

@media (min-width: 768px) {
  .section { padding: 64px 0; }
}

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

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

.section--primary {
  background: var(--primary);
  color: var(--white);
}

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

.section--light h2,
.section--light h3 {
  color: var(--primary-dark);
}

.section--light p,
.section--light li {
  color: #374151;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__header h2 {
  margin-bottom: 12px;
}

.section__header p {
  color: var(--text-body);
  font-size: 1.05rem;
  font-family: var(--font-body);
  text-transform: none;
}

.section--light .section__header p {
  color: #6b7280;
}

/* ── 12. Trust Badges ── */
.trust-badges {
  padding: 48px 0;
  background: var(--white);
}

.trust-badges__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .trust-badges__grid { gap: 32px; }
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-badge { width: 160px; }
}

.trust-badge__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .trust-badge__img {
    width: 100px;
    height: 100px;
  }
}

.trust-badge__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary-dark);
  line-height: 1.3;
}

/* ── 13. Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
  .services-grid--2x2 { grid-template-columns: 1fr 1fr; }
}

.service-card {
  background: var(--dark-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  margin-bottom: 8px;
}

.service-card__text {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
  font-family: var(--font-body);
  text-transform: none;
}

.service-card__link {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* ── 14. Before/After Grid ── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ba-item {
  position: relative;
}

.ba-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .ba-item img { height: 300px; }
}

.ba-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── 15. Process Steps ── */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.process-step:last-child { margin-bottom: 0; }

.process-step__number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__content h3 {
  margin-bottom: 8px;
}

.process-step__content p {
  color: var(--text-body);
  line-height: 1.6;
  font-family: var(--font-body);
  text-transform: none;
}

.process-step__img {
  margin-top: 16px;
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.process-steps--detailed {
  max-width: 800px;
  margin: 0 auto;
}

.process-step--with-image {
  margin-bottom: 48px;
}

.process-step--with-image:last-child {
  margin-bottom: 0;
}

/* ── 16. FAQ Accordion ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-item__question:hover { color: var(--accent); }

.faq-item__question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item--open .faq-item__question::after {
  content: "\2212";
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 0 20px;
  color: var(--text-body);
  line-height: 1.7;
  font-family: var(--font-body);
  text-transform: none;
}

/* ── 17. Lead Form ── */
.lead-form {
  background: var(--dark-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

@media (min-width: 768px) {
  .lead-form { padding: 32px; }
}

.lead-form__title {
  margin-bottom: 4px;
}

.lead-form__subtitle {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  text-transform: none;
}

.lead-form__group {
  margin-bottom: 16px;
}

.lead-form__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
}

.lead-form__input,
.lead-form__select,
.lead-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-mid);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.lead-form__select { cursor: pointer; }

.lead-form__input:focus,
.lead-form__select:focus,
.lead-form__textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.lead-form__input::placeholder,
.lead-form__textarea::placeholder {
  color: var(--muted);
}

.lead-form__textarea {
  min-height: 100px;
  resize: vertical;
}

.lead-form__submit {
  width: 100%;
  margin-top: 8px;
}

.lead-form__consent {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

.lead-form__consent a {
  color: var(--muted);
  text-decoration: underline;
}

.lead-form__consent a:hover { color: var(--accent); }

/* ── 18. Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

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

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

/* ── 19. Review Cards ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.review-card {
  background: var(--dark-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-card__stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card__text {
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
  font-family: var(--font-body);
  text-transform: none;
}

.review-card__author {
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-heading);
}

.review-card__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ── 20. CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner__title {
  margin-bottom: 12px;
}

.cta-banner__text {
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: var(--font-body);
  text-transform: none;
}

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

/* ── 21. Service Area List ── */
.area-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .area-list { grid-template-columns: 1fr 1fr; }
}

.area-item {
  background: var(--dark-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.area-item h3 {
  margin-bottom: 8px;
}

.area-item p {
  color: var(--text-body);
  line-height: 1.6;
  font-family: var(--font-body);
  text-transform: none;
}

/* ── 22. Content Page Styles ── */
.content-page {
  padding-top: 0;
}

.content-page .container {
  max-width: 800px;
}

.content-page p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-page h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-page h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-page ul,
.content-page ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-page li {
  margin-bottom: 8px;
  color: var(--text-body);
  line-height: 1.7;
}

.content-page a {
  color: var(--accent);
  text-decoration: underline;
}

.content-page a:hover {
  color: var(--accent-hover);
}

/* ── 23. Footer ── */
.site-footer {
  background: var(--dark);
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.site-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0 40px;
  }
}

.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.site-footer__links {
  list-style: none;
}

.site-footer__links li {
  margin-bottom: 8px;
}

.site-footer__links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-footer__links a:hover { color: var(--accent); }

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 600;
  margin: 12px 0;
}

.site-footer__phone:hover { color: var(--accent-hover); }

.site-footer__hours {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer__bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer__bottom a {
  color: var(--muted);
  transition: color var(--transition);
}

.site-footer__bottom a:hover { color: var(--accent); }

/* ── 24. Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 25. Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--white);
  z-index: 10000;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

/* ── 26. Contact Page Layout ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info__phone:hover {
  color: var(--accent-hover);
}

.contact-info__phone svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-info__text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info__text-link:hover {
  color: var(--accent);
}

.contact-info__text-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-info__detail {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.contact-info__detail strong {
  color: var(--white);
  font-weight: 600;
}

/* ── 27. Thank You Page ── */
.thank-you {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

.thank-you__icon {
  width: 80px;
  height: 80px;
  color: var(--success);
  margin: 0 auto 24px;
}

.thank-you__text {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.thank-you__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color var(--transition);
}

.thank-you__phone:hover {
  color: var(--accent-hover);
}

.thank-you__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
