/* MD Plumbing & Mechanical — Urbanist + Nunito */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --primary: #1AC1DD;
  --primary-dark: #12a3bc;
  --primary-light: #d0f2f8;
  --secondary: #B87333;
  --secondary-dark: #9a5e22;
  --secondary-light: #f5e6d3;
  --dark: #1E1E1E;
  --mid: #4A4A4A;
  --gray: #6B7280;
  --light: #F7FAFB;
  --border: #E5EFF2;
  --white: #FFFFFF;
  --font-head: 'Urbanist', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(26,193,221,0.12);
  --shadow-md: 0 6px 24px rgba(30,30,30,0.10);
  --shadow-lg: 0 16px 48px rgba(30,30,30,0.14);
  --transition: 0.25s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Skip Link */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--primary); color: var(--white);
  padding: 0.5rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo img { height: 54px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 0.25rem; }
.nav__links a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--mid); padding: 0.5rem 0.875rem; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--primary); background: var(--primary-light); }
.nav__links a:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  padding: 0.6rem 1.25rem; border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(26,193,221,0.3);
}
.nav__cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,193,221,0.4); }
.nav__cta:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius); }
.nav__toggle span { width: 24px; height: 2px; background: var(--dark); display: block; transition: transform var(--transition), opacity var(--transition); }
@media (max-width: 768px) {
  .nav__links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--white);
    padding: 1rem; border-bottom: 1px solid var(--border); gap: 0.5rem;
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__cta { font-size: 0.85rem; padding: 0.5rem 1rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
}
.hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.42; transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.10); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.88) 0%, rgba(26,193,221,0.12) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 4rem 1.5rem;
  max-width: 860px; margin: 0 auto;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(26,193,221,0.15); border: 1px solid rgba(26,193,221,0.35);
  color: var(--primary); padding: 0.4rem 1.1rem; border-radius: 50px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeDown 0.7s ease 0.2s both;
}
.hero__title {
  font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800; line-height: 1.1; color: var(--white);
  margin-bottom: 1rem; animation: fadeDown 0.7s ease 0.4s both;
}
.hero__title span { color: var(--primary); }
.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem); color: rgba(255,255,255,0.82);
  font-weight: 400; margin-bottom: 2.5rem; letter-spacing: 0.01em;
  animation: fadeDown 0.7s ease 0.6s both;
}
.hero__actions {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  animation: fadeDown 0.7s ease 0.8s both;
}
.hero__trust {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem;
  animation: fadeDown 0.7s ease 1.0s both;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 600;
}
.hero__trust-item svg { stroke: var(--primary); width: 16px; height: 16px; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  animation: fadeDown 0.7s ease 1.3s both;
}
.hero__scroll-bar {
  width: 2px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden;
}
.hero__scroll-bar::after {
  content: ''; display: block; width: 100%; height: 50%; background: var(--primary);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { transform: translateY(-100%); } 50% { transform: translateY(200%); } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 0.875rem 2rem; border-radius: 50px; transition: all var(--transition);
}
.btn--primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 24px rgba(26,193,221,0.4); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,193,221,0.5); }
.btn--ghost { background: rgba(255,255,255,0.12); color: var(--white); border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: #333; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

/* ============================================================
   Stats Band
   ============================================================ */
.stats-band { background: var(--dark); padding: 3.5rem 1.5rem; }
.stats-band__inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-item__num {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 800;
  color: var(--primary); display: block; line-height: 1;
}
.stat-item__label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 0.5rem; display: block;
}
@media (max-width: 600px) {
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item__num { font-size: 2.2rem; }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 5.5rem 1.5rem; }
.section--light { background: var(--light); }
.section--dark { background: var(--dark); }
.container { max-width: 1200px; margin: 0 auto; }
.section__label {
  font-family: var(--font-head); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 0.75rem; display: block;
}
.section__label--copper { color: var(--secondary); }
.section__title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15; color: var(--dark); margin-bottom: 1rem;
}
.section__title--white { color: var(--white); }
.section__sub { font-size: 1.05rem; color: var(--gray); max-width: 600px; margin-bottom: 3rem; line-height: 1.8; }
.section__sub--white { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.text-center .section__sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   Service Overview Cards (Home)
   ============================================================ */
.services-overview {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon {
  width: 52px; height: 52px; background: var(--primary-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.svc-card__icon svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; }
.svc-card__title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.svc-card__desc { font-size: 0.9rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.25rem; }
.svc-card__link { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 0.3rem; }
.svc-card__link svg { width: 14px; height: 14px; stroke: var(--primary); transition: transform var(--transition); }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ============================================================
   Values (Dark bg)
   ============================================================ */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.value-card {
  border-radius: var(--radius-lg); padding: 2rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  transition: background var(--transition), border-color var(--transition);
}
.value-card:hover { background: rgba(26,193,221,0.07); border-color: rgba(26,193,221,0.22); }
.value-card__num {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 800;
  color: var(--primary); opacity: 0.35; display: block; line-height: 1; margin-bottom: 0.8rem;
}
.value-card__title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.value-card__text { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ============================================================
   Testimonial Carousel
   ============================================================ */
.tc-wrapper { max-width: 780px; margin: 0 auto; }
.tc-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); overflow: hidden; border-radius: var(--radius-lg); }
.tc-slide {
  min-width: 100%; padding: 2.75rem 2.5rem;
  background: var(--white); text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}
.tc-slide__stars { color: var(--secondary); font-size: 1.25rem; margin-bottom: 1.25rem; letter-spacing: 0.1em; }
.tc-slide__quote { font-size: 1.1rem; line-height: 1.8; color: var(--mid); font-style: italic; margin-bottom: 1.5rem; }
.tc-slide__author { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.tc-slide__source { font-size: 0.8rem; color: var(--gray); margin-top: 0.3rem; }
.tc-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }
.tc-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  opacity: 0.25; transition: opacity var(--transition), width 0.3s;
  cursor: pointer; border: none;
}
.tc-dot.active { opacity: 1; width: 24px; border-radius: 4px; }

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 5rem 1.5rem; text-align: center;
}
.cta-banner__title {
  font-family: var(--font-head); font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--white); margin-bottom: 0.75rem;
}
.cta-banner__sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2.25rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn--white { background: var(--white); color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn--outline-white { border: 2px solid rgba(255,255,255,0.65); color: var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark); padding: 5rem 1.5rem 3.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,193,221,0.08) 0%, rgba(184,115,51,0.05) 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: var(--white); margin-bottom: 0.75rem;
}
.page-hero__title span { color: var(--primary); }
.page-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); }
.breadcrumb {
  display: flex; justify-content: center; gap: 0.5rem; align-items: center;
  margin-bottom: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   About Page
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-grid__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-grid__img img { width: 100%; height: 480px; object-fit: cover; }
.about-text p { color: var(--mid); font-size: 1.05rem; line-height: 1.88; margin-bottom: 1.25rem; }
.mission-box {
  background: linear-gradient(135deg, var(--primary-light), rgba(184,115,51,0.07));
  border-left: 4px solid var(--primary); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 2rem; margin-top: 2rem;
}
.mission-box__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.mission-box__text { font-size: 1rem; color: var(--dark); font-style: italic; line-height: 1.75; font-weight: 500; }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid__img img { height: 320px; }
}

/* Photo Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.75rem; }
.gallery-img {
  width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius);
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-img:hover { transform: scale(1.04); box-shadow: var(--shadow-md); }
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center; cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 6px; }
#lightbox-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; opacity: 0.75; transition: opacity var(--transition);
}
#lightbox-close:hover { opacity: 1; }
#lightbox-close:focus-visible { outline: 3px solid var(--primary); }

/* Certs */
.certs-grid { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.cert-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  box-shadow: var(--shadow);
}
.cert-badge svg { stroke: var(--secondary); width: 20px; height: 20px; flex-shrink: 0; }

/* Truck section */
.truck-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.truck-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 768px) { .truck-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Services Page
   ============================================================ */
.services-cat {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.875rem;
}
.services-cat__item {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-weight: 600; font-size: 0.9rem; color: var(--dark);
  transition: all var(--transition);
}
.services-cat__item:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.services-cat__item svg { width: 18px; height: 18px; stroke: var(--primary); flex-shrink: 0; }
.services-section-title {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
  color: var(--dark); margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 0.75rem;
}
.services-section-title svg { stroke: var(--primary); width: 22px; height: 22px; }

/* Before/After Slider */
.ba-slider {
  position: relative; overflow: hidden; max-width: 800px; margin: 0 auto;
  border-radius: var(--radius-lg); aspect-ratio: 16/10; user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-after { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-before img { width: var(--ba-full-w, 100%); height: 100%; object-fit: cover; display: block; }
.ba-handle {
  position: absolute; top: 0; left: 50%; width: 4px; height: 100%;
  background: white; cursor: ew-resize; transform: translateX(-50%); z-index: 2;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.ba-handle__circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2); color: var(--primary); font-size: 1.1rem; font-weight: 700;
}
.ba-labels {
  display: flex; justify-content: space-between; margin-top: 0.75rem;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray);
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--dark); padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--primary); }
.faq-item summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 4px; }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; stroke: currentColor; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body { padding: 0 0 1.25rem; font-size: 0.95rem; color: var(--mid); line-height: 1.78; }

/* Service Area Map */
#service-area-map, #contact-map {
  height: 380px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.area-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.area-pill {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.3rem 0.9rem;
  font-size: 0.85rem; font-weight: 600; color: var(--mid);
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.4rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.825rem 1rem;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--dark);
  background: var(--white); transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
  background: var(--primary); color: var(--white); font-family: var(--font-head);
  font-weight: 700; font-size: 1rem; padding: 0.9rem 2rem; border-radius: 50px;
  transition: all var(--transition); box-shadow: 0 4px 16px rgba(26,193,221,0.35);
  width: 100%; border: none; cursor: pointer;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,193,221,0.45); }
.form-submit:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.form-success {
  display: none; background: #d1fae5; border: 1px solid #34d399; border-radius: var(--radius);
  padding: 1rem 1.5rem; font-weight: 600; color: #065f46; margin-top: 1rem;
}
.contact-info-card {
  background: var(--dark); border-radius: var(--radius-lg); padding: 2.5rem; color: var(--white);
}
.contact-info-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; margin-bottom: 1.75rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.info-row:last-of-type { border-bottom: none; }
.info-row svg { width: 20px; height: 20px; stroke: var(--primary); flex-shrink: 0; margin-top: 2px; }
.info-row__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.3rem; }
.info-row__value { font-size: 0.95rem; color: var(--white); line-height: 1.65; }
.info-row__value a { color: var(--primary); transition: opacity var(--transition); }
.info-row__value a:hover { opacity: 0.8; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.75rem; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65); border-radius: var(--radius);
  padding: 0.5rem 1rem; font-size: 0.82rem; font-weight: 700; font-family: var(--font-head);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   Floating CTA
   ============================================================ */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  background: var(--primary); color: white;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,193,221,0.5); transition: transform 0.2s, box-shadow 0.2s;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(26,193,221,0.65); }
.floating-cta:focus-visible { outline: 3px solid var(--primary); outline-offset: 4px; }
@media (min-width: 768px) { .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; } }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #111; color: rgba(255,255,255,0.65); padding: 4.5rem 1.5rem 2rem; }
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem;
}
.footer__brand img { height: 56px; margin-bottom: 1.25rem; }
.footer__brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,0.5); }
.footer__col h4 {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--primary); }
.footer__col p { font-size: 0.875rem; line-height: 1.75; }
.footer__col .footer-phone { color: var(--primary); font-family: var(--font-head); font-weight: 700; font-size: 1rem; display: block; margin-bottom: 0.5rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; margin-top: 3rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: var(--primary); }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   Scroll Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(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; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   Utilities
   ============================================================ */
.copper-accent { color: var(--secondary); }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0 !important; }
.tag { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 50px; }
.tag--copper { background: var(--secondary-light); color: var(--secondary-dark); }

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