/* Beach-themed design system - Pensacola, FL inspired */
/* Day Flooring Sales and Installation */

:root {
  /* Beach Theme Colors */
  --sand: #F5F5DC;
  --sand-dark: #E8E4C9;
  --turquoise: #40E0D0;
  --ocean: #4682B4;
  --tan: #D2B48C;
  --cta-red: #DC143C;
  --pure-white: #FFFFFF;
  --pure-black: #000000;
  --cream: #FFFDF7;
  --warm-gray: #F5F3EF;
  --gold: #FFD700;
  --brown-dark: #2d2d2d;
  --charcoal: #333333;
  --ocean-dark: #3a6f99;
  --ocean-light: rgba(70, 130, 180, 0.1);
  --font-heading: 'Playfair Display', serif;
  --success-green: #22c55e;
  --muted-gray: #999999;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 5rem;
  --section-padding-mobile: 3rem;
  
  /* Border radius */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

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

/* Base Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--sand);
  color: var(--pure-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

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

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Mobile Padding & Overflow Prevention */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Ensure all direct children of sections respect container padding */
  .section > *:not(.container),
  .hero > *:not(.container) {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Fix elements that might overflow */
  img, video, iframe, table {
    max-width: 100%;
  }

  /* Prevent text overflow */
  h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Fix any full-width elements inside containers */
  .container img,
  .container table {
    max-width: 100%;
  }
}

/* Font Utilities */
.font-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.font-heading {
  font-family: 'Playfair Display', serif;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--tan);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-line {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pure-black);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  color: var(--pure-black);
}

.nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-link.active {
  color: var(--ocean);
}
.nav-link {
  white-space: nowrap;  /* Prevents text wrapping within individual links */
}
/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--pure-white);
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  z-index: 100;
}

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

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.dropdown-content a:hover {
  background-color: rgba(64, 224, 208, 0.1);
  color: var(--ocean);
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pure-black);
  transition: color 0.2s;
}

.phone-link:hover {
  color: var(--ocean);
}

/* Mobile Phone Icon (visible only on mobile) */
.mobile-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--pure-black);
  transition: color 0.2s;
}

.mobile-phone-icon:hover {
  color: var(--ocean);
}

@media (min-width: 1024px) {
  .mobile-phone-icon {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  color: var(--pure-black);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background-color: var(--tan);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-mobile .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

/* Mobile Dropdown */
.mobile-dropdown {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--pure-black);
}

.mobile-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  padding-bottom: 0.75rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown-content a {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--pure-black);
  transition: color 0.2s;
}

.mobile-dropdown-content a:hover {
  color: var(--ocean);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-cta {
  background-color: var(--cta-red);
  color: var(--pure-white);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.btn-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

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

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

.btn-turquoise {
  background-color: var(--turquoise);
  color: var(--pure-black);
}

.btn-turquoise:hover {
  opacity: 0.9;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream), var(--warm-gray));
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(70, 130, 180, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ocean);
}

.hero-badge svg {
  fill: var(--turquoise);
  color: var(--turquoise);
}

.hero-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--turquoise);
  margin-top: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1.1;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 1rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}

.hero-stats strong {
  color: var(--pure-black);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--turquoise);
}

.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-card-subtitle {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}

.hero-people-icons {
  display: flex;
  align-items: center;
}

.people-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ocean);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  margin-right: -8px;
}

.people-icon:last-child {
  margin-right: 0;
}

.hero-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-review-count {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  white-space: nowrap;
}

.hero-stats .hero-people-icons .people-icon {
  width: 28px;
  height: 28px;
}

.star-rating {
  display: flex;
  gap: 0.125rem;
}

.star-rating svg {
  width: 1rem;
  height: 1rem;
  fill: var(--turquoise);
  color: var(--turquoise);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile) 0;
  }
}

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

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

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

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

.section-cream {
  background: linear-gradient(135deg, var(--cream), var(--warm-gray));
}

/* Block-level background aliases (used by blocks that predate section-* naming) */
.bg-white { background-color: var(--pure-white); }
.bg-sand { background-color: var(--sand); }
.bg-cream { background: linear-gradient(135deg, var(--cream), var(--warm-gray)); }
.bg-secondary { background-color: var(--warm-gray); }
.bg-tan { background-color: var(--tan); }

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading .script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--turquoise);
  margin-bottom: 0.5rem;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pure-black);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-heading h2 {
    font-size: 2.5rem;
  }
}

.section-heading p {
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   FLOORING TYPES GRID
   ============================================ */
.flooring-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .flooring-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.flooring-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.flooring-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.flooring-card-image {
  aspect-ratio: 4/5;
  position: relative;
}

.flooring-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.flooring-card:hover .flooring-card-image img {
  transform: scale(1.1);
}

.flooring-card-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.flooring-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: var(--pure-white);
}

.flooring-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.flooring-card p {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-container {
  position: relative;
}

.brands-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.brands-scroll::-webkit-scrollbar {
  display: none;
}

.brand-card {
  flex-shrink: 0;
  background-color: var(--pure-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.brand-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-card img {
  height: 3rem;
  width: auto;
  min-width: 120px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.brand-card:hover img {
  filter: grayscale(0%);
}

.brands-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--pure-white);
  border: 1px solid var(--sand-dark);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.2s;
}

.brands-nav:hover {
  background-color: var(--sand);
}

.brands-nav-left {
  left: 0;
}

.brands-nav-right {
  right: 0;
}

.brands-hint {
  text-align: center;
  margin-top: 1rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.steps-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr); /* Mobile default: 1 column */
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 columns (3 rows for 6 cards) */
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns (2 rows for 6 cards) */
  }
}

.step-card {
  background-color: var(--pure-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cta-red);
  margin-bottom: 1rem;
}

.step-icon {
  background-color: var(--sand);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  stroke: var(--ocean);
}
.step-card {
  position: relative;
  background-color: var(--pure-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.step-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--pure-black);
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(70, 130, 180, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--ocean);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pure-black);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--pure-white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.rating-badge .stars {
  display: flex;
}

.rating-badge .stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--turquoise);
  color: var(--turquoise);
}

.rating-badge .score {
  font-weight: 700;
  color: var(--pure-black);
}

.rating-badge .count {
  color: rgba(0, 0, 0, 0.6);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.testimonial-card {
  background-color: var(--pure-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--ocean);
}

.testimonial-card .stars {
  display: flex;
  margin-bottom: 1rem;
}

.testimonial-card .stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--turquoise);
  color: var(--turquoise);
}

.testimonial-card .quote {
  font-style: italic;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--pure-black);
}

.testimonial-card .location {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

/* ============================================
   ROOM INSPIRATION
   ============================================ */
.rooms-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.room-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.room-card-image {
  aspect-ratio: 3/2;
  position: relative;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.room-card:hover .room-card-image img {
  transform: scale(1.05);
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(70, 130, 180, 0.8), transparent);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.room-card:hover .room-card-overlay {
  opacity: 0.9;
}

.room-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.room-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pure-white);
}

.room-card .explore-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s;
  margin-top: 0.25rem;
}

.room-card:hover .explore-text {
  opacity: 1;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--pure-white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 2px solid var(--ocean);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--pure-black);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--turquoise);
  background: var(--pure-white);
}

.faq-question svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* FAQ answers visible by default for SEO (Google sees all content) */
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

/* Once JS loads, hide answers unless active (for user experience) */
.js-loaded .faq-answer {
  display: none;
}

.js-loaded .faq-item.active .faq-answer {
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background-color: var(--ocean);
  padding: var(--section-padding) 0;
  text-align: center;
}

.cta-section .script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--turquoise);
  margin-bottom: 1rem;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

.cta-section p {
  color: var(--pure-white);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-outline {
  border-color: var(--pure-white);
  color: var(--pure-white);
}

.cta-section .btn-outline:hover {
  background-color: var(--pure-white);
  color: var(--ocean);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--cream), var(--warm-gray));
  padding: var(--section-padding) 0;
  text-align: center;
}

.page-hero .script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--turquoise);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ocean);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}

.page-hero p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail {
  padding: 3rem 0 var(--section-padding);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--pure-black);
}

.product-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.product-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-content .script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--turquoise);
}

.product-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ocean);
  margin-top: 0.5rem;
}

.product-content .description {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.125rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.benefits-list {
  list-style: none;
  margin-top: 1.5rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.benefits-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--turquoise);
  flex-shrink: 0;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.filter-section {
  padding: 3rem 0;
  background-color: var(--pure-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  background-color: var(--sand);
  color: var(--pure-black);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background-color: var(--sand-dark);
}

.filter-btn.active {
  background-color: var(--turquoise);
  color: var(--pure-black);
}

.filter-btn-secondary.active {
  background-color: var(--ocean);
  color: var(--pure-white);
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.portfolio-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(70, 130, 180, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-tags {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-card-tags {
  transform: translateY(0);
}

.portfolio-tag {
  background-color: var(--turquoise);
  color: var(--pure-black);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.portfolio-tag-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--pure-white);
}

/* ============================================
   PORTFOLIO PAGE (enhanced)
   ============================================ */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.portfolio-filters .filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--pure-white);
  border: 2px solid var(--warm-gray);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--charcoal);
}

.portfolio-filters .filter-btn:hover,
.portfolio-filters .filter-btn.active {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--pure-white);
}

.portfolio-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item-enhanced {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  aspect-ratio: 4/3;
}

.portfolio-item-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-item-enhanced img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--pure-white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.portfolio-item-enhanced:hover .portfolio-item-content {
  transform: translateY(0);
}

.portfolio-category {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--ocean);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.portfolio-category.carpet {
  background: var(--brown-dark);
}

.portfolio-category.hardwood {
  background: var(--tan);
}

.portfolio-category.vinyl {
  background: var(--ocean);
}

.portfolio-category.tile {
  background: var(--turquoise);
}

.portfolio-category.laminate {
  background: var(--gold);
}

.portfolio-item-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--pure-white);
}

.portfolio-item-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

/* Hide filtered items */
.portfolio-item-enhanced.hidden {
  display: none;
}

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

  .portfolio-item-content {
    transform: translateY(0);
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85));
  }

  .portfolio-filters .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

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

.contact-form-wrapper {
  background-color: var(--tan);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pure-black);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--pure-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.2);
}

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

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pure-black);
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-info-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--turquoise);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.why-choose-box {
  background-color: var(--ocean);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 2rem;
}

.why-choose-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.why-choose-list {
  list-style: none;
}

.why-choose-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pure-white);
  padding: 0.375rem 0;
  font-size: 0.9375rem;
}

.why-choose-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--turquoise);
  flex-shrink: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

/* Trailer/Mobile Showroom Grid */
.trailer-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

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

.trailer-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trailer-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .trailer-image img {
    height: 250px;
  }

  .about-image img {
    max-height: 450px;
  }
}

.about-content .script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--turquoise);
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pure-black);
  margin-top: 0.5rem;
}

.about-content p {
  color: rgba(0, 0, 0, 0.7);
  margin-top: 1rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.value-card {
  background-color: var(--tan);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(64, 224, 208, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--turquoise);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pure-black);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
}

/* ============================================
   BLOG
   ============================================ */
.blog-banner {
  background-color: var(--ocean);
  padding: 1rem 0;
  text-align: center;
}

.blog-banner p {
  color: var(--pure-white);
  font-weight: 500;
}

.blog-grid {
  display: grid;
  gap: 2rem;
}

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

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

.blog-card {
  background-color: var(--pure-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.blog-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sand), var(--sand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image span {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background-color: rgba(64, 224, 208, 0.1);
  color: var(--ocean);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pure-black);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.blog-card:hover h3 {
  color: var(--ocean);
}

.blog-card .excerpt {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-meta svg {
  width: 0.875rem;
  height: 0.875rem;
}

.newsletter-box {
  background-color: var(--sand);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .newsletter-box {
    padding: 3rem;
  }
}

.newsletter-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pure-black);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .newsletter-box h3 {
    font-size: 2rem;
  }
}

.newsletter-box p {
  color: rgba(0, 0, 0, 0.7);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* ============================================
   SERVICE AREA
   ============================================ */
.service-hero {
  position: relative;
  background-color: var(--sand);
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.service-hero-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 3fr 2fr;
    padding: 5rem 0;
  }
}

.service-hero-content {
  position: relative;
  z-index: 10;
}

.service-hero-content .script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ocean);
}

.service-hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pure-black);
  margin-top: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .service-hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .service-hero-content h1 {
    font-size: 3rem;
  }
}

.service-hero-content p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 600px;
}

@media (min-width: 768px) {
  .service-hero-content p {
    font-size: 1.125rem;
  }
}

.service-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .service-hero-buttons {
    flex-direction: row;
  }
}

.service-card {
  background-color: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--turquoise);
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

.service-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pure-black);
  margin-bottom: 0.5rem;
}

.service-card .company-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pure-black);
  margin-bottom: 1rem;
}

.service-card-info {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-card-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-card-info svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--turquoise);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cities-grid {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.city-card {
  background-color: var(--pure-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.city-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.city-card-header span {
  font-size: 1.5rem;
}

.city-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pure-black);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  list-style: none;
}

.city-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--pure-black);
}

.city-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--turquoise);
  flex-shrink: 0;
}

.flooring-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .flooring-links {
    gap: 1rem;
  }
}

.flooring-link {
  background-color: var(--pure-white);
  border: 2px solid var(--turquoise);
  color: var(--pure-black);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s;
}

.flooring-link:hover {
  background-color: var(--turquoise);
}

.team-grid {
  display: grid;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.team-card {
  background-color: var(--sand);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.team-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background-color: var(--tan);
}

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

.team-divider {
  width: 4rem;
  height: 0.25rem;
  background-color: var(--turquoise);
  margin: 0 auto 1rem;
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pure-black);
}

.team-card .role {
  color: var(--ocean);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--tan);
  color: var(--pure-black);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

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

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

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.social-links a:hover {
  background-color: var(--turquoise);
}

.footer-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--turquoise);
}

.footer-contact h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact svg {
  color: var(--turquoise);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact span,
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}

.footer-contact a:hover {
  color: var(--turquoise);
}

.business-hours {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1.5rem;
}

.hours-title {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.business-hours p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--pure-black);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.divider {
  width: 6rem;
  height: 0.25rem;
  background-color: var(--turquoise);
  margin: 0 auto;
}

/* Project count */
.project-count {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}

/* Gallery grid for product pages */
.gallery-section {
  margin-top: 4rem;
}

.gallery-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Mobile showroom section */
.showroom-grid {
  display: grid;
  gap: 2rem;
}

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

.showroom-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.showroom-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Process images grid */
.process-images-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.process-image-card {
  background-color: var(--pure-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-image-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.process-image-card p {
  padding: 1rem;
  font-weight: 600;
  color: var(--pure-black);
}
.process-icon {
  width: 64px;  /* Fixed width for the icon container - adjust to 48px or 3rem if smaller is needed */
  height: 64px; /* Matching height for square icons */
  margin: 0 auto 1rem; /* Center and add bottom spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sand); /* Light coastal background for subtle theme */
  border-radius: var(--radius); /* Consistent rounded corners */
}

.process-icon svg {
  width: 100%; /* Fill the container without overflowing */
  height: 100%;
  stroke: var(--ocean); /* Brand color for strokes */
}
/* Header CTA - Desktop only (already defined above, this adds nowrap behavior) */
@media (min-width: 1024px) {
  .header-cta {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .header-cta {
    gap: 0.75rem;
  }
  .phone-link,
  .btn-cta {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }
}
.hero-image img {
  max-height: 400px; /* Limit hero image size */
  object-fit: cover;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sand-dark);
  border-radius: 50%;
}

.benefit-desc {
  text-align: center;
  font-size: 0.875rem;
  color: var(--pure-black);
}

.product-image {
  height: 200px; /* Fixed height for consistency */
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars .icon {
  width: 16px;
  height: 16px;
}

.review-card {
  padding: 1.5rem;
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius);
  text-align: center;
}

.review-author {
  font-style: italic;
  color: var(--ocean);
  margin-top: 1rem;
}

.portfolio-item img {
  max-height: 250px;
  object-fit: cover;
}
/* Benefits Section Styling */
.benefits-grid {
  display: grid;
  gap: 2rem; /* Spacing between cards */
  grid-template-columns: repeat(4, 1fr); /* 4 columns desktop */
}

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

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* 1 column mobile */
  }
}

.benefit-card {
  background-color: var(--pure-white); /* White card bg */
  padding: 2rem; /* Internal spacing */
  border-radius: var(--radius); /* Rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: center; /* Center content */
  transition: transform 0.3s ease; /* Hover lift effect */
}

.benefit-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

.benefit-icon {
  background-color: var(--sand); /* Light sand bg for icon circle */
  border-radius: 50%; /* Circular icon container */
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem; /* Center and space below */
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  stroke: var(--ocean); /* Brand blue for icon strokes */
}

/* ============================================
   SERVICE AREAS TABLE
   ============================================ */
.service-areas-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

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

.map-container {
  background-color: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

.cities-table-container {
  background-color: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

.cities-table-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--turquoise);
}

.cities-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cities-table thead th {
  background-color: var(--sand);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--pure-black);
  border-bottom: 2px solid var(--turquoise);
}

.cities-table tbody td {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--sand-dark);
}

.cities-table tbody tr:hover {
  background-color: rgba(64, 224, 208, 0.05);
}

.cities-table tbody tr.current-city {
  background-color: rgba(64, 224, 208, 0.15);
}

.cities-table tbody tr.current-city td:first-child a {
  font-weight: 700;
  color: var(--ocean);
}

.cities-table tbody td a {
  color: var(--pure-black);
  transition: color 0.2s;
}

.cities-table tbody td a:hover {
  color: var(--ocean);
}

.zip-codes-section {
  border-top: 1px solid var(--sand-dark);
  padding-top: 1.5rem;
}

.zip-codes-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pure-black);
  margin-bottom: 1rem;
}

.zip-codes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

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

.zip-codes-grid span {
  background-color: var(--sand);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: var(--pure-black);
}

.zip-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
}

/* ============================================
   ACCESSIBILITY - Screen Reader Only
   ============================================ */
.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;
}

/* Image figure for SEO */
.image-figure {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

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

/* ============================================
   FLOORING INTRO SECTION
   ============================================ */
.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-block > p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
}

.content-block a {
  color: var(--ocean);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.content-block a:hover {
  color: var(--turquoise);
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.two-col-grid h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ocean);
}

.two-col-grid p {
  line-height: 1.7;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.bento-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ocean);
}

.bento-card p {
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

.bento-card a {
  color: var(--ocean);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.bento-card a:hover {
  color: var(--turquoise);
}

.bento-large {
  min-height: 200px;
}

.bento-wide {
  grid-column: 1 / -1;
}

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

  .bento-card {
    padding: 1.5rem;
  }
}

/* ============================================
   QUICK ESTIMATE FORM SECTION
   ============================================ */
.form-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .form-section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.form-content > p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: rgba(0, 0, 0, 0.7);
}

.form-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.form-benefits svg {
  color: var(--turquoise);
  flex-shrink: 0;
}

.form-container {
  background-color: var(--pure-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.estimate-form .form-group {
  margin-bottom: 1.25rem;
}

.estimate-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.estimate-form input,
.estimate-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--sand-dark);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.estimate-form input:focus,
.estimate-form select:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.2);
}

.btn-full {
  width: 100%;
}

/* ============================================
   FLOORING TYPES DETAIL SECTION
   ============================================ */
.flooring-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.flooring-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
}

.flooring-detail-card.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.flooring-detail-card.reverse .flooring-detail-image {
  order: 2;
}

.flooring-detail-card.reverse .flooring-detail-content {
  order: 1;
}

@media (max-width: 768px) {
  .flooring-detail-card,
  .flooring-detail-card.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .flooring-detail-card.reverse .flooring-detail-image,
  .flooring-detail-card.reverse .flooring-detail-content {
    order: unset;
  }
}

.flooring-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

.flooring-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flooring-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.flooring-detail-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--ocean);
}

.flooring-detail-content > p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.flooring-detail-content ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}

.flooring-detail-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.flooring-detail-content a.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  background-color: var(--ocean);
  color: var(--pure-white);
  border: 2px solid var(--ocean);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.flooring-detail-content a.btn:hover {
  background-color: #3a6f99;
  border-color: #3a6f99;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

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

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

.why-choose-card {
  background-color: var(--pure-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--ocean);
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background-color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-choose-icon svg {
  color: var(--ocean);
}

.why-choose-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.why-choose-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

.why-choose-card a {
  color: var(--ocean);
  text-decoration: underline;
}

.why-choose-card a:hover {
  color: var(--turquoise);
}

/* ============================================
   STORE SERVICES SECTION
   ============================================ */
.store-services .section-heading {
  margin-bottom: 2rem;
}

.store-services .subtitle {
  max-width: 700px;
  margin: 0.5rem auto 0;
}

.services-list {
  max-width: 800px;
  margin: 0 auto;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  background-color: var(--pure-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--turquoise);
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.styled-list li:last-child {
  margin-bottom: 0;
}

.styled-list li strong {
  color: var(--ocean);
}

.styled-list li em {
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
}

.mt-8 {
  margin-top: 2rem;
}

/* ============================================
   HOW IT WORKS - STORE (Mobile Floor Store)
   ============================================ */
.how-it-works-store {
  background-color: var(--cream);
}

.how-it-works-store .section-header {
  margin-bottom: 3rem;
}

.how-it-works-store .section-subtitle {
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 1rem auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background-color: var(--pure-white);
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--turquoise), var(--ocean));
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 3px 10px rgba(64, 224, 208, 0.4);
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 1rem auto 1.25rem;
  background-color: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  color: var(--ocean);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--pure-black);
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

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

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

  .step-card {
    padding: 2.25rem 1.5rem 1.75rem;
    min-height: auto;
  }
}

/* ============================================
   CONTACT MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--cream);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-form {
  max-width: 100%;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--pure-black);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.modal-close:hover {
  opacity: 1;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header .font-script {
  color: var(--ocean);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.modal-header h2 {
  font-size: 1.75rem;
  color: var(--pure-black);
}

/* Form Styles */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row .form-group:nth-child(3) {
    grid-column: 1 / -1;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label,
.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pure-black);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--pure-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
}

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

.form-note {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.25rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ocean);
  cursor: pointer;
}

.consent-label {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}

.consent-label span {
  flex: 1;
}

.btn-full {
  width: 100%;
}

/* Success/Error States */
.form-success,
.form-error {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.form-success svg {
  color: var(--success-green);
}

.form-error svg {
  color: var(--cta-red);
}

.form-success h3,
.form-error h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p,
.form-error p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-container {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
}

/* ============================================
   NEIGHBORHOODS SECTION
   ============================================ */
.neighborhoods-section {
  padding: var(--section-padding) 0;
  background-color: var(--warm-gray);
}

.neighborhoods-accordion {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.neighborhoods-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--tan);
  color: var(--pure-black);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease;
}

.neighborhoods-toggle::-webkit-details-marker {
  display: none;
}

.neighborhoods-toggle:hover {
  background: var(--sand-dark);
}

.neighborhoods-accordion .accordion-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.neighborhoods-accordion[open] .accordion-arrow {
  transform: rotate(180deg);
}

.neighborhoods-content {
  padding: 2rem;
}

.neighborhoods-intro {
  margin-bottom: 1.5rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.neighborhood-card {
  background: var(--warm-gray);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--ocean);
}

.neighborhood-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ocean);
}

.neighborhood-desc {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.neighborhood-service {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}

@media (max-width: 768px) {
  .neighborhoods-section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .neighborhoods-toggle {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
  }
  
  .neighborhoods-content {
    padding: 1.25rem;
  }
  
  .neighborhoods-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .neighborhood-card {
    padding: 1rem;
  }
}

/* ================================
   PROCESS ACCORDION
   ================================ */
.process-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.process-accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--pure-white);
  border: 2px solid var(--ocean);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.process-accordion-toggle:hover {
  background: var(--pure-white);
}

.process-accordion-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ocean);
}

.process-accordion-chevron {
  transition: transform 0.3s ease;
  color: var(--ocean);
}

.process-accordion.active .process-accordion-chevron {
  transform: rotate(180deg);
}

.process-accordion-content {
  display: none;
  padding: 2rem 0 0;
}

.process-accordion.active .process-accordion-content {
  display: block;
}

/* ================================
   FORM CONTAINER FIX
   ================================ */
.form-container {
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.estimate-form .form-group {
  width: 100%;
  box-sizing: border-box;
}

.estimate-form input,
.estimate-form select {
  box-sizing: border-box;
  max-width: 100%;
}

/* ================================
   PRODUCT PAGE STYLES
   ================================ */

/* Product Hero */
.product-hero {
  padding: 3rem 0 4rem;
  background: var(--sand);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.product-hero-content h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0 1rem;
  color: var(--pure-black);
}

@media (min-width: 768px) {
  .product-hero-content h1 {
    font-size: 3.5rem;
  }
}

.product-hero-content .hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.8);
}

.product-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Product Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.benefit-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--tan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--pure-black);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* Product Types Grid */
.product-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .product-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-type-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-type-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--pure-black);
}

.product-type-card > p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.type-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.type-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.type-features li:first-child {
  border-top: none;
}

.type-features svg {
  color: var(--ocean);
  flex-shrink: 0;
}

/* Product Gallery Grid */
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.product-gallery-grid .gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* ============================================
   PRODUCT PAGE CONTENT SECTIONS
   ============================================ */

/* Content Grid - Main + Sidebar */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.content-main h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--pure-black);
}

.content-main h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--pure-black);
}

.content-main p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1.25rem;
}

.content-main strong {
  color: var(--pure-black);
  font-weight: 600;
}

.content-main em {
  font-style: italic;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--tan);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.info-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--pure-black);
}

.info-card-highlight {
  border-top: 4px solid var(--ocean);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.info-card-highlight h4 {
  color: var(--ocean);
}

/* Content Callout - styled aside block within content-main */
.content-callout {
  background: #f8f6f1;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--ocean);
  margin: 2rem 0;
}

.content-callout h3 {
  margin-top: 0;
}

.content-callout p:last-child {
  margin-bottom: 0;
}

.sidebar-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.8);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ocean);
  font-weight: bold;
}

.check-list li strong {
  color: var(--pure-black);
}

/* X List (for comparison negatives) */
.x-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.x-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
}

.x-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--muted-gray);
  font-weight: bold;
}

/* Two Column Content */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.content-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pure-black);
}

.content-col p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

/* Styled List */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.styled-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.styled-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--ocean);
}

.styled-list li:last-child {
  border-bottom: none;
}

.styled-list li strong {
  color: var(--pure-black);
}

/* Style Showcase */
.style-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.style-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .style-card {
    grid-template-columns: 1fr 1fr;
  }
  
  .style-card:nth-child(even) {
    direction: rtl;
  }
  
  .style-card:nth-child(even) > * {
    direction: ltr;
  }
}

.style-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 100%;
}

.style-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.style-card:hover .style-image img {
  transform: scale(1.05);
}

.style-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.style-content h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--pure-black);
}

.style-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
}

/* Comparison Section */
.comparison-content > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.comparison-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.comparison-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--pure-black);
}

.vinyl-card {
  border: 2px solid var(--ocean);
}

.hardwood-card {
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.comparison-conclusion {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: center;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

/* Process Detailed */
.process-detailed {
  max-width: 800px;
  margin: 0 auto;
}

.process-step-detailed {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.process-step-detailed:last-child {
  border-bottom: none;
}

.process-step-detailed .step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--ocean);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--pure-black);
}

.step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

/* Room Guide Grid */
.room-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .room-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.room-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.room-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--pure-black);
}

.room-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

.room-card strong {
  color: var(--pure-black);
}

/* Rounded utility */
.rounded {
  border-radius: var(--radius-lg);
}

/* ========================================
   Silo Article Styles - Educational Content
   ======================================== */

.silo-article {
  padding: 0;
  background: transparent;
}

.silo-article .container {
  max-width: 900px;
}

.article-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--ocean);
}

.article-section {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.article-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.article-section h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--pure-black);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.article-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--ocean);
  border-radius: 2px;
}

.article-section h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}

.article-section p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.article-section ul,
.article-section ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-section li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  position: relative;
}

.article-section ul li::marker {
  color: var(--ocean);
}

.article-section ol li::marker {
  color: var(--ocean);
  font-weight: 600;
}

.article-section strong {
  color: var(--pure-black);
  font-weight: 600;
}

.article-section a {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.article-section a:hover {
  color: var(--ocean-dark);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.breadcrumb-nav a {
  color: var(--ocean);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* Pricing Table Enhancement */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
}

.pricing-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--pure-white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--warm-gray);
  font-size: 1rem;
  color: var(--charcoal);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--sand);
}

.pricing-table td.highlight {
  font-weight: 700;
  color: var(--ocean);
  font-size: 1.1rem;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .pricing-table th,
  .pricing-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .pricing-table td.highlight {
    font-size: 1rem;
  }
}

/* Silo Links Grid Enhancement */
.silo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.silo-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.silo-link-card:hover {
  border-color: var(--ocean);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.silo-link-card.hub-link {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: var(--pure-white);
}

.silo-link-card.hub-link:hover {
  border-color: var(--pure-white);
}

.silo-link-card .link-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.silo-link-card.hub-link .link-title {
  color: var(--pure-white);
}

.silo-link-card svg {
  flex-shrink: 0;
  color: var(--ocean);
  transition: transform 0.3s ease;
}

.silo-link-card.hub-link svg {
  color: var(--pure-white);
}

.silo-link-card:hover svg {
  transform: translateX(5px);
}

.hub-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 0.75rem;
}

/* FAQ Enhancement for Silo Pages */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 2px solid var(--ocean);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: var(--pure-white);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--ocean);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* FAQ answers visible by default for SEO */
.faq-answer {
  padding: 0 2rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}

/* Once JS loads, hide answers unless active */
.js-loaded .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.js-loaded .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

/* ============================================
   BLOG LISTING PAGE
   ============================================ */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, var(--pure-black) 0%, var(--brown-dark) 100%);
    color: var(--pure-white);
    padding: 4rem 0 3rem;
    text-align: center;
}
.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}
.blog-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Stats */
.blog-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.blog-stat {
    text-align: center;
}
.blog-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
}
.blog-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Blog Container & Grid */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

/* Blog Cards */
.blog-card {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--pure-black) 0%, var(--brown-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 3.5rem;
}
.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card h2 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}
.blog-card h2 a {
    color: var(--pure-black);
    text-decoration: none;
}
.blog-card h2 a:hover {
    color: var(--ocean);
}
.blog-card-excerpt {
    color: var(--muted-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}
.blog-card-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--sand-dark);
}
.blog-card-meta {
    font-size: 0.85rem;
    color: var(--muted-gray);
    margin-bottom: 1rem;
}
.blog-card.hidden {
    display: none;
}

/* Read More Link */
.read-more {
    color: var(--ocean);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.read-more:hover {
    gap: 0.75rem;
}

/* Blog Filters */
.blog-filters {
    padding: 2rem 0 0;
}
.filter-group {
    margin-bottom: 1.5rem;
}
.filter-label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--sand-dark);
    background: var(--pure-white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: var(--charcoal);
}
.filter-btn:hover {
    border-color: var(--ocean);
    color: var(--ocean);
}
.filter-btn.active {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--pure-white);
}
.filter-btn .count {
    background: rgba(0,0,0,0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0.4rem;
}
.filter-btn.active .count {
    background: rgba(255,255,255,0.2);
}

/* Active Filter Tags */
.active-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.active-filters-label {
    color: var(--muted-gray);
    font-size: 0.9rem;
}
.active-filter-tag {
    background: var(--ocean);
    color: var(--pure-white);
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.active-filter-tag .remove {
    cursor: pointer;
    opacity: 0.8;
    font-weight: bold;
}
.active-filter-tag .remove:hover {
    opacity: 1;
}
.clear-filters {
    color: var(--ocean);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}
.clear-filters:hover {
    color: var(--ocean-dark);
}
.results-count {
    color: var(--muted-gray);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--muted-gray);
    grid-column: 1 / -1;
}
.no-results h3 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

/* Blog Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0 3rem;
    flex-wrap: wrap;
}
.pagination-btn {
    padding: 0.6rem 1rem;
    border: 2px solid var(--sand-dark);
    background: var(--pure-white);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    color: var(--charcoal);
    min-width: 42px;
    text-align: center;
}
.pagination-btn:hover:not(:disabled) {
    border-color: var(--ocean);
    color: var(--ocean);
}
.pagination-btn.active {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--pure-white);
}
.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.pagination-btn.nav-btn {
    padding: 0.6rem 1.2rem;
}
.pagination-ellipsis {
    padding: 0.5rem;
    color: var(--muted-gray);
}
.pagination-info {
    text-align: center;
    color: var(--muted-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-hero h1 { font-size: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .filter-buttons { gap: 0.4rem; }
    .filter-btn { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
}

/* ============================================
   ARTICLE PAGES (blog + sustainability)
   ============================================ */

/* Article Hero */
.article-hero {
  background: linear-gradient(135deg, var(--pure-black) 0%, var(--brown-dark) 100%);
  color: var(--pure-white);
  padding: 3rem 0 2rem;
}

.article-hero h1 {
  color: var(--pure-white);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.article-hero .description {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 700px;
}

.article-meta {
  color: var(--muted-gray);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.article-hero .breadcrumb {
  padding: 1rem 0;
  color: var(--muted-gray);
  font-size: 0.9rem;
}

.article-hero .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  display: inline-block;
}

.article-hero .breadcrumb a:hover {
  text-decoration: underline;
}

/* Article Content Wrapper */
.article-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.article-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.article-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--warm-gray);
}

.article-intro a {
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid var(--ocean);
}

.article-intro a:hover {
  color: var(--ocean-dark);
}

/* Author Card */
.author-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--warm-gray);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0 3rem;
  border-left: 4px solid var(--tan);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--tan);
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-label {
  font-size: 0.85rem;
  color: var(--muted-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.author-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pure-black);
  margin-bottom: 0.5rem;
}

.author-title {
  font-size: 1rem;
  color: var(--ocean);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0;
}

/* Article Sections */
.article-section {
  margin-bottom: 3rem;
}

.article-section h2 {
  font-size: 1.75rem;
  color: var(--pure-black);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--tan);
  display: inline-block;
}

.article-section h3 {
  font-size: 1.35rem;
  color: var(--brown-dark);
  margin: 1.5rem 0 1rem;
}

.article-section-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--charcoal);
}

.article-section-content p {
  margin-bottom: 1.25rem;
}

.article-section-content ul,
.article-section-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-section-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.article-section-content a {
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.article-section-content a:hover {
  border-bottom-color: var(--ocean);
}

.article-section-content strong {
  color: var(--pure-black);
}

/* Section Image (used in article-content block) */
.section-image {
  width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Article FAQ Section */
.article-wrapper .faq-section {
  background-color: var(--sand);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.article-wrapper .faq-section h2 {
  color: var(--pure-black);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: none;
  display: block;
}

.article-wrapper .faq-section .faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sand-dark);
  background: none;
  border-radius: 0;
  box-shadow: none;
  border-top: none;
  border-left: none;
  border-right: none;
  overflow: visible;
}

.article-wrapper .faq-section .faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.article-wrapper .faq-section .faq-question {
  font-weight: 600;
  color: var(--pure-black);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  min-height: 44px;
}

.article-wrapper .faq-section .faq-answer {
  color: var(--charcoal);
  line-height: 1.7;
}

/* Article Sources */
.article-sources {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--warm-gray);
}

.article-sources h2 {
  font-size: 1.5rem;
  color: var(--pure-black);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--tan);
  display: inline-block;
}

.source-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--ocean);
  background: var(--warm-gray);
  border-radius: 0 8px 8px 0;
}

.source-number {
  font-weight: 700;
  color: var(--ocean);
  font-size: 1rem;
  flex-shrink: 0;
  min-width: 1.5rem;
}

.source-content {
  flex: 1;
}

.source-content p {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--charcoal);
}

.source-authors {
  font-weight: 600;
}

.source-title {
  font-style: italic;
}

.source-doi a {
  color: var(--ocean);
  text-decoration: none;
  word-break: break-all;
  font-size: 0.9rem;
}

.source-doi a:hover {
  color: var(--ocean-dark);
  text-decoration: underline;
}

/* Article Navigation (prev/next + money page) */
.article-nav {
  background: var(--warm-gray);
  padding: 3rem 0;
}

.article-nav h2 {
  font-size: 1.5rem;
  color: var(--pure-black);
  margin-bottom: 1.5rem;
  text-align: center;
}

.article-nav .silo-links-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* Article-specific responsive */
@media (max-width: 640px) {
  .article-hero h1 {
    font-size: 1.75rem;
  }

  .article-hero-image {
    height: 250px;
  }

  .article-wrapper {
    padding: 2rem 1rem;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .author-image {
    width: 80px;
    height: 80px;
  }

  .article-wrapper .faq-section {
    padding: 1.5rem;
  }

  .source-item {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ========================================
   MOBILE RESPONSIVE FIXES
   Comprehensive padding and overflow prevention
   ======================================== */

@media (max-width: 768px) {
  /* Hero section mobile adjustments */
  .hero {
    padding: 2rem 0;
    min-height: auto;
  }

  .hero-container {
    padding: 2rem 0;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-image img {
    height: 300px;
    min-height: unset;
  }

  .hero-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem;
  }

  .hero-card-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .hero-card-title {
    font-size: 1rem;
  }

  .star-rating svg {
    width: 14px;
    height: 14px;
  }

  /* Button adjustments */
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  /* Section headings */
  .section-heading h2 {
    font-size: 1.5rem;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  /* Cards and grids */
  .flooring-card-content h3 {
    font-size: 1.1rem;
  }

  .flooring-card-content p {
    font-size: 0.85rem;
  }

  /* CTA sections */
  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  /* Process steps */
  .step-card {
    padding: 1.5rem;
  }

  /* Product hero */
  .product-hero-grid {
    gap: 2rem;
  }

  /* FAQ adjustments */
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  /* Tables */
  .table-responsive {
    margin: 0 -1.25rem;
    padding: 0 1.25rem;
    overflow-x: auto;
  }

  /* Service areas table */
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
  }

  /* Font size reductions for mobile (audit #26) */
  .page-hero h1 {
    font-size: 1.75rem;
  }

  .product-content h1,
  .product-hero-content h1 {
    font-size: 1.75rem;
  }

  /* Content headings */
  .content-block h2,
  .form-content h2 {
    font-size: 1.75rem;
  }

  .product-content h1 {
    font-size: 1.75rem;
  }

  .article-intro {
    padding: 1.25rem 1.25rem;
  }

  .about-content h2,
  .content-main h2 {
    font-size: 1.5rem;
  }

  .flooring-detail-content h3 {
    font-size: 1.35rem;
  }

  /* Map container height reduction (audit #37) */
  .map-container,
  .map-container iframe {
    min-height: 250px;
  }

  /* Touch targets - minimum 44px (audit #38-40) */
  .mobile-phone-icon,
  .mobile-menu-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0.625rem;
  }

  /* Footer and silo padding reduction (audit #42) */
  .footer-grid {
    gap: 2rem;
    padding: 2.5rem 0;
  }

  .silo-article {
    padding: 2.5rem 0;
  }
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  /* Extra small screens */
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-image img {
    height: 250px;
    min-height: unset;
  }

  .section-heading h2 {
    font-size: 1.35rem;
  }

  /* Single column grids */
  .cities-grid {
    grid-template-columns: 1fr;
  }

  .zip-codes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reduce padding on cards */
  .benefit-card,
  .step-card,
  .room-card {
    padding: 1.25rem;
  }

  /* Author card */
  .author-card {
    padding: 1.25rem;
  }

  .author-image {
    width: 70px;
    height: 70px;
  }

  /* Article content */
  .article-wrapper {
    padding: 1.5rem 1rem;
  }
}