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

:root {
  --navy:    #041E42;
  --navy2:   #D9D9D6;
  --copper:  #FFC72C;
  --copper2: #d4884a;
  --gold:    #f0a500;
  --light:   #f4f1ec;
  --gray:    #D9D9D6;
  --white:   #ffffff;
  --black:   #353935;

}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--copper);
  padding: 1rem 5%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.35rem;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--copper2); }

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--gray); text-decoration: none;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.03em;
  transition: color .2s;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a:hover { color: var(--copper2); }
.nav-links a.active { color: var(--copper2); }

.nav-cta {
  background: var(--copper);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background .2s !important;
  cursor: pointer;
}
.nav-cta:hover { background: var(--copper2) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  background-color: var(--navy);
  width: 40px;
  height: 40px;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(to right, rgba(13,27,42,0.92) 45%, rgba(13,27,42,0.0) 70%), url(/Images/west-copper-electric-hero-banner-image.webp) top/cover no-repeat;
  padding: 20px 5% 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,115,51,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: linear-gradient(to right, rgba(13,27,42,0.97) 60%, rgba(13,27,42,0.7) 100%), url(/Images/west-copper-electric-hero-banner-image.webp) center/cover no-repeat;
  padding: 80px 5%;
  border-bottom: 2px solid rgba(184,115,51,0.3);
}
.page-hero .section-label { margin-bottom: 0.6rem; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: 0.01em; margin-bottom: 0.8rem;
}
.page-hero h1 span { color: var(--white); }
.page-hero p {
  font-size: 1.05rem; color: #bcc8d4;
  max-width: 560px;
}

.hero-inner {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--copper);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem; font-weight: 600;
  color: var(--copper2); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: 0.01em; margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--white); }

.hero p {
  font-size: 1.08rem; color:var(--white);
  max-width: 520px; margin-bottom: 2rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin-bottom: 0.5rem;
}

dialog {
    border: none;
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px); /* Optional: nice high-end look */
}

dialog[open] {
    display: flex;
    flex-direction: column;
}

/* Container styling */
dialog#bookingDialog {
  background-color: #f4f4f4; /* Light background to pop on the navy */
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 480px;
}

/* Header & Close Button */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

dialog h2 {
  font-family: 'Barlow Condensed', sans-serif; /* Matches nav-logo */
  font-size: 1.8rem;
  color: #1a1a1a;
  margin: 0;
}

#closeBooking {
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Form Layout & Inputs */
dialog form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

dialog label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: -0.75rem; /* Tightens label to input */
}

dialog input {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

/* The Submit Button (Matching nav-actions style) */
dialog .cta-button {
  background-color: var(--copper2); /* Reuses copper color */
  color: var(--navy); /* Reuses navy color */
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 1rem;
}

dialog .cta-button:hover {
  background-color: var(--white); /* Reuses white color */
}

.btn-primary {
  background: var(--copper);
  color: var(--navy); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.75rem 1.8rem; border-radius: 20px;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--copper2); transform: translateY(-2px); }

button {
  border: none;
}

.btn-phone {
  background: var(--copper);
  padding: 0.75rem 1.8rem;
  border-radius: 20px;
  transition: background .2s, transform .15s;
  color: var(--navy); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.btn-phone-dark {
   color: var(--navy); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700; letter-spacing: 0.04em;
 
}

.btn-phone svg { color: var(--copper2); }

.hero-trust {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--gray);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

/* ── SECTION SHARED ── */
section { padding: 70px 5%; }
.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--copper2);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.section-title-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--navy);
}
.section-sub {
  color: var(--white); font-size: 1rem; max-width: 520px;
  margin-bottom: 2.8rem;
}

.section-sub-dark {
  color: var(--navy); font-size: 1rem; max-width: 520px;
  margin-bottom: 2.8rem;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--navy2);
  border-top: 1px solid rgba(184,115,51,0.25);
  border-bottom: 1px solid rgba(184,115,51,0.25);
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  color: var(--navy);
}
.about-video {
  width: 100%;
  max-width: 800px;
}
.about-video iframe {
  width: 100%;
  border-radius: 8px;
  border: none;
  aspect-ratio: 16 / 9;
}
.about-strip p {
  color: var(--navy); font-size: 1rem;
  max-width: 640px; line-height: 1.7;
}
.about-strip strong { color: var(--navy); }

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── SERVICES ── */
.services { background: var(--navy); 
}

.services-light {
  background: var(--gray);
}

.services-sub {
  color: var(--navy);
  margin-bottom: 2rem;
}

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

.service-card {
  background: var(--gray);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  transition: border-color .2s, transform .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.service-card:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 1.5rem; margin-bottom: 0.7rem;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.4rem; color: var(--navy);
}
.service-card p {
  font-size: 0.88rem; color: var(--navy); line-height: 1.5;
}

/* ── SERVICE DETAIL (services page) ── */
.service-detail-card-image {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
  object-position: top;
}
.service-detail {
  background: var(--navy);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: 8px;
  padding: 2rem 2.2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.service-detail h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--copper2); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.service-detail p {
  color: #bcc8d4; font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 1rem;
}
.service-detail ul {
  list-style: none; padding: 0;
}
.service-detail ul li {
  color: var(--gray); font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.service-detail ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--copper);
}

/* ── WHY CHOOSE US ── */
.why {
  background: linear-gradient(to right, rgba(13,27,42,0.92) 45%, rgba(13,27,42,0.0) 70%), url(/Images/bedroom-ceiling-fan-install.webp) top/cover no-repeat;
}

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

.why-card {
  background: var(--navy);
  border-left: 3px solid var(--copper);
  border-radius: 0 8px 8px 0;
  padding: 1.4rem 1.6rem;
}
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--copper2); margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.9rem; color: #8a96a3; line-height: 1.6; }

/* ── PROMO BANNER ── */
.promo {
  background: linear-gradient(135deg, var(--copper) 0%, #8a4f1e 100%);
  padding: 55px 5%;
  text-align: center;
}
.promo .promo-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800; line-height: 1;
  color: var(--white);
}
.promo h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: 0.4rem; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.promo p { font-size: 0.88rem; opacity: 0.8; margin-bottom: 1.6rem; }
.btn-white {
  background: var(--white); color: var(--copper);
  text-decoration: none; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 0.75rem 2rem; border-radius: 5px;
  display: inline-block; transition: opacity .2s;
}
.btn-white:hover { opacity: 0.9; }

/* ── CTA MID ── */
.cta-mid {
  background: var(--navy2);
  padding: 60px 5%;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(184,115,51,0.2);
  border-bottom: 1px solid rgba(184,115,51,0.2);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.cta-mid h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
}
.cta-mid p { color: var(--navy); font-size: 0.95rem; }
.cta-buttons { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 1rem; 
  align-items: center;
  color: var(--navy); 
}

/* ── REVIEWS ── */
.reviews { background: var(--navy); }

.reviews-note {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 2rem;
}
.reviews-note .stars { font-size: 1.15rem; }
.reviews-note span { color: var(--gold); font-size: 0.92rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.review-card {
  background: var(--navy2);
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: 8px; padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 6px; }
.review-text { font-size: 0.9rem; color: var(--navy); line-height: 1.65; margin-bottom: 0.8rem; }
.review-name { font-size: 0.82rem; font-weight: 600; color: var(--gray); }

/* ── TEAM / ABOUT CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.team-card {
  background: var(--navy2);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.team-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.3rem;
}
.team-card .team-role {
  color: var(--copper2); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.team-card p { color: #8a96a3; font-size: 0.9rem; line-height: 1.65; }

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}
.value-card {
  background: var(--navy2);
  border-top: 3px solid var(--copper);
  border-radius: 0 0 8px 8px;
  padding: 1.6rem;
}
.value-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.88rem; color: var(--navy); line-height: 1.6; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.2rem;
}
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-info-item svg { color: var(--copper2); flex-shrink: 0; margin-top: 2px; }
.contact-info-item div { flex: 1; }
.contact-info-item strong { color: var(--navy); font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.contact-info-item span, .contact-info-item a {
  color: var(--navy); font-size: 0.9rem; text-decoration: none;
  transition: color .2s;
}
.contact-info-item a:hover { color: var(--copper2); }

.contact-form {
  background: var(--navy2);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.4rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--white);
  border: 1px solid rgba(184,115,51,0.25);
  border-radius: 5px; padding: 0.7rem 1rem;
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--copper); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy); }
.form-submit {
  width: 100%; background: var(--copper);
  color: var(--white); border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem; border-radius: 5px;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--copper2); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: #090f17;
  padding: 50px 5% 30px;
  border-top: 2px solid var(--copper);
}

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

.footer-brand .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--white); margin-bottom: 0.8rem;
}
.footer-brand .brand-name span { color: var(--copper2); }
.footer-brand p { color: #5a6a7a; font-size: 0.88rem; line-height: 1.65; }

footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--copper2); margin-bottom: 1rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { color: #5a6a7a; text-decoration: none; font-size: 0.88rem; transition: color .2s; }
footer ul a:hover { color: var(--copper2); }

.footer-hours li { color: #5a6a7a; font-size: 0.88rem; margin-bottom: 0.4rem; }

.footer-bottom {
  border-top: 1px solid #1a2636;
  padding-top: 1.2rem;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p { color: #3a4a5a; font-size: 0.8rem; }

.social-links { display: flex; gap: 1rem; }
.social-links a {
  color: #3a4a5a; font-size: 0.8rem; text-decoration: none;
  transition: color .2s;
}
.social-links a:hover { color: var(--copper2); }

/* ── FAQ ACCORDION ── */
.faq { background: var(--navy); }

.faq-list {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid rgba(184,115,51,0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  text-align: left;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  gap: 1rem;
  transition: color .2s;
}
.faq-question:hover { color: var(--copper2); }

.faq-icon {
  color: var(--copper2);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out;
}
.faq-answer p {
  color: #8a96a3;
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 1.2rem;
}
.faq-item.open .faq-answer { 
  max-height: 500px;
  padding-bottom: 1.2rem;
 }

 .legal {
  background-color: var(--gray);
  color: var(--navy);
  padding: 20px 60px;
 }

 .legal ul {
  padding-left: 2rem;
 }

 .legal h3 {
  padding-top: 12px;
 }

 .success-page {
background: var(--gray); color: white; 
display: flex; 
align-items: center; 
justify-content: center; 
min-height: 100vh; 
text-align: center; 
padding: 2rem; }

 .thank-you-focus {
  background: var(--navy2); color: white; display: flex; align-items: center; 
  justify-content: center; 
  min-height: 100vh; 
  text-align: center; 
  padding: 2rem;
 }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero {
    background: url(/Images/west-copper-electric-mobile-hero-banner-image.webp) bottom/cover no-repeat;
    padding: 40px 5%;
    min-height: 750px;
    display: flex;
    align-items: column;
    align-items: stretch;
  }
  .hero-inner {
    max-width: 100%;
    text-align: center;
    padding-bottom: 0rem;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero-actions { justify-content: center; }
  .hero-trust { 
    justify-content: center;
    
  }
  .cta-mid {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons { justify-content: center; }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    background: var(--navy);
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 30px 0;
    border-bottom: 2px solid var(--navy);
    z-index: 99;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 5px 0;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { 
    flex-direction: column; 
    align-items: center;
  }}