/* ================================================
   ALL AMERICAN APPLIANCE REPAIR — MAIN STYLESHEET
   Colors: Navy #001B60, Red #CF1D32, White #FFFFFF
   Fonts: Rubik (headings), Inter (body)
   ================================================ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #001B60;
  --red: #CF1D32;
  --white: #FFFFFF;
  --light-gray: #f5f6f8;
  --mid-gray: #e8eaed;
  --text-dark: #1a1a2e;
  --text-mid: #444;
  --text-light: #777;
  --shadow: 0 4px 24px rgba(0,27,96,0.10);
  --shadow-lg: 0 8px 40px rgba(0,27,96,0.16);
  --radius: 8px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.section-title.red { color: var(--red); }
.section-title.white { color: var(--white); }
.section-intro {
  max-width: 720px;
  color: var(--text-mid);
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.section-intro.light { color: rgba(255,255,255,0.85); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.btn-primary:hover { background: #a8151f; border-color: #a8151f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(207,29,50,0.4); }
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: #a8151f; border-color: #a8151f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(207,29,50,0.35); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-large { font-size: 1.1rem; padding: 1rem 2.5rem; }
.btn.full-width { width: 100%; justify-content: center; }
.phone-icon { font-size: 1.1em; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 27, 96, 0.97);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 52px; width: auto; }
.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-list li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.88);
  font-family: 'Rubik', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-link.active { background: var(--red); }
.arrow { font-size: 0.7em; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  border-top: 3px solid var(--red);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  border-bottom: 1px solid var(--mid-gray);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light-gray); color: var(--red); padding-left: 1.5rem; }

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.header-phone:hover { background: #a8151f; transform: translateY(-1px); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,27,96,0.72) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 850px;
  animation: fadeInUp 1s ease both;
}
.hero-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.92;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: var(--header-height);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,27,96,0.78) 0%, rgba(0,0,0,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.page-hero-content h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page-hero-content p {
  font-size: 1rem;
  opacity: 0.88;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 5rem 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text p { color: var(--text-mid); margin-bottom: 1.5rem; }
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.brands-img { border-radius: var(--radius); }

/* ===== ABOUT STRIP ===== */
.about-strip {
  padding: 5rem 0;
  background: var(--light-gray);
}
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-strip-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-strip-text p { color: var(--text-mid); margin-bottom: 1.5rem; }

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 5rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(207,29,50,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-overlay span {
  color: var(--white);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card h3 {
  padding: 1rem;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== CALL BANNER ===== */
.call-banner {
  background: var(--navy);
  padding: 3.5rem 0;
}
.call-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.call-banner-text h2 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.call-banner-text p { color: rgba(255,255,255,0.8); }

/* ===== SERVICE DETAIL ===== */
.service-detail { padding: 5rem 0; }
.service-detail.alt-bg { background: var(--light-gray); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.service-detail-text p { color: var(--text-mid); margin-bottom: 1.5rem; }

/* ===== WHY US STRIP ===== */
.why-us-strip {
  padding: 4rem 0;
  background: var(--navy);
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card {
  text-align: center;
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.07); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.why-card h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ===== SERVICE AREAS ===== */
.service-areas {
  padding: 5rem 0;
  background: var(--white);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}
.areas-grid li {
  background: var(--light-gray);
  border: 1px solid var(--mid-gray);
  border-left: 4px solid var(--red);
  padding: 0.7rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: all var(--transition);
}
.areas-grid li:hover {
  background: var(--navy);
  color: var(--white);
  border-left-color: var(--red);
  transform: translateX(4px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--navy);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: background var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.11); }
.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.testimonial-card p {
  color: rgba(255,255,255,0.88);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.reviewer {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== FAQs ===== */
.faqs-section {
  padding: 5rem 0;
  background: var(--light-gray);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--mid-gray);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,27,96,0.05);
}
.faq-item summary {
  padding: 1.3rem 1.5rem;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--light-gray); }
.faq-answer {
  padding: 0 1.5rem 1.3rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-answer ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}
.faq-answer a { color: var(--red); font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 5rem 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-item strong {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item a,
.contact-item span {
  color: var(--text-mid);
  font-size: 0.95rem;
}
.contact-item a:hover { color: var(--red); }
.payment-logos { margin-top: 1rem; }
.payment-logos p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.75rem; }
.payment-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.payment-icons img { height: 36px; width: auto; }

/* ===== FORMS ===== */
.contact-form-wrap,
.schedule-form-wrap {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3,
.schedule-form-wrap h2 {
  margin-bottom: 0.5rem;
}
.schedule-form-wrap > p { color: var(--text-mid); margin-bottom: 1.5rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}
.form-note a { color: var(--red); font-weight: 600; }

/* ===== SCHEDULE PAGE ===== */
.schedule-section { padding: 5rem 0; }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.schedule-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.reason-num {
  font-family: 'Rubik', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.25;
}
.reason-item h4 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.reason-item p { color: var(--text-mid); font-size: 0.93rem; }
.schedule-contact-details { margin-top: 2rem; }
.schedule-contact-details h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.hours-block {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
}
.hours-block strong {
  display: block;
  font-family: 'Rubik', sans-serif;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hours-block p { color: var(--text-mid); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  padding: 3rem 0 0;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: auto;
}
.footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding: 1.2rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .intro-grid,
  .about-strip-grid,
  .service-detail-grid,
  .contact-grid,
  .schedule-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-grid.reverse { direction: ltr; }
  .about-strip-image img { height: 360px; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .main-nav { display: none; }
  .header-phone span:last-child { display: none; }
  .mobile-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    z-index: 999;
  }
  .main-nav.open .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }
  .main-nav.open .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    width: 100%;
  }
  .main-nav.open .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.06);
    border-top: none;
    border-radius: 0;
    margin-top: 0.25rem;
  }
  .main-nav.open .dropdown li a {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .main-nav.open .dropdown li a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

  .hero { max-height: 600px; }
  .hero-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .call-banner-inner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-contact { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid,
  .schedule-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form-wrap,
  .schedule-form-wrap { padding: 1.5rem; }
}
