/* Color scheme for Weingartner's Window Services */
:root {
  --primary: #d99f48; /* Pantone 4025 C / 7506 C - Golden */
  --secondary: #0E181E; /* Dark Navy Blue */
  --accent: #d99f48; /* Golden accent */
  --cream: #EED6AC; /* Cream/Beige for header and footer */
  --black: #000000;
  --white: #FFFFFF;
  --gray: #808080;
  --cta: var(--primary);
  --cta-hover: #b8853a; /* Darker golden for hover */
  --bg: var(--white);
  --text: var(--secondary);
  --accent-bg: #f8f8f8;
  --border: var(--gray);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Account for sticky header */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Header Styles - The Big Rise inspired */
.site-header {
  background: var(--cream);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  box-shadow: none;
  min-height: 89px; /* Reserve space: logo (50px) + padding (38.4px) = ~89px to prevent layout shift */
  display: block; /* Ensure it's rendered immediately */
  visibility: visible; /* Ensure it's visible even when empty */
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--secondary);
  opacity: 0.8;
}

.nav-link {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--secondary);
  opacity: 0.8;
}

/* Services Dropdown */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--secondary);
  opacity: 0.8;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
  opacity: 1;
  stroke: currentColor;
}

.nav-dropdown-toggle[aria-expanded="true"] .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--secondary);
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  min-width: 220px;
  max-width: calc(100vw - 2rem);
  padding: 0.75rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 1001;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  position: relative;
}

.dropdown-menu li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 28px;
  background: var(--cta);
  opacity: 0.5;
}

.dropdown-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.header-cta {
  background: var(--cta);
  color: var(--white);
  padding: 0.75rem 1.6rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(217, 159, 72, 0.3);
}

.header-cta.secondary {
  background: #0E1C2C;
  color: var(--white);
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 30px;
}

.header-cta.secondary:hover {
  background: var(--cta-hover);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(217, 159, 72, 0.3);
}

.header-cta.call-now {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--primary);
}

.header-cta.call-now:hover {
  background: var(--cta-hover);
  color: var(--white);
  border-color: var(--cta-hover);
}

.phone-icon {
  flex-shrink: 0;
}

/* Mobile menu toggle */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

#hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

#hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

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

#hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  top: -8px;
}

/* Hero Section - The Big Rise style */
.hero-section {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 1.5rem;
  margin-top: 0;
  background-color: var(--secondary);
  background-image: url('/images/old-site/soapy-window-cleaning-topeka-ks.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 66% 45% at 50% 30%, rgba(217, 159, 72, 0.45) 0%, rgba(14, 24, 30, 0.85) 70%);
  z-index: 1;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


.hero-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-cta {
  background: var(--cta);
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(200, 47, 34, 0.4);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 47, 34, 0.5);
}

/* Mobile styles */
@media (max-width: 968px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .header-right {
    gap: 0.75rem;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
    font-family: inherit;
  }

  .header-cta.secondary {
    display: none;
  }

  .dropdown-menu {
    right: 0;
    transform: translateY(-10px);
    min-width: 180px;
    max-width: calc(100vw - 2rem);
  }

  .dropdown-menu.active {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 70px;
    padding: 0.75rem 0;
  }
  
  .logo {
    height: 38px;
  }
  
  .header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .header-left {
    flex-shrink: 0;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
  }
  
  .header-cta.call-now {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .header-cta.call-now .phone-icon {
    width: 14px;
    height: 14px;
  }
  
  #hamburger {
    display: flex;
    padding: 0.4rem;
    flex-shrink: 0;
    order: 3;
  }
  
  #hamburger span {
    width: 22px;
    height: 2.5px;
  }
  
  .header-cta.call-now {
    order: 2;
  }

  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 75%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    padding-top: 4.5rem;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    overflow-y: auto;
  }
  
  #hamburger[aria-expanded="true"] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1004;
    background: var(--white);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  
  @media (min-width: 534px) {
    .main-nav.active {
      width: 400px;
    }
    
    #hamburger[aria-expanded="true"] {
      right: calc(100vw - 400px + 1rem);
    }
  }

  .main-nav.active ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .main-nav.active a {
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--secondary) !important;
    font-weight: 600;
    -webkit-tap-highlight-color: rgba(217, 159, 72, 0.2);
    touch-action: manipulation;
    cursor: pointer;
  }
  
  .main-nav.active .nav-dropdown-toggle {
    color: var(--secondary) !important;
    -webkit-tap-highlight-color: rgba(217, 159, 72, 0.2);
    touch-action: manipulation;
    cursor: pointer;
  }
  
  .main-nav.active .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    margin-top: 0.25rem;
    margin-left: 1.5rem;
    margin-right: 0;
    width: calc(100% - 1.5rem);
    max-width: 100%;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  
  .main-nav.active .dropdown-menu li {
    margin: 0;
    padding: 0;
  }
  
  .main-nav.active .dropdown-menu a {
    color: var(--secondary) !important;
    padding: 0.875rem 0;
    display: block;
    border: none;
    background: transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(217, 159, 72, 0.2);
    touch-action: manipulation;
    cursor: pointer;
  }
  
  .main-nav.active .dropdown-menu a:hover {
    background: transparent;
    color: var(--primary) !important;
  }
  
  .main-nav.active .nav-item-dropdown {
    position: static;
  }
  
  .main-nav.active .dropdown-menu li:not(:last-child)::after {
    display: none;
  }

  .dropdown-menu li:not(:last-child)::after {
    display: none;
  }

  .hero-section {
    min-height: 50vh;
    padding: 3rem 1.5rem 2rem;
  }

  .hero-title {
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 9vw, 4.5rem);
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
    font-size: clamp(0.95rem, 3vw, 1.2rem);
  }

  .hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 55vh;
    padding: 3.5rem 1rem 2rem;
  }

  .hero-title {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 10vw, 3.5rem);
  }

  .hero-subtitle {
    margin-bottom: 1.25rem;
    font-size: clamp(0.9rem, 4vw, 1.1rem);
  }

  .hero-cta {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
}

/* What To Expect Section */
.what-to-expect-section {
  background: #EED6AC;
  padding: 5rem 2rem;
}

.what-to-expect-container {
  max-width: 1400px;
  margin: 0 auto;
}

.what-to-expect-heading {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.what-to {
  color: var(--black);
  display: block;
}

.expect {
  color: var(--white);
  display: block;
}

/* Google Rating Badge */
.google-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.google-rating-badge .google-logo {
  height: 42px;
  width: auto;
}

.google-rating-badge .rating-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: column;
}

.google-rating-badge .stars {
  display: flex;
  gap: 0.225rem;
}

.google-rating-badge .star {
  color: #FFD700;
  font-size: 1.65rem;
  line-height: 1;
}

.google-rating-badge .review-count-badge {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.25rem;
}

/* Review Snippets */
.review-snippets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Section CTA Wrapper */
.section-cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.section-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.call-now-cta {
  background: var(--cta);
  color: var(--white);
  border: 2px solid var(--cta);
}

.call-now-cta:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 47, 34, 0.3);
}

.get-clean-cta {
  background: var(--cta);
  color: var(--white);
  border: 2px solid var(--cta);
}

.get-clean-cta:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 47, 34, 0.3);
}

/* Section CTA in dark sections */
.how-we-clean-section .section-cta-wrapper .get-clean-cta {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
}

.how-we-clean-section .section-cta-wrapper .get-clean-cta:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}


.review-snippet {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  opacity: 0.85;
  font-weight: 500;
}

/* Story Content Wrapper - Two Column Layout */
.story-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text-content {
  display: flex;
  flex-direction: column;
}

.story-heading {
  text-align: left;
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.story-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.process-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.process-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.process-description {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  opacity: 0.85;
}

/* Service Page Specific Styles */
.service-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.story-intro {
  text-align: left;
  margin: 0;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.intro-text:last-child {
  margin-bottom: 0;
}

/* Content Links - Minimal styling */
.content-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.content-link:hover {
  opacity: 0.7;
}

.blog-body .content-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.blog-body .content-link:hover {
  opacity: 0.7;
}

.service-cta-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
  margin: 2rem 0 2.5rem;
  opacity: 0.9;
}

.benefits-list {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  text-align: left;
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cta);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.benefit-description {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .what-to-expect-section {
    padding: 2rem 1.5rem;
  }

  .what-to-expect-heading {
    margin-bottom: 1rem;
  }

  .google-rating-badge {
    margin-bottom: 0.5rem;
    gap: 1rem;
    flex-direction: column;
  }

  .google-rating-badge .google-logo {
    height: 42px;
  }

  .google-rating-badge .rating-display {
    flex-direction: row;
    gap: 0.75rem;
  }

  .google-rating-badge .star {
    font-size: 1.65rem;
  }

  .google-rating-badge .review-count-badge {
    margin-top: 0;
    font-size: 1.35rem;
  }

  .review-snippets {
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
  }

  .review-snippet {
    font-size: 0.85rem;
  }

  .section-cta-wrapper {
    margin-top: 2rem;
  }

  .section-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .story-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-heading {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .story-text-content {
    order: -1;
  }

  .process-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-card {
    padding: 2rem;
  }

  .process-number {
    font-size: 2.5rem;
  }

  .process-title {
    font-size: 1.3rem;
  }

  .intro-text {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .cta-text {
    font-size: 1.1rem;
    margin: 1.5rem 0 2rem;
  }

  .benefits-list {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .benefit-item {
    gap: 1rem;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .benefit-number {
    font-size: 2rem;
    min-width: 2.5rem;
    padding-top: 0.25rem;
  }

  .benefit-title {
    font-size: 1.3rem;
  }
}

/* How We Clean Section */
.how-we-clean-section {
  background: var(--secondary);
  padding: 5rem 2rem;
}

.how-we-clean-container {
  max-width: 1400px;
  margin: 0 auto;
}

.how-we-clean-heading {
  text-align: center;
  margin-bottom: 4rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.how-we {
  color: var(--white);
  display: block;
}

.clean {
  color: var(--cta);
  display: block;
}

.cleaning-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.cleaning-method-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  display: block;
}

.method-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  display: block;
}

.method-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

.hand-clean-image {
  object-position: right center;
}


.cleaning-method-card:hover .method-image {
  transform: scale(1.05);
}

.method-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: center;
  margin: 0;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .how-we-clean-section {
    padding: 3rem 1.5rem;
  }

  .how-we-clean-heading {
    margin-bottom: 3rem;
  }

  .cleaning-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cleaning-method-card {
    transform: scale(0.85);
    transform-origin: center;
  }

  .method-label {
    font-size: 1rem;
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .cleaning-methods {
    grid-template-columns: 1fr;
  }

  .cleaning-method-card {
    transform: scale(0.85);
    transform-origin: center;
  }
}

/* Save Big With Memberships Section */
.memberships-section {
  background: var(--secondary);
  padding: 5rem 2rem;
}

.memberships-container {
  max-width: 1400px;
  margin: 0 auto;
}

.memberships-heading {
  text-align: center;
  margin-bottom: 4rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.save-big {
  color: var(--white);
  display: block;
}

.memberships {
  color: var(--cta);
  display: block;
}

.membership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.membership-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.membership-top {
  background: var(--cta);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.discount-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.discount-frequency {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.discount-per {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.membership-bottom {
  background: var(--accent-bg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership-cta {
  background: var(--cta);
  color: var(--white);
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.membership-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 47, 34, 0.3);
}

@media (max-width: 768px) {
  .memberships-section {
    padding: 3rem 1.5rem;
  }

  .memberships-heading {
    margin-bottom: 3rem;
  }

  .membership-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .membership-top {
    padding: 1.75rem 1.25rem;
  }

  .discount-amount {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .discount-frequency {
    font-size: 1.75rem;
  }
  
  .discount-per {
    font-size: 0.85rem;
  }
  
  .membership-bottom {
    padding: 1.25rem;
  }
  
  .membership-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .discount-frequency {
    font-size: 1.1rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
  padding: 5rem 2rem;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.you-saw {
  color: var(--black);
  display: block;
}

.right {
  color: var(--cta);
  display: block;
}

.google-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.google-logo-wrapper {
  display: flex;
  align-items: center;
}

.google-logo {
  height: 30px;
  width: auto;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.star {
  color: #FFD700;
  font-size: 1.25rem;
  line-height: 1;
}

.review-count {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.8;
}

.write-review-btn {
  background: var(--cta);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.write-review-btn:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.reviews-carousel {
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.reviews-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verified-badge {
  color: #4285F4;
  font-size: 0.9rem;
}


.review-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.testimonials-cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-cta {
  background: var(--cta);
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}

.testimonials-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 47, 34, 0.4);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 1.5rem;
  }

  .testimonials-heading {
    margin-bottom: 2rem;
  }

  .google-summary {
    flex-direction: column;
    gap: 1rem;
  }

  .reviews-wrapper {
    grid-template-columns: 1fr;
  }
  
  .review-card:nth-child(n+4) {
    display: none;
  }

  .testimonials-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Follow Along Online Section */
.follow-along-section {
  background: var(--white);
  padding: 5rem 2rem;
}

.follow-along-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.follow-along-heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.follow-along {
  color: var(--black);
  display: block;
}

.online {
  color: var(--cta);
  display: block;
}

.social-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-profile .social-links {
  margin: 0 auto;
}

.profile-logo {
  flex-shrink: 0;
}

.social-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.facebook-link,
.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.facebook-link:hover,
.instagram-link:hover {
  transform: scale(1.1);
}

.facebook-link svg,
.instagram-link svg {
  width: 120px;
  height: 120px;
}

@media (max-width: 768px) {
  .follow-along-section {
    padding: 3rem 1.5rem;
  }

  .follow-along-heading {
    margin-bottom: 2rem;
  }

  .social-profile {
    flex-direction: row;
    gap: 2rem;
  }

  .social-logo {
    width: 90px;
    height: 90px;
  }

  .social-links {
    gap: 1rem;
  }
  
  .facebook-link svg,
  .instagram-link svg {
    width: 90px;
    height: 90px;
  }
}

/* Google Maps Section */
.google-maps-section {
  background: var(--white);
  padding: 4rem 2rem;
}

.google-maps-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.google-maps-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.google-maps-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.google-maps-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.google-maps-cta {
  margin-top: 1.5rem;
}

.google-maps-link {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.google-maps-link:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 159, 72, 0.3);
}

@media (max-width: 768px) {
  .google-maps-section {
    padding: 3rem 1.5rem;
  }

  .google-maps-wrapper iframe {
    height: 350px;
  }

  .google-maps-link {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Final Offer Section */
.final-offer-section {
  background: var(--secondary);
  padding: 2rem 2rem;
}

.final-offer-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.final-offer-heading {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.alright {
  color: var(--white);
  display: block;
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.offer {
  color: var(--cta);
  display: block;
  margin-top: 0.25rem;
}

.guarantee-content {
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-title {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.guarantee-highlight {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.yes {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hundred {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.guarantee-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-offer-cta {
  background: var(--cta);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(200, 47, 34, 0.3);
}

.final-offer-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 47, 34, 0.4);
}

@media (max-width: 768px) {
  .final-offer-section {
    padding: 1.5rem 1.5rem;
  }

  .final-offer-heading {
    margin-bottom: 0.5rem;
  }

  .guarantee-title {
    margin-bottom: 0.5rem;
  }

  .guarantee-highlight {
    margin-bottom: 0.5rem;
  }

  .guarantee-text {
    margin-bottom: 0.75rem;
  }

  .final-offer-cta {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }
}

/* Footer Styles */
.site-footer {
  background: var(--cream);
  padding: 3rem 2rem;
  color: var(--secondary);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.footer-left {
  display: flex;
  justify-content: flex-start;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--secondary);
  opacity: 0.8;
}

.footer-quote-link {
  color: var(--secondary) !important;
}

.footer-quote-link:hover {
  color: var(--secondary) !important;
  opacity: 0.8;
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-link {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 120px;
  width: auto;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  text-align: left;
  white-space: nowrap;
}

.footer-contact-item:hover {
  color: var(--secondary);
  opacity: 0.8;
}

.footer-icon {
  flex-shrink: 0;
  opacity: 1;
  color: var(--secondary);
}

.footer-credit {
  max-width: 1400px;
  margin: 0.25rem auto 0;
  padding-top: 0.25rem;
  text-align: center;
}

.footer-credit p {
  color: rgba(14, 24, 30, 0.7);
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
}


@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
  }
}

/* Contact Page Styles */
.contact-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  padding: 4rem 2rem;
}

.jobber-form-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  background: var(--secondary);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.contact-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-dot {
  color: var(--white);
}

.contact-form-container {
  background: var(--cta);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin: -2rem auto 4rem;
  max-width: 600px;
  width: calc(100% - 4rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

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

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-label .optional {
  font-weight: 400;
  opacity: 0.8;
  font-size: 0.85rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
  opacity: 0.6;
}

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

.form-consent {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.consent-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.consent-text:last-child {
  margin-bottom: 0;
}

.form-submit-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-submit-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.form-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .jobber-form-container {
    width: 100%;
  }

  .contact-header {
    padding: 3rem 1.5rem 1.5rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
    margin: -1.5rem auto 3rem;
    width: calc(100% - 2rem);
    border-radius: 16px;
  }

  .contact-form-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .contact-form {
    gap: 1.5rem;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .consent-text {
    font-size: 0.7rem;
  }

  .form-submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .site-footer {
    padding: 2rem 1.5rem;
  }

  .footer-container {
    gap: 1.5rem;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-credit {
    margin-top: 0.25rem;
    padding-top: 0.25rem;
  }

  .footer-credit p {
    font-size: 0.7rem;
  }
}

/* FAQ Section */
.faq-section {
  background: var(--accent-bg);
  padding: 5rem 2rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.faq-title-top {
  color: var(--black);
  display: block;
}

.faq-title-bottom {
  color: var(--cta);
  display: block;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--secondary);
  font-family: inherit;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.faq-question:hover {
  color: var(--cta);
  background: rgba(200, 47, 34, 0.05);
}

.faq-question:focus {
  outline: 2px solid var(--cta);
  outline-offset: -2px;
}

.faq-question span {
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--cta);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] {
  color: var(--cta);
  background: rgba(200, 47, 34, 0.08);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

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

.faq-answer p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  padding-top: 0.5rem;
}

.faq-inline-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-inline-link:hover {
  color: var(--cta);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1.5rem;
  }

  .faq-heading {
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-answer.active {
    padding: 0 1.25rem 1.25rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }
}

/* Blog Post Styles */
.blog-post {
  padding: 3rem 0;
  background: var(--white);
}

.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-featured-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}

.blog-content {
  max-width: 700px;
  margin: 0 auto;
}

.blog-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 2rem;
  text-align: left;
  letter-spacing: 0.02em;
}

.blog-body {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--text);
}

.blog-body p {
  margin-bottom: 1.5rem;
  text-align: left;
}

.blog-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--secondary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.blog-body strong {
  font-weight: 700;
  color: var(--secondary);
}

.blog-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--accent-bg);
  text-align: center;
}

.blog-cta-button {
  background: var(--cta);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(200, 47, 34, 0.3);
}

.blog-cta-button:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 47, 34, 0.4);
}

.blog-inline-cta {
  background: var(--accent-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
}

.blog-inline-cta p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--text);
}

.blog-inline-cta strong {
  color: var(--secondary);
}

.blog-inline-cta-button {
  background: var(--cta);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(200, 47, 34, 0.3);
}

.blog-inline-cta-button:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 47, 34, 0.4);
}

@media (max-width: 768px) {
  .blog-post {
    padding: 2rem 0;
  }

  .blog-container {
    padding: 0 1.5rem;
  }

  .blog-featured-image {
    margin-bottom: 2rem;
  }

  .blog-title {
    margin-bottom: 1.5rem;
  }

  .blog-body {
    font-size: 1rem;
  }

  .blog-body h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .blog-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .blog-cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-left {
    justify-content: center;
    order: 2;
  }
  
  .footer-center {
    order: 1;
  }
  
  .footer-right {
    justify-content: center;
    order: 3;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-contact-item {
    text-align: center;
  }
  
  .footer-logo {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 1.5rem;
  }
  
  .footer-nav {
    gap: 0.5rem;
  }
  
  .footer-nav a {
    font-size: 0.9rem;
  }
  
  .footer-contact-item {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  
  .footer-logo {
    height: 80px;
  }
}

.footer-faq-link {
  color: rgba(14, 24, 30, 0.7);
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.footer-faq-link:hover {
  opacity: 0.8;
}

.footer-credit-link {
  color: rgba(14, 24, 30, 0.7);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-credit-link:hover {
  opacity: 0.8;
}

/* FAQ Page Styles */
.faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.faq-card-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-card-preview {
  color: rgba(14, 24, 30, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.faq-answer-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-page-question {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.faq-answer-text {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-answer-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--secondary);
  margin: 0;
}

.faq-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.faq-back-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.faq-back-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

@media (max-width: 768px) {
  .faq-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-card {
    padding: 1.5rem;
  }
  
  .faq-answer-text {
    padding: 2rem 1.5rem;
  }
  
  .faq-navigation {
    flex-direction: column;
    align-items: stretch;
  }
  
  .faq-navigation .hero-cta {
    width: 100%;
    text-align: center;
  }
  
  .faq-page-question {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .faq-answer-text {
    padding: 2rem 1.5rem;
  }
}
