/* ============================================
   ULTRALEC ELECTRICAL & AIR CONDITIONING
   Shared stylesheet — all pages
   Brand: Cyan #2eb8d4 on charcoal #2a2d30
   ============================================ */

:root {
  --cyan: #2eb8d4;
  --cyan-dark: #1e9fba;
  --cyan-glow: rgba(46, 184, 212, 0.35);
  --charcoal: #2a2d30;
  --charcoal-deep: #1a1c1e;
  --charcoal-mid: #3a3e42;
  --white: #ffffff;
  --off-white: #f5f6f7;
  --border-light: #e4e6e9;
  --text-dark: #1a1c1e;
  --text-body: #3a3e42;
  --text-muted: #6b7075;
  --text-on-dark: rgba(255,255,255,0.82);
  --text-on-dark-muted: rgba(255,255,255,0.55);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(26,28,30,0.08);
  --shadow-md: 0 6px 24px rgba(26,28,30,0.12);
  --shadow-lg: 0 12px 40px rgba(26,28,30,0.16);
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--cyan-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--cyan); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); margin-bottom: .6rem; }
h4 { font-size: 1.2rem; margin-bottom: .5rem; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1rem 1.2rem; }
li { margin-bottom: .4rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--charcoal-deep);
  color: var(--text-on-dark-muted);
  font-size: .82rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.topbar a { color: var(--text-on-dark-muted); }
.topbar a:hover { color: var(--cyan); }
.topbar span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar .licence { color: var(--cyan); font-weight: 600; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.48em;
  color: var(--charcoal-deep);
  display: block;
  white-space: nowrap;
}
.logo-text .lec { color: var(--cyan); }
.logo-sub {
  font-family: 'Barlow', sans-serif;
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  align-items: center;
}
.nav-menu > li { margin: 0; position: relative; }
.nav-menu a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: .95rem;
  padding: .5rem 0;
  position: relative;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-menu a:hover { color: var(--cyan); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu a:hover::after { transform: scaleX(1); }

/* Mega dropdown */
.has-submenu > a::before { content: '▾'; margin-right: .3rem; font-size: .7rem; opacity: .6; }
.submenu {
  position: absolute;
  top: calc(100% + .5rem);
  left: -1rem;
  background: var(--white);
  min-width: 640px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--cyan);
  padding: 1.5rem;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
}
.has-submenu:hover .submenu { display: grid; }
.submenu-col h5 {
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: 0.12em;
  margin-bottom: .75rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border-light);
}
.submenu-col a {
  display: block;
  padding: .3rem 0 !important;
  font-size: .9rem !important;
  color: var(--text-body) !important;
  font-family: 'Barlow', sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
}
.submenu-col a::after { display: none !important; }
.submenu-col a:hover { color: var(--cyan) !important; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--charcoal-deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--cyan); }
.nav-phone svg { color: var(--cyan); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s var(--ease);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan);
  color: var(--charcoal-deep);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--cyan-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal-deep);
}
.btn-dark {
  background: var(--charcoal-deep);
  color: var(--white);
  border-color: var(--charcoal-deep);
}
.btn-dark:hover {
  background: var(--cyan);
  color: var(--charcoal-deep);
  border-color: var(--cyan);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 28px;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--charcoal-deep);
  position: absolute;
  left: 0;
  transition: all .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.active span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  padding: 6rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(46,184,212,0.15) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(46,184,212,0.08) 0%, transparent 50%);
  z-index: -1;
}
.hero-bolt {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}
.hero-bolt-2 {
  position: absolute;
  left: -8%;
  bottom: -20%;
  width: 480px;
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .9rem;
  background: rgba(46,184,212,0.12);
  color: var(--cyan);
  border: 1px solid rgba(46,184,212,0.3);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-kicker::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.2rem;
}
.hero h1 .cyan { color: var(--cyan); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-on-dark);
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.hero-phone-big {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.hero-phone-big:hover { color: var(--cyan); }
.hero-phone-big svg {
  color: var(--cyan);
  background: rgba(46,184,212,0.15);
  padding: .5rem;
  border-radius: 50%;
  width: 44px; height: 44px;
}

/* Small hero for sub-pages */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(46,184,212,0.12) 0%, transparent 55%);
}
.page-hero .hero-bolt { opacity: 0.06; width: 500px; height: 500px; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: var(--text-on-dark); font-size: 1.15rem; max-width: 700px; position: relative; }
.breadcrumbs {
  color: var(--text-on-dark-muted);
  font-size: .85rem;
  margin-bottom: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.breadcrumbs a { color: var(--text-on-dark-muted); }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs .sep { margin: 0 .5rem; color: rgba(255,255,255,0.2); }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--cyan);
  color: var(--charcoal-deep);
  padding: 1.1rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  font-size: .95rem;
}
.trust-bar span { display: inline-flex; align-items: center; gap: .5rem; }
.trust-bar svg { flex-shrink: 0; }

/* ============ SECTIONS ============ */
section { padding: 5rem 0; }
section.compact { padding: 3.5rem 0; }
.section-dark { background: var(--charcoal); color: var(--text-on-dark); position: relative; overflow: hidden; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-light { background: var(--off-white); }

.section-eyebrow {
  display: inline-block;
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  padding-left: 2rem;
  position: relative;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.section-head { margin-bottom: 3rem; max-width: 760px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { font-size: 1.1rem; color: var(--text-muted); }
.section-dark .section-head p { color: var(--text-on-dark); }

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.service-card {
  cursor: pointer;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(46,184,212,0.12);
  color: var(--cyan);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all .3s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--cyan);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: .6rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.service-card-link {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-dark);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .25s var(--ease);
}
.service-card-link:hover { gap: .7rem; }
.service-card-link::after { content: '→'; }

/* ============ ABOUT SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--cyan);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1c1e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--cyan);
  border-radius: var(--radius-lg);
  transform: translate(16px, 16px);
  z-index: -1;
}

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.why-item {
  text-align: left;
  padding: 1.5rem 0;
}
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--cyan);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  position: relative;
}
.why-num::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--cyan);
  margin-top: .4rem;
}
.why-item h3 { color: var(--white); margin-bottom: .6rem; }
.why-item p { color: var(--text-on-dark); font-size: .95rem; }

/* ============ SERVICE AREA TAGS ============ */
.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.suburb-tag {
  display: inline-block;
  padding: .55rem 1.1rem;
  background: var(--white);
  color: var(--charcoal-deep);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: 0.02em;
  transition: all .25s var(--ease);
}
.suburb-tag:hover {
  background: var(--cyan);
  color: var(--charcoal-deep);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.suburb-tag.primary { background: var(--cyan); border-color: var(--cyan); font-weight: 700; }
.section-dark .suburb-tag { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); }
.section-dark .suburb-tag:hover { background: var(--cyan); color: var(--charcoal-deep); border-color: var(--cyan); }

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: var(--cyan);
  line-height: 1;
  opacity: 0.25;
}
.review-stars { color: #fbbf24; margin-bottom: .75rem; font-size: 1.1rem; letter-spacing: 2px; }
.review-text { color: var(--text-body); margin-bottom: 1rem; font-size: .98rem; font-style: italic; }
.review-meta { display: flex; justify-content: space-between; align-items: flex-end; font-size: .85rem; border-top: 1px solid var(--border-light); padding-top: .8rem; }
.review-name { font-weight: 700; color: var(--charcoal-deep); font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; }
.review-job { color: var(--text-muted); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--cyan);
  color: var(--charcoal-deep);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -50px;
  width: 500px;
  height: 500px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232a2d30'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: 0.1;
  transform: rotate(-15deg);
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-banner h2 { color: var(--charcoal-deep); margin: 0; max-width: 580px; }
.cta-banner .cta-right { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.cta-banner-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--charcoal-deep);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.cta-banner-phone:hover { color: var(--charcoal-deep); opacity: 0.7; }

/* ============ CONTENT PAGE (prose + sidebar) ============ */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .6rem; color: var(--cyan-dark); }
.prose ul { margin-bottom: 1.5rem; }
.prose a { color: var(--cyan-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(46,184,212,0.3); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--cyan); }
.prose img { border-radius: var(--radius-lg); margin: 1.5rem 0; }

.sidebar {
  position: sticky;
  top: 100px;
  background: var(--charcoal);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--cyan);
}
.sidebar h3 { color: var(--white); font-size: 1.3rem; }
.sidebar p { color: var(--text-on-dark); font-size: .95rem; }
.sidebar .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.sidebar-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1rem 0;
}

.quick-form input, .quick-form select, .quick-form textarea {
  width: 100%;
  padding: .7rem .9rem;
  margin-bottom: .75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  border-radius: var(--radius);
  transition: all .2s var(--ease);
}
.quick-form input::placeholder, .quick-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.quick-form input:focus, .quick-form select:focus, .quick-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255,255,255,0.12);
}
.quick-form textarea { resize: vertical; min-height: 90px; }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.faq-q::after {
  content: '+';
  font-size: 1.75rem;
  color: var(--cyan);
  font-weight: 400;
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s var(--ease);
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 1.5rem 1.5rem; }
.faq-a p { color: var(--text-muted); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--charcoal-deep);
  color: var(--text-on-dark);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-col h5 {
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .95rem;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
}
.footer-col ul { list-style: none; margin: 0; }
.footer-col li { margin-bottom: .45rem; font-size: .9rem; }
.footer-col a { color: var(--text-on-dark); }
.footer-col a:hover { color: var(--cyan); }
.footer-col p { font-size: .9rem; color: var(--text-on-dark); }
.footer-col .logo-text { color: var(--white); font-size: 1.2rem; letter-spacing: 0.72em; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact svg { color: var(--cyan); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: .82rem;
  color: var(--text-on-dark-muted);
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom .licence {
  color: var(--cyan);
  font-weight: 600;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { padding: 2.5rem; background: var(--charcoal); color: var(--white); border-radius: var(--radius-lg); border-top: 4px solid var(--cyan); }
.contact-info h2 { color: var(--white); }
.contact-info .contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info .contact-item:last-child { border-bottom: none; }
.contact-info .contact-item svg { color: var(--cyan); flex-shrink: 0; margin-top: 4px; }
.contact-info .contact-item strong { display: block; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: .8rem; color: var(--cyan); margin-bottom: .25rem; }
.contact-info .contact-item a, .contact-info .contact-item span { color: var(--white); font-size: 1.05rem; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: .4rem;
  color: var(--charcoal-deep);
}
.form-group label .req { color: var(--cyan-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  transition: all .2s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,184,212,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============ MAP EMBED ============ */
.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--charcoal-mid);
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.blog-img {
  aspect-ratio: 16/10;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cyan);
  color: var(--charcoal-deep);
  padding: .3rem .8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
}
.blog-body { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-body h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.blog-body h3 a { color: var(--charcoal-deep); }
.blog-body h3 a:hover { color: var(--cyan-dark); }
.blog-body p { font-size: .95rem; color: var(--text-muted); flex-grow: 1; margin-bottom: 1rem; }
.blog-read-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-dark);
}

/* ============ LOCATION LIST ============ */
.location-group {
  margin-bottom: 2.5rem;
}
.location-group h3 {
  color: var(--cyan-dark);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--cyan);
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

/* ============ LIGHTNING BG ACCENT ============ */
.bolt-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}

/* ============ MOBILE ============ */
@media (max-width: 1100px) {
  .nav-menu { gap: 1rem; }
  .nav-menu a { font-size: 1rem; }
  .nav-phone { font-size: 1.05rem; }
}

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 900px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    gap: .5rem;
    align-items: flex-start;
  }
  .nav-menu.open a { width: 100%; padding: .75rem 0; border-bottom: 1px solid var(--border-light); }
  .nav-menu.open .submenu {
    position: static;
    display: block;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    padding: .5rem 0 .5rem 1rem;
    border-top: none;
    border-left: 2px solid var(--cyan);
  }
  .has-submenu:hover .submenu { display: block; }
  .hamburger { display: block; }
  .nav-cta .btn { display: none; }
  .nav-cta { gap: .5rem; }
  .topbar .container { justify-content: center; font-size: .75rem; }
  .topbar .topbar-licence-wrap { display: none; }
  .hero { padding: 3.5rem 0 3rem; }
  .page-hero { padding: 3rem 0 2.5rem; }
  section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .container { justify-content: flex-start; font-size: .85rem; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; align-items: center; }
  .checklist { grid-template-columns: 1fr; }
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp .8s var(--ease) forwards;
}
.fade-in.d1 { animation-delay: .1s; }
.fade-in.d2 { animation-delay: .2s; }
.fade-in.d3 { animation-delay: .3s; }
.fade-in.d4 { animation-delay: .4s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* Make service cards fully clickable */
.service-card::after {
  content: "Learn more →";
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.service-card:hover::after {
  color: var(--cyan-dark);
}


/* ============ FLOATING MOBILE CALL BUTTON ============ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--cyan);
  color: var(--white);
  padding: .9rem 1rem;
  text-align: center;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  text-transform: uppercase;
  transition: background .2s var(--ease);
}
.mobile-call-bar:hover {
  background: var(--cyan-dark);
  color: var(--white);
}
.mobile-call-bar svg {
  vertical-align: middle;
  margin-right: .5rem;
}
@media (max-width: 900px) {
  .mobile-call-bar {
    display: block;
  }
  body {
    padding-bottom: 58px;
  }
}
