/* ============================================================
   Daniel J Walsh Electrical Services — Main Stylesheet
   ============================================================
   CSS custom properties make it easy to retheme the site.
   All colours, fonts and spacing are defined here.
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --color-navy:      #0f1923;
  --color-navy-dark: #080e14;
  --color-amber:     #f5a623;
  --color-amber-dark:#d4891a;
  --color-white:     #ffffff;
  --color-grey-light:#f4f4f4;
  --color-grey-mid:  #e0e0e0;
  --color-grey-text: #555555;
  --color-text:      #1a1a1a;

  /* Service accent colours — mirror the logo's four panels */
  --color-electric:  #1a6abf;
  --color-ev:        #2a9e3f;
  --color-plumbing:  #c0392b;
  --color-aircon:    #2980b9;

  --font-main: 'Inter', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-pill:999px;

  --shadow-card: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-hover:0 4px 16px rgba(0,0,0,0.16);

  --max-width: 1100px;
  --section-pad: 60px 16px;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-main);
}

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

.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;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  border: 2px solid transparent;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn--primary:hover {
  background: var(--color-amber-dark);
  border-color: var(--color-amber-dark);
}

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

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

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

.btn--navy:hover {
  background: var(--color-navy-dark);
  border-color: var(--color-navy-dark);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--color-grey-text);
  font-size: 1rem;
  margin-bottom: 36px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

/* --- Header / Nav ---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  max-width: 240px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo span {
  color: var(--color-amber);
}

.logo-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  z-index: 101;
}

.hamburger .bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

/* Animate bars when nav is open */
.hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Nav */
.main-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-navy-dark);
  padding: 12px 0;
  z-index: 99;
}

.main-nav.is-open {
  display: block;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
}

.main-nav a {
  display: block;
  color: var(--color-white);
  padding: 12px 24px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(245,166,35,0.15);
  color: var(--color-amber);
}

.main-nav a.active {
  border-left: 3px solid var(--color-amber);
  padding-left: 21px;
}

/* Desktop nav */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    background: none;
    padding: 0;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 4px;
  }

  .main-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
  }

  .main-nav a.active {
    border-left: none;
    padding-left: 14px;
    background: rgba(245,166,35,0.15);
    color: var(--color-amber);
  }

  .site-logo {
    font-size: 1.1rem;
    max-width: none;
  }
}

/* --- Sticky Call Button (mobile only) -------------------- */
/* EDIT: Remove or adjust this section if not needed */
.sticky-call {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-amber);
  color: var(--color-navy);
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  text-decoration: none;
}

.sticky-call svg {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sticky-call {
    display: none;
  }

  /* Remove bottom padding compensation on desktop */
  body {
    padding-bottom: 0 !important;
  }
}

/* Add space at bottom of page on mobile so sticky btn doesn't overlap content */
body {
  padding-bottom: 56px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

/* --- Hero ------------------------------------------------- */
.hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 72px 16px 64px;
  text-align: center;
}

.hero__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(245,166,35,0.18);
  color: var(--color-amber);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--color-white);
}

.hero__title span {
  color: var(--color-amber);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 500px) {
  .hero__ctas {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 100px 16px 88px;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__sub {
    font-size: 1.15rem;
  }
}

/* --- Trust Badges ---------------------------------------- */
.trust-badges {
  background: var(--color-grey-light);
  padding: 28px 16px;
  border-bottom: 1px solid var(--color-grey-mid);
}

.trust-badges__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--color-amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Services Overview / Cards --------------------------- */
.services-overview {
  padding: var(--section-pad);
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--color-grey-light);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 3px solid transparent;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-card--electric { border-top-color: var(--color-electric); }
.service-card--ev        { border-top-color: var(--color-ev); }
.service-card--aircon    { border-top-color: var(--color-aircon); }
.service-card--plumbing  { border-top-color: var(--color-plumbing); }

.service-card--electric:hover { border-top-color: var(--color-electric); }
.service-card--ev:hover        { border-top-color: var(--color-ev); }
.service-card--aircon:hover    { border-top-color: var(--color-aircon); }
.service-card--plumbing:hover  { border-top-color: var(--color-plumbing); }

.service-card__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--color-grey-text);
  flex: 1;
}

.service-card__link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-amber);
  margin-top: 2px;
}

.service-card__link:hover {
  text-decoration: underline;
}

@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Testimonials Strip ---------------------------------- */
.testimonials-strip {
  background: var(--color-grey-light);
  padding: var(--section-pad);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial-card__stars {
  color: var(--color-amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-grey-text);
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.9rem;
}

.testimonial-card__job {
  font-size: 0.82rem;
  color: var(--color-grey-text);
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- About Section --------------------------------------- */
.about-section {
  background: var(--color-grey-light);
  padding: var(--section-pad);
}

.about-inner {
  display: grid;
  gap: 48px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--color-grey-text);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-quals {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.about-quals h3 {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-amber);
}

.about-quals ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.about-quals ul li {
  padding-left: 20px;
  position: relative;
  font-size: 0.93rem;
  color: var(--color-text);
  line-height: 1.5;
}

.about-quals ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-amber);
  font-weight: 700;
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .about-quals ul {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Coverage Area --------------------------------------- */
.coverage {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--section-pad);
  text-align: center;
}

.coverage .section-title {
  color: var(--color-white);
}

.coverage .section-subtitle {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.coverage__areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.area-pill {
  background: rgba(245,166,35,0.15);
  color: var(--color-amber);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
}

.coverage-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(245,166,35,0.3);
}

.coverage-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.map-credit {
  text-align: right;
  font-size: 0.78rem;
  padding: 4px 8px;
  background: var(--color-navy);
}

.map-credit a {
  color: var(--color-amber);
}

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 40px 16px 24px;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer-brand {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.footer-brand span {
  color: var(--color-amber);
}

.footer-col p {
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-col a {
  color: var(--color-amber);
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col h3 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* --- Services Page --------------------------------------- */
.page-hero {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 52px 16px 44px;
  text-align: center;
}

.page-hero__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
}

.page-hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

.services-list {
  padding: 60px 16px;
  background: var(--color-white);
}

.services-list .container {
  max-width: 820px;
}

.service-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-grey-mid);
}

.service-section:last-child {
  border-bottom: none;
}

.service-section__icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.service-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.service-section p {
  color: var(--color-grey-text);
  margin-bottom: 12px;
  line-height: 1.7;
}

.service-section .btn {
  margin-top: 8px;
}

/* --- Gallery Page ---------------------------------------- */
.gallery-section {
  padding: var(--section-pad);
  background: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

.gallery-item {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--color-grey-light);
}

.gallery-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.gallery-item__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-grey-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-grey-text);
  font-size: 0.8rem;
  text-align: center;
  padding: 12px;
}

.gallery-item__placeholder svg {
  opacity: 0.35;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.gallery-item__caption {
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--color-grey-text);
  font-weight: 500;
  background: var(--color-white);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__inner {
  position: relative;
  max-width: 860px;
  width: 100%;
  background: var(--color-navy-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lightbox__media {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey-text);
  font-size: 0.9rem;
}

.lightbox__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox__caption {
  padding: 14px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox__close:hover {
  background: rgba(0,0,0,0.8);
}

/* --- Testimonials Page ----------------------------------- */
.testimonials-page {
  padding: var(--section-pad);
  background: var(--color-grey-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 4px solid var(--color-amber);
}

.review-card__stars {
  color: var(--color-amber);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--color-grey-text);
  font-style: italic;
  flex: 1;
  line-height: 1.65;
}

.review-card__name {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.92rem;
}

.review-card__job {
  font-size: 0.82rem;
  color: var(--color-grey-text);
  font-weight: 500;
}

/* --- Logo Showcase (contact page) ------------------------ */
.logo-showcase {
  background: var(--color-navy-dark);
  padding: 40px 16px;
  text-align: center;
}

.logo-showcase .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-showcase__horizontal {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.logo-showcase__badge {
  height: 90px;
  width: 90px;
  object-fit: contain;
  border-radius: 50%;
}

/* --- Thanks Page ----------------------------------------- */
.thanks-page {
  padding: var(--section-pad);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  background: var(--color-amber);
  color: var(--color-navy);
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thanks-inner h1 {
  font-size: 1.8rem;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.thanks-inner p {
  color: var(--color-grey-text);
  margin-bottom: 12px;
  line-height: 1.6;
}

.thanks-call {
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 24px;
}

.thanks-back {
  display: block;
  font-size: 0.9rem;
  color: var(--color-grey-text);
}

.thanks-back:hover {
  color: var(--color-navy);
}

/* --- Contact Page ---------------------------------------- */
.contact-page {
  padding: var(--section-pad);
  background: var(--color-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.contact-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-amber);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  width: 100%;
  box-shadow: var(--shadow-card);
  transition: background 0.2s;
}

.contact-call-btn:hover {
  background: var(--color-amber-dark);
}

.contact-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--color-grey-text);
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-info ul {
  margin-bottom: 20px;
}

.contact-info ul li {
  color: var(--color-grey-text);
  padding: 4px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info ul li::before {
  content: "✓";
  color: var(--color-amber);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--color-navy);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--color-amber-dark);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 8px;
}

.hours-table td {
  padding: 6px 0;
  color: var(--color-grey-text);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-navy);
  width: 50%;
}

.contact-form h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-grey-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a2e4a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 700;
}

/* Success / hidden honeypot */
.form-hidden {
  display: none;
}
