/* CSS Variables (matching the React version) */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 20%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(0, 0%, 40%);
  --primary: hsl(29, 100%, 48%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(0, 0%, 96%);
  --secondary-foreground: hsl(0, 0%, 10%);
  --border: hsl(0, 0%, 88%);
  --radius: 0.5rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header Styles */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 3rem;
  width: auto;
}

/* Opening Hours Widget */
.opening-hours-desktop {
  display: none;
}

@media (min-width: 768px) {
  .opening-hours-desktop {
    display: block;
  }
}

.opening-hours-mobile {
  display: block;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .opening-hours-mobile {
    display: none;
  }
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-light {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #ef4444;
}

.status-light.open {
  background: #22c55e;
}

.status-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Opening Hours Dropdown */
.opening-hours-widget {
  position: relative;
}

.hours-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: all 0.2s ease;
}

.hours-toggle:hover {
  border-color: var(--primary);
}

.hours-chevron {
  font-size: 0.625rem;
  transition: transform 0.2s ease;
  color: #6b7280;
}

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

.hours-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 4px 10px -3px rgba(0, 0, 0, 0.08);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  padding: 0.5rem 0;
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  transition: background 0.15s ease;
}

.hours-table td {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.hours-day {
  font-weight: 400;
}

.hours-time {
  text-align: right;
  font-weight: 400;
  color: #6b7280;
}

.hours-table tr.today .hours-day,
.hours-table tr.today .hours-time {
  color: var(--primary);
  font-weight: 600;
  background: transparent;
}

.hours-table tr.today {
  background: rgba(234, 88, 12, 0.04);
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
}

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

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

/* Dropdown */
.dropdown-parent {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  padding: 0;
}

.dropdown-toggle .fas {
  font-size: 0.75rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

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

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: var(--muted);
  color: var(--primary);
}

/* Contact Actions */
.contact-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

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

.mobile-menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: #374151;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 20rem;
  background: white;
  z-index: 1001;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 1.5rem;
  padding-top: 5rem;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list > li {
  margin-bottom: 1rem;
}

.mobile-nav-link {
  display: block;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-submenu {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-sublink {
  display: block;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.mobile-sublink:hover {
  color: var(--primary);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

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

.hero-content {
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.cta-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background: var(--background); /* Changed from muted to background so it flows well */
  position: relative;
  z-index: 20;
  margin-top: -3rem; /* overlap with hero slightly or just stay below */
}

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

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

.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

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

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-highlight {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.benefit-title {
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.5px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.benefit-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: var(--muted);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #1f2937;
}

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

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

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

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

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

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-description {
  color: #6b7280;
  line-height: 1.7;
}

/* Utility Classes */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-sm {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Smooth scrolling animation */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: white;
}

.about-content {
  max-width: 64rem;
  margin: 0 auto;
}

.about-intro {
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
  color: #4b5563;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

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

.about-service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.about-service-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-size: 1.125rem;
}

.about-service-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.about-brand-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-company-desc {
  color: #4b5563;
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-specialty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.about-check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
}

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

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-check-item .fa-check {
  color: var(--primary);
  margin-top: 0.25rem;
}

/* Utilities for Layout */
.text-center {
  text-align: center;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-5 {
  margin-top: 3rem;
}

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

.text-primary {
  color: var(--primary);
}

/* Location Section */
.location {
  padding: 5rem 0;
  background: var(--muted);
}

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

@media (min-width: 992px) {
  .location-container {
    grid-template-columns: 1fr 1fr;
  }
}

.location-map {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: white;
}

.map-placeholder {
  height: 350px;
  background: #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-align: center;
  padding: 2rem;
}

.map-placeholder i {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.location-name {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.location-address {
  color: #4b5563;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.location-address i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.location-service {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.location-desc {
  color: #6b7280;
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background: white;
}

.gallery-intro {
  max-width: 48rem;
  margin: 0 auto 3rem auto;
}

.gallery-intro-main {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.gallery-intro-sub {
  color: #6b7280;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-title {
  font-weight: 600;
  font-size: 0.875rem;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-modal.show {
  opacity: 1;
  visibility: visible;
}

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

.gallery-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

#galleryModalImage {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

.gallery-modal-info {
  padding: 1rem;
}

#galleryModalTitle {
  margin: 0;
  font-weight: 600;
  color: #1f2937;
}

/* Testimonial Section */
.testimonial {
  font-size: 1.125rem;
}

.author-location {
  opacity: 0.8;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: white;
}

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

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

.pricing-card {
  position: relative;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #6b7280;
}

.pricing-features i {
  color: #22c55e;
  margin-right: 0.75rem;
  width: 1rem;
}

.pricing-note {
  text-align: center;
  color: #6b7280;
  font-style: italic;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: var(--muted);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  transition: transform 0.3s ease;
}

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

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

.faq-answer.show {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

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

.contact-info {
  display: grid;
  gap: 1.5rem;
}

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

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.contact-details p {
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
  background: var(--muted);
  padding: 2rem;
  border-radius: var(--radius);
}

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

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

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-submit {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0;
}

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

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

.footer-logo img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #9ca3af;
  line-height: 1.7;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
  color: #9ca3af;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
}

/* Print styles */
@media print {
  .header-sticky,
  .mobile-menu,
  .contact-actions {
    display: none;
  }
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: white;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question i {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* New Testimonial Grid Section */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.new-testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.new-testimonial-card .testimonial-rating {
  margin-bottom: 1.5rem;
}

.new-testimonial-card .testimonial-text {
  flex-grow: 1;
  font-size: 1.05rem;
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-client-info {
  display: flex;
  flex-direction: column;
}

.testimonial-client-info strong {
  color: #1f2937;
  font-weight: 600;
}

.testimonial-client-info span {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Brand Text Classes */
.brand-highlight {
  color: var(--primary);
}

/* Map Image Classes */
.location-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.contact-map-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: block;
}

.contact-phone-link {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   SERVICE PAGE STYLES
   ======================================== */

/* Service Hero – shorter than homepage */
.service-hero {
  height: 50vh;
  min-height: 340px;
}

/* Service Content Section */
.service-content {
  padding: 4rem 0;
  background: white;
}

/* Two-column: Image + Checklist */
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.service-main-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-checklist-col {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.checklist-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1f2937;
  margin-bottom: 1.25rem;
}

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

.service-checklist li {
  padding: 0.5rem 0;
  color: var(--primary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-checklist li .fas {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Service Text Content */
.service-text-content {
  max-width: 720px;
  margin-bottom: 3rem;
}

.service-intro {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-section-heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.service-text-content p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Service Content Image (inline image within text) */
.service-content-image {
  margin: 2rem 0;
}

.service-content-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Service Benefits Grid */
.service-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

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

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

.service-benefit-item > i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-benefit-item strong {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.service-benefit-item p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* CTA Box */
.service-cta-box {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}

.service-cta-box h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.service-cta-box p {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.service-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Outline CTA button variant */
.cta-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Pricing subtitle/intro */
.pricing-intro {
  text-align: center;
  color: #6b7280;
  max-width: 600px;
  margin: -1.5rem auto 2.5rem;
  line-height: 1.6;
}

/* Pricing title color class */
.pricing-title-primary {
  color: var(--primary);
}

/* CTA button with icon fix for link-buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

a.cta-button {
  text-decoration: none;
}

/* Mobile submenu show state */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu.show {
  max-height: 300px;
}

/* Footer description second paragraph */
.footer-desc-secondary {
  margin-top: 0.75rem;
}

/* Testimonial section spacing on subpages */
.testimonial {
  padding: 5rem 0;
  background: var(--muted);
}


/* ============================
   Location Landing Page Styles
   ============================ */

.location-page-intro {
  padding: 5rem 0 3rem;
  background: white;
}

.location-page-text {
  max-width: 800px;
  margin: 0 auto;
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.05rem;
}

.location-page-text p {
  margin-bottom: 1.5rem;
}

.location-page-text h3 {
  color: #1f2937;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Service sections on location page */
.location-page-service {
  padding: 4rem 0;
  background: white;
}

.location-page-service.alt-bg {
  background: var(--muted);
}

.service-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-section-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
}

.service-sublist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0;
}

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

.service-sublist li {
  position: relative;
  padding-left: 1.5rem;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
}

.service-sublist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--primary);
  font-size: 0.85rem;
}

/* CTA Section on location page */
.location-page-cta {
  padding: 5rem 0;
  background: #1f2937;
  color: white;
  text-align: center;
}

.location-page-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-page-cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.7;
}

.location-page-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-secondary:hover {
  background: white;
  color: #1f2937;
}