/* We Fix It Appliances Inc. - shared styles */
:root {
  --primary: #1d4e89;
  --primary-dark: #143a66;
  --accent: #1d4e89;
  --orange: #f5a623;
  --light: #f4f7fb;
  --text: #2b2f36;
  --muted: #6b7280;
  --border: #e2e8f0;
}

html { font-size: 88%; }

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

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

.section-img {
  width: 100%;
  max-width: 1100px;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

@media (max-width: 700px) {
  .section-img { height: 220px; }
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.9rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { font-weight: 600; }
.topbar .hours { color: #cbd9ec; }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}
.topbar-social a:hover { background: rgba(255,255,255,0.18); }
.topbar-social a img { width: 14px; height: 14px; display: block; }
.topbar-reviews {
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}
.topbar-right .hours { white-space: nowrap; }

/* Header / Nav */
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}
.logo span { color: var(--accent); }
.logo img { height: 85px; width: auto; display: block; }
nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
nav ul li a {
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--primary); }
.cta-btn {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.2s;
}
.cta-btn:hover { background: #e0941a; }

/* Dropdown menu */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " \25BE"; font-size: 0.7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  min-width: 230px;
  padding: 8px;
  list-style: none;
  z-index: 200;
  margin: 0;
}
.has-dropdown {
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  white-space: nowrap;
  font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--light); color: var(--primary); }

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

/* Hero */
.hero {
  position: relative;
  background-image: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.82)), url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--text);
  padding: 80px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--primary-dark);
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--text);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero with request form */
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}
.hero-text { flex: 1.2; }
.hero-text h1 { font-size: 2.6rem; }
.hero-text p { margin: 0 0 28px; }
.hero-text .hero-buttons { justify-content: flex-start; }

.hero-form-card {
  flex: 1;
  max-width: 380px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  color: var(--text);
}
.hero-form-card h3 {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.hero-form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}
.hero-form-card textarea { resize: vertical; }
.hero-form-btn {
  background: var(--orange);
  width: 100%;
}
.hero-form-btn:hover { background: #e0941a; }

@media (max-width: 900px) {
  .hero-flex { flex-direction: column; text-align: center; }
  .hero-text .hero-buttons { justify-content: center; }
  .hero-form-card { max-width: 100%; }
}
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, background 0.2s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: #e0941a; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.hero .btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.hero .btn-outline:hover { background: rgba(29,78,137,0.08); }

/* Sections */
section { padding: 64px 0; }
.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2rem;
  color: var(--primary-dark);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 40px;
}
.bg-light { background: var(--light); }

/* Grid cards */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.card h3 { margin-bottom: 8px; color: var(--primary-dark); }
.card p { color: var(--muted); font-size: 0.95rem; }
.card a.learn { display: inline-block; margin-top: 12px; color: var(--primary); font-weight: 700; }

/* Trust strip */
.trust-strip {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding: 36px 0;
}
.trust-strip .grid-4 {
  gap: 16px;
}
.trust-strip h3 { font-size: 1.8rem; color: #fff; }
.trust-strip p { color: #cbd9ec; font-size: 0.9rem; }

/* CTA band */
/* Contact bubble */
.contact-bubble-section {
  background: var(--light);
  padding: 48px 0;
}
.contact-bubble {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.bubble-emoji { font-size: 3rem; flex-shrink: 0; }
.bubble-text { text-align: center; flex: 1; }
.bubble-text p { margin-bottom: 14px; color: var(--text); font-weight: 600; }
.bubble-pills { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.contact-pill-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.contact-pill-light:hover { background: #fff; border-color: var(--primary); transform: translateY(-2px); }
@media (max-width: 600px) {
  .contact-bubble { flex-direction: column; text-align: center; }
}

/* Reviews contact pills */
.reviews-contact {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contact-pill:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.contact-icon { font-size: 1.1rem; }

/* Reviews */
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.stars { color: var(--accent); margin-bottom: 8px; font-size: 1.1rem; }
.review-card .name { font-weight: 700; margin-top: 12px; }

/* Google Reviews section */
.google-reviews {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0d2240 100%);
  color: #fff;
  padding: 64px 0;
}
.google-reviews .reviews-label {
  text-align: center;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.google-reviews .section-title { color: #fff !important; }

/* Attempt to recolor the Elfsight widget's own header text to white */
.google-reviews .elfsight-app-b8207940-a9a7-4c3a-940a-fdf0c3d9b702 > div > h1,
.google-reviews .elfsight-app-b8207940-a9a7-4c3a-940a-fdf0c3d9b702 > div > h2,
.google-reviews .elfsight-app-b8207940-a9a7-4c3a-940a-fdf0c3d9b702 > div > h3,
.google-reviews .elfsight-app-b8207940-a9a7-4c3a-940a-fdf0c3d9b702 h1,
.google-reviews .elfsight-app-b8207940-a9a7-4c3a-940a-fdf0c3d9b702 h2,
.google-reviews .elfsight-app-b8207940-a9a7-4c3a-940a-fdf0c3d9b702 h3,
.google-reviews .elfsight-app-b8207940-a9a7-4c3a-940a-fdf0c3d9b702 [class*="header-title"],
.google-reviews .elfsight-app-b8207940-a9a7-4c3a-940a-fdf0c3d9b702 [class*="HeaderTitle"] {
  color: #ffffff !important;
}
.google-reviews .reviews-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #cbd5e1;
}
.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.rating-badge .rating-text { font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; }
.rating-badge .stars { margin-bottom: 0; color: var(--orange); }
.rating-badge .rating-count { color: #cbd5e1; font-size: 0.95rem; }
.rating-badge .google-icon { font-weight: 700; font-size: 1.2rem; }
.rating-badge .google-icon span:nth-child(1) { color: #4285F4; }
.rating-badge .google-icon span:nth-child(2) { color: #EA4335; }
.rating-badge .google-icon span:nth-child(3) { color: #FBBC05; }
.rating-badge .google-icon span:nth-child(4) { color: #4285F4; }
.rating-badge .google-icon span:nth-child(5) { color: #34A853; }
.rating-badge .google-icon span:nth-child(6) { color: #EA4335; }

.google-review-card {
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 24px;
  position: relative;
}
.google-review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.google-review-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.google-review-card .reviewer-info .name { font-weight: 700; margin-top: 0; }
.google-review-card .reviewer-info .time { color: var(--muted); font-size: 0.85rem; }
.google-review-card .stars { margin-bottom: 10px; }
.google-review-card .review-text { font-size: 0.95rem; color: var(--text); }

/* Brand logos */
.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  align-items: center;
  opacity: 0.75;
}
.brand-row span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 6px;
}

/* Brand marquee (scrolling logos/badges) */
.brand-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #fff 8%, #fff 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #fff 8%, #fff 92%, transparent);
}
.brand-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: brand-scroll 30s linear infinite;
}
.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}
.brand-track .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  padding: 0 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--muted);
  white-space: nowrap;
  background: #fff;
}
.brand-track .brand-item img {
  height: 56px;
  width: auto;
}
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Service area chips */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.area-card::before {
  content: "📍";
  font-size: 1.1rem;
}
.area-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); border-color: var(--primary); }
.area-card span { display: block; font-weight: 400; color: var(--muted); font-size: 0.85rem; margin-top: 6px; }

/* FAQ accordion */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 4px 20px;
}
.faq-item summary {
  font-weight: 700;
  color: var(--primary-dark);
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.3rem;
  color: var(--primary);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--muted); padding-bottom: 16px; }

/* Numbered steps */
.step-list { display: flex; flex-direction: column; gap: 20px; }
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.step-item h3 { color: var(--primary-dark); margin-bottom: 4px; }
.step-item p { color: var(--muted); }

/* Map embed */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
}
.map-embed iframe { display: block; }

/* Gradient section title */
.gradient-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #34d399 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Page header (non-home pages) */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}
.page-header h1 { font-size: 2.4rem; margin-bottom: 8px; }
.page-header p { color: #dce6f5; }
.page-header.has-img {
  background-size: cover;
  background-position: center;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
button.submit-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
button.submit-btn:hover { background: var(--primary-dark); }

/* Contact info cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-info .card .icon { color: var(--primary); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); }
.blog-card .thumb {
  height: 160px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
}
.blog-card .body { padding: 20px; }
.blog-card .date { color: var(--muted); font-size: 0.85rem; margin-bottom: 6px; }
.blog-card h3 { color: var(--primary-dark); margin-bottom: 8px; font-size: 1.1rem; }
.blog-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }
.blog-card .read-more { color: var(--primary); font-weight: 700; font-size: 0.9rem; }

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* FAQ accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* Footer */
footer {
  background: #1a2330;
  color: #aab4c4;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: #fff; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul li a:hover { color: #fff; }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-logo img { height: 60px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-grid .dropdown-menu {
  display: block;
  position: static;
  background: none;
  border: none;
  box-shadow: none;
  min-width: 0;
  padding: 0;
  margin: 4px 0 0 0;
}
.footer-grid .dropdown-menu li a {
  padding: 0;
  font-weight: 400;
  color: #aab4c4;
}
.footer-grid .dropdown-menu li a:hover { background: none; color: #fff; }
.footer-bottom {
  border-top: 1px solid #2c3a4f;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #7b879c;
}
.social-row { display: flex; gap: 12px; margin-top: 12px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #2c3a4f;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.social-row a:hover { background: var(--primary); }
.social-row a img { width: 18px; height: 18px; display: block; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-2, .blog-grid, .footer-grid, .contact-info, .form-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.1rem; }
  nav ul { display: none; }
  .menu-toggle { display: block; margin-left: auto; margin-right: -2px; }
  nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    gap: 4px;
    text-align: left;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 150;
  }
  nav.open ul > li > a {
    display: block;
    padding: 8px 0;
    font-size: 0.95rem;
  }
  .nav-wrap { position: relative; }
  .topbar .container { flex-direction: column; gap: 8px; justify-content: center; text-align: center; padding: 10px 20px; }
  .topbar-left, .topbar-right { flex-wrap: wrap; justify-content: center; }
  .topbar-right .hours { display: none; }
  nav.open .dropdown-menu {
    display: block;
    position: static !important;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0 0 4px 16px;
    width: 100%;
  }
  nav.open .dropdown-menu li a {
    font-size: 0.85rem;
    padding: 4px 0;
    color: var(--muted);
    font-weight: 500;
  }
  /* Hide all submenus on mobile — top-level links go to the section pages */
  nav.open .dropdown-menu { display: none !important; }
  nav.open .cta-btn { display: block; text-align: center; padding: 12px 20px; border-radius: 8px; margin-top: 4px; }
  .has-dropdown > a::after { display: none; }
  nav.open .has-dropdown { padding-bottom: 0; margin-bottom: 0; }
}

@media (max-width: 560px) {
  .area-grid { grid-template-columns: 1fr; }
  .gradient-title { font-size: 1.9rem; }
}
