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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a202c;
  background-color: #ffffff;
}

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

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1e40af;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
}

.skip-link:focus {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header Styles */
.header {
  /* Updated header to lighter blue for better menu text visibility */
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  color: #ffffff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Adjusted shadow to match new lighter blue header */
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-section {
  flex: 1;
}

/* Updated logo styling with SVG icon and professional design */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: #fbbf24;
  flex-shrink: 0;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  display: block;
  margin-top: 2px;
}

.rating-badge {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.stars {
  color: #fbbf24;
  margin-right: 8px;
}

/* Added mobile menu toggle button styling */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced navigation menu with mobile functionality */
.main-nav {
  position: relative;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-header {
  display: none;
}

.nav-close {
  display: none;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-emergency {
  display: none;
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.emergency-badge {
  background: #dc2626;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.header-phone {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header-phone:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Mobile Menu Styling */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2563eb;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.mobile-menu a:hover {
  color: #fbbf24;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 10px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 30%, #6366f1 70%, #8b5cf6 100%);
  color: #ffffff;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title .highlight {
  color: #fbbf24;
  display: block;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #f97316;
  color: white;
  padding: 20px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
}

.cta-primary:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

.cta-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.cta-subtext {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 800px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.feature-icon {
  font-size: 1.5rem;
}

/* Emergency Banner */
.emergency-banner {
  background: #dc2626;
  color: white;
  padding: 16px 0;
  animation: pulse 3s infinite;
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.emergency-icon {
  font-size: 1.5rem;
}

.emergency-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.emergency-btn {
  background: white;
  color: #dc2626;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

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

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  background: #1e40af;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a202c;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f9fafb;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 8px;
}

.stat-label {
  color: #6b7280;
  font-weight: 500;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #4b5563;
}

.certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  font-size: 1.3rem;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: #1e40af;
}

.service-card.featured {
  border-color: #f97316;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.service-icon.emergency {
  animation: pulse 2s infinite;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a202c;
}

.service-card p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
}

.service-features li {
  padding: 4px 0;
  color: #374151;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e40af;
  padding: 12px 20px;
  background: #eff6ff;
  border-radius: 8px;
  text-align: center;
}

/* Why Choose Us Section */
.why-choose {
  padding: 100px 0;
  background: #f9fafb;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a202c;
}

.benefit-card p {
  color: #4b5563;
  line-height: 1.7;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: white;
}

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

.faq-item {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #1e40af;
}

.faq-question {
  padding: 24px;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a202c;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #1e40af;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: #4b5563;
  line-height: 1.7;
  display: none;
}

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

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
}

.review-date {
  color: #6b7280;
  font-size: 0.9rem;
}

.testimonial-text {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info strong {
  display: block;
  color: #1a202c;
  font-weight: 600;
}

.author-info span {
  color: #6b7280;
  font-size: 0.9rem;
}

.verified-badge {
  background: #10b981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.review-summary {
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 8px;
}

.stat-label {
  color: #6b7280;
  font-weight: 500;
}

/* Service Areas Section */
.service-areas {
  padding: 100px 0;
  background: white;
}

.areas-content {
  max-width: 1000px;
  margin: 0 auto;
}

.primary-area {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  background: #eff6ff;
  border-radius: 16px;
}

.primary-area h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e40af;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.area-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.area-card.primary {
  border: 2px solid #1e40af;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.area-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.area-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a202c;
}

.area-note {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #f9fafb;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.emergency-contact {
  text-align: center;
  margin-bottom: 48px;
  padding: 40px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border-radius: 16px;
}

.emergency-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.emergency-phone {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.emergency-phone:hover {
  transform: scale(1.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.contact-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.contact-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a202c;
}

.contact-card a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card p {
  color: #6b7280;
  margin-top: 8px;
}

.hours p {
  margin: 4px 0;
}

/* Footer */
.footer {
  background: #1a202c;
  color: #e5e7eb;
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-brand h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  font-size: 1.5rem;
}

.footer-brand p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-rating .stars {
  color: #fbbf24;
}

.footer-contact h4,
.footer-services h4,
.footer-links h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.7;
}

.footer-contact a,
.footer-services a,
.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-services a:hover,
.footer-links a:hover {
  color: #3b82f6;
}

.footer-services nav,
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.legal-links a {
  color: #9ca3af;
  text-decoration: none;
}

.legal-links a:hover {
  color: #3b82f6;
}

.footer-emergency {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fbbf24;
  font-weight: 600;
}

.footer-emergency a {
  color: #fbbf24;
  text-decoration: none;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-content {
    position: relative;
  }

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

  .main-nav .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .main-nav .nav-menu.active {
    right: 0;
  }

  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
  }

  .nav-close {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-link {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    text-shadow: none;
    font-size: 1.1rem;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
    padding-left: 30px;
  }

  .nav-emergency {
    display: block;
    padding: 20px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .nav-emergency-text {
    display: block;
    color: #fbbf24;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .nav-emergency-phone {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
  }

  .header-cta {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-text h1 {
    font-size: 1.2rem;
  }

  .logo-tagline {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .emergency-phone {
    font-size: 2rem;
  }

  .main-nav .nav-menu {
    width: 280px;
  }
}
