/* 
  Wannemacher Property Solutions LLC - Primary Stylesheet
  Focuses on modern typography, high contrast, clean local service design
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --primary-navy: #0f172a;
  --primary-charcoal: #1e293b;
  --accent-green: #15803d;
  --accent-green-hover: #166534;
  --accent-orange: #ea580c;
  --accent-orange-hover: #ca8a04;
  --neutral-white: #ffffff;
  --neutral-light: #f8fafc;
  --neutral-gray: #e2e8f0;
  --text-dark: #0f172a;
  --text-muted: #475569;
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & styles */
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--neutral-white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

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

/* Utility titles */
.section-title {
  font-size: 2.25rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--neutral-white);
  box-shadow: 0 4px 10px rgb(234 88 12 / 0.25);
}

.btn-primary:hover {
  background-color: #d946ef; /* customized pop color or hover */
  background-color: #ea580c; /* fallback fallback */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgb(234 88 12 / 0.35);
}

.btn-green {
  background-color: var(--accent-green);
  color: var(--neutral-white);
  box-shadow: 0 4px 10px rgb(21 128 61 / 0.25);
}

.btn-green:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgb(21 128 61 / 0.35);
}

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

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: var(--neutral-white);
  box-shadow: var(--shadow-sm);
  z-index: 100;
}

.header-top {
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

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

.header-top-info {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.header-top-social a {
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.header-top-social a:hover {
  opacity: 0.8;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-green);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-navy);
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  color: var(--primary-charcoal);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

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

/* Nav dropdown styling */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 250px;
  background-color: var(--neutral-white);
  border: 1px solid var(--neutral-gray);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 50;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: var(--primary-charcoal);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--neutral-light);
  color: var(--accent-green);
  padding-left: 1.5rem;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.header-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%), url('/images/backgrounds/hero-bg-overlay.jpg');
  background-size: cover;
  background-position: center;
  color: var(--neutral-white);
  padding: 6rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-tagline {
  color: var(--accent-green);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--accent-green);
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--neutral-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.hero-image-wrapper {
  position: relative;
  max-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

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

/* Trust Bar */
.trust-bar {
  background-color: var(--primary-navy);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.trust-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--neutral-white);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-icon-box {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(21, 128, 61, 0.2);
  border: 1px solid var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
}

/* Service Overview Section */
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.service-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.service-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--accent-green);
  font-size: 0.95rem;
  transition: gap var(--transition-fast);
}

.service-card-link:hover {
  color: var(--accent-green-hover);
  gap: 0.75rem;
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.why-feature-card {
  background-color: var(--neutral-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-green);
}

.why-feature-title {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.why-intro-subtitle {
  color: var(--accent-green);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* Image-Based Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-card {
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
  border: 1px solid var(--neutral-gray);
}

.gallery-card:hover {
  transform: scale(1.02);
}

.gallery-img-container {
  height: 200px;
  overflow: hidden;
}

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

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

.gallery-card-title {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.gallery-card-desc {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.gallery-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
}

/* Double Pane Before / After styling */
.before-after-container {
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.ba-pane {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--neutral-gray);
  aspect-ratio: 16/10;
}

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

.ba-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(15, 23, 42, 0.85);
  color: var(--neutral-white);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ba-label.after-label {
  background-color: rgba(21, 128, 61, 0.95);
}

.ba-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f1f5f9;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
}

/* Service Detail Sections (Copy/Images on Home) */
.home-service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-service-section.reverse {
  direction: rtl;
}

.home-service-section.reverse > * {
  direction: ltr;
}

.service-sub-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem 0;
  list-style: none;
}

.service-sub-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-charcoal);
}

.service-sub-icon {
  color: var(--accent-green);
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: var(--neutral-white);
  border: 1px solid var(--neutral-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--neutral-white);
  transition: background-color var(--transition-fast);
}

.faq-header:hover {
  background-color: var(--neutral-light);
}

.faq-question {
  font-size: 1.1rem;
  color: var(--primary-navy);
  font-weight: 600;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid var(--neutral-gray);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-body {
  max-height: 500px;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* Area Grid */
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.area-btn {
  background-color: var(--neutral-white);
  border: 1px solid var(--neutral-gray);
  padding: 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-charcoal);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.area-btn:hover {
  border-color: var(--accent-green);
  background-color: var(--neutral-light);
  transform: translateY(-2px);
  color: var(--accent-green);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-card {
  background-color: var(--neutral-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-gray);
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--accent-green);
  color: var(--neutral-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  border: 4px solid var(--neutral-light);
}

.process-card-title {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.process-card-desc {
  font-size: 0.875rem;
}

/* Breadcrumbs partial */
.breadcrumbs {
  background-color: var(--neutral-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--neutral-gray);
  font-size: 0.875rem;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
}

.breadcrumb-item {
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--accent-green);
}

.breadcrumb-separator {
  color: var(--neutral-gray);
}

.breadcrumb-active {
  color: var(--text-dark);
  font-weight: 600;
}

/* Contact / Free Quote Page Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.quote-card {
  background-color: var(--neutral-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-gray);
}

.quote-title {
  font-size: 1.75rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.quote-subtitle {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

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

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-charcoal);
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.profile-avatar-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.profile-avatar-box .about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.info-card {
  background-color: var(--neutral-light);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-green);
}

.info-card-title {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

/* Call to Action Partial */
.cta-banner {
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.cta-banner-desc {
  font-size: 1.125rem;
  color: var(--neutral-gray);
  margin-bottom: 2.5rem;
}

.cta-banner-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer Section */
.footer {
  background-color: var(--primary-navy);
  color: var(--neutral-white);
  padding-top: 4rem;
  padding-bottom: 6rem; /* Extra padding for mobile sticky bar */
  border-top: 4px solid var(--accent-green);
  font-size: 0.9rem;
}

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

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--neutral-white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background-color: var(--accent-green);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link a {
  color: var(--neutral-gray);
  transition: color var(--transition-fast);
}

.footer-link a:hover {
  color: var(--accent-green);
}

.footer-about-text {
  color: var(--neutral-gray);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--neutral-gray);
  font-size: 0.85rem;
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-navy);
  display: none; /* Shown in media queries */
  grid-template-columns: 1fr 1fr;
  z-index: 99;
  box-shadow: 0 -4px 10px rgb(0 0 0 / 0.15);
  border-top: 2px solid var(--accent-green);
}

.sticky-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--neutral-white);
  text-align: center;
}

.sticky-tab-call {
  background-color: var(--accent-green);
}

.sticky-tab-quote {
  background-color: var(--accent-orange);
}

/* Success Alerts */
.msg-alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.msg-success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-overview-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid, .home-service-section, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--neutral-gray);
    z-index: 95;
    gap: 1.25rem;
  }

  .header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
  
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }

  .header-top {
    display: none;
  }
  
  .navbar {
    padding: 0.75rem 0;
  }

  .nav-links.active li,
  .nav-links.active .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-links.active .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-links.active .nav-link-dropdown {
    justify-content: center;
  }
  
  .nav-links.active .nav-dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition: max-height var(--transition-normal), opacity var(--transition-fast);
    background-color: var(--neutral-light);
    border-radius: var(--radius-sm);
  }
  
  .nav-links.active .nav-item.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 420px;
    margin-top: 0.75rem;
    padding: 0.5rem 0;
  }
  
  .header-actions {
    display: none; /* Simplify header items for mobile screen size */
  }

  .mobile-sticky-cta {
    display: grid;
  }
  
  .trust-flex {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2rem;
  }
  
  .gallery-grid, .service-overview-grid {
    grid-template-columns: 1fr;
  }
  
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  
  .before-after-container {
    padding: 1.25rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
  
  .quote-card {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .area-grid {
    grid-template-columns: 1fr;
  }
}
