/* 
 * New Forest Device Repairs - Main Stylesheet
 * A clean, custom CSS implementation with no frameworks
 * Matching WordPress Astra theme with Elementor styling
 */

/* === Base Styles === */
:root {
  /* Color Palette - Matched to WordPress site */
  --primary-color: #0D6129; /* Green from WordPress */
  --primary-dark: #094e21;
  --primary-light: #2d8349;
  --secondary-color: #BACCBD; /* Light green background */
  --secondary-dark: #95a697;
  --text-dark: #000000;
  --text-medium: #4b5563;
  --text-light: #9ca3af;
  --background-light: #f9fafb;
  --background-white: #ffffff;
  --background-dark: #111827;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  
  /* Typography - Matched to WordPress site */
  --font-sans: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Poppins', var(--font-sans);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-full: 9999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--background-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover, a:focus {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-md);
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Buttons - Matched to WordPress Elementor styling */
.btn {
  display: inline-block;
  font-weight: 500;
  font-family: var(--font-sans);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-md);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-color: var(--secondary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--text-dark);
  text-decoration: none;
}

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

.btn-cta {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover, .btn-cta:focus {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* === Layout Components === */

/* Header and Navigation */
.site-header {
  background-color: var(--background-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--spacing-sm) 0;
}

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

.logo img {
  max-height: 50px; /* Adjust as needed */
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-lg);
}

.menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-family: var(--font-sans);
  text-decoration: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  transition: all 0.2s ease;
  display: block;
}

.menu a:hover, .menu a:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.menu a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.menu-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  position: relative;
  transition: background-color 0.2s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: transform 0.2s ease;
}

.menu-toggle-icon::before {
  top: -6px;
}

.menu-toggle-icon::after {
  bottom: -6px;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--background-white);
  box-shadow: var(--shadow-medium);
  list-style: none;
  padding: var(--spacing-xs) 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown:hover > .submenu,
.dropdown:focus-within > .submenu {
  display: block;
  z-index: 1000;
}

.submenu li {
  margin: var(--spacing-xs) 0;
}

.submenu a {
  display: block;
  padding: var(--spacing-xs) var(--spacing-md);
  white-space: nowrap;
}

/* Second level dropdown */
.dropdown-submenu {
  position: relative;
}

.sub-submenu {
  display: none;
  position: absolute;
  top: -4px;
  left: calc(100% - 10px);
  background-color: var(--background-white);
  box-shadow: var(--shadow-medium);
  list-style: none;
  padding: var(--spacing-xs) 0;
  min-width: 200px;
  z-index: 999;
}

.dropdown-submenu:hover > .sub-submenu,
.dropdown-submenu:focus-within > .sub-submenu {
  display: block;
  z-index: 999;
}

.call-link {
  background-color: var(--primary-color);
  color: white !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.call-link:hover,
.call-link:focus {
  background-color: var(--primary-dark);
  text-decoration: none;
  color: white !important;
}

/* Hero Section - Matched to WordPress Elementor styling */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 400px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  margin-bottom: var(--spacing-md);
  font-size: 2.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: white;
}

/* Services Overview */
.services-overview {
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-white);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background-color: var(--background-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
  padding: var(--spacing-md) var(--spacing-md) 0;
}

.service-card p {
  padding: 0 var(--spacing-md);
  color: var(--text-medium);
}

.service-card .read-more {
  display: inline-block;
  padding: 0 var(--spacing-md) var(--spacing-md);
  font-weight: 600;
}

/* Why Choose Us - Matched to WordPress Elementor styling */
.why-choose-us {
  background-color: var(--background-white);
  padding: var(--spacing-3xl) 0;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1141px;
  margin: 0 auto;
}

.feature {
  text-align: left;
  padding: var(--spacing-lg);
  background-color: var(--background-white);
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature h3 {
  margin-bottom: var(--spacing-sm);
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: underline;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.feature p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  background-color: var(--primary-color);
  color: white;
  padding: var(--spacing-3xl) 0;
}

.testimonials h2 {
  text-align: center;
  color: white;
  margin-bottom: var(--spacing-md);
}

.star-rating {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  color: #FFD700;
  font-size: 1.5rem;
}

.star-rating .rating-text {
  color: white;
  margin-left: var(--spacing-sm);
  font-size: 1.25rem;
  vertical-align: middle;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

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

.testimonial .quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.testimonial .author {
  font-weight: 600;
  font-size: 1rem;
}

.social-proof {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.social-proof p {
  margin-bottom: var(--spacing-md);
}

.social-button {
  display: inline-flex;
  align-items: center;
  background-color: #1877F2; /* Facebook blue */
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.social-button:hover {
  background-color: #0e5fc0;
  text-decoration: none;
  color: white;
}

.social-button i {
  margin-right: var(--spacing-sm);
  font-size: 1.25rem;
}

/* Map Section */
.map-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-width: 1141px;
  margin: 0 auto;
}

.map {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-info {
  padding: var(--spacing-lg);
  background-color: var(--background-white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
}

.location-info p {
  margin-bottom: var(--spacing-md);
  color: var(--text-medium);
}

.location-info .hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.location-info .hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-xs);
  color: var(--text-medium);
}

.location-info .hours-list span {
  font-weight: 600;
  color: var(--text-dark);
  min-width: 100px;
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.hours-content {
  flex: 1;
}

.hours-image {
  margin-top: var(--spacing-md);
  text-align: center;
}

.hours-image img {
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}

@media (min-width: 500px) {
  .opening-hours {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .hours-image {
    margin-top: 0;
    margin-left: var(--spacing-md);
  }
}

/* Responsive styles for map section */
@media (max-width: 768px) {
  .map-container {
    grid-template-columns: 1fr;
  }
  
  .map {
    height: 300px;
  }
}

/* Footer styles */

/* Page Header */
.page-header {
  background-color: var(--secondary-color);
  padding: var(--spacing-xl) 0;
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.page-header h1 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.breadcrumbs ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 var(--spacing-sm);
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background-color: var(--secondary-color);
  color: white;
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--spacing-sm);
}

.cta-section p {
  margin-bottom: var(--spacing-xl);
  font-size: 1.125rem;
}

/* Footer */
.site-footer {
  background-color: var(--background-dark);
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  margin-top: auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-column h3 {
  color: white;
  margin-bottom: var(--spacing-lg);
  font-size: 1.25rem;
}

.footer-links, .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .hours-list li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.footer-links a:hover, .footer-links a:focus {
  color: white;
}

.hours-list span {
  font-weight: 600;
  margin-right: var(--spacing-sm);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: background-color 0.2s ease;
}

.social-links a:hover, .social-links a:focus {
  background-color: var(--primary-color);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.legal-links {
  list-style: none;
  display: flex;
  gap: var(--spacing-lg);
}

.legal-links a {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* === Contact Page === */
.contact-section {
  padding: var(--spacing-3xl) 0;
  background-color: var(--background-white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
}

.contact-info h2 {
  margin-bottom: var(--spacing-lg);
}

.contact-method {
  margin-bottom: var(--spacing-lg);
}

.contact-method h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.contact-form {
  background-color: var(--background-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--background-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary-light);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.25);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Map */
.map-container {
  margin-top: var(--spacing-2xl);
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* How to Find Us Section */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

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

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

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

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

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

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

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

.find-us-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.find-us-box {
  background-color: var(--background-white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.h-64 {
  height: 16rem;
}

.rounded {
  border-radius: 0.25rem;
}

.overflow-hidden {
  overflow: hidden;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.p-4 {
  padding: 1rem;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.rounded-md {
  border-radius: 0.375rem;
}

.text-sm {
  font-size: 0.875rem;
}

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

.hover\:text-green-900:hover {
  color: var(--primary-dark);
}

/* === Media Queries === */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo {
    margin-bottom: var(--spacing-md);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .main-nav {
    width: 100%;
  }
  
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: var(--spacing-md);
  }
  
  .menu.active {
    display: flex;
  }
  
  .menu li {
    margin: var(--spacing-xs) 0;
    position: relative;
  }
  
  .dropdown-toggle {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    cursor: pointer;
    color: var(--text-dark);
  }
  
  .dropdown-toggle.active i {
    transform: rotate(180deg);
  }
  
  .submenu {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: var(--spacing-lg);
    min-width: auto;
  }
  
  .dropdown:hover > .submenu,
  .dropdown:focus-within > .submenu {
    display: none;
  }
  
  .sub-submenu {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: var(--spacing-lg);
    min-width: auto;
  }
  
  .dropdown-submenu:hover > .sub-submenu,
  .dropdown-submenu:focus-within > .sub-submenu {
    display: none;
  }
  
  .call-link {
    display: inline-block;
    margin-top: var(--spacing-md);
    text-align: center;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .legal-links {
    margin-top: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .site-header .container {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .logo img {
    height: 40px;
  }
  
  .hero {
    padding: var(--spacing-2xl) 0;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .services-overview, .why-choose-us, .testimonials, .cta-section {
    padding: var(--spacing-2xl) 0;
  }
}
