﻿/* Global variables / theme */
/* We'll use your base blue #4698C2 as accent */
:root {
  --accent: #4698C2;
  --accent-dark: #2f6b88;
  --bg-light: #f8fafc;
  --text-main: #1a1a1a;
  --text-muted: #4b5563;
  --radius-lg: 1rem;
  --radius-md: 0.5rem;
  --shadow-card: 0 20px 40px rgba(0,0,0,0.07);
  --shadow-float: 0 30px 60px rgba(0,0,0,0.15);
  --max-width: 1200px;
  --transition-fast: 0.18s ease;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.5;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 1rem;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.section-title.small {
  font-size: 1.4rem;
}

.section-intro {
  font-size: 1rem;
  max-width: 600px;
  color: var(--text-muted);
  margin: 0 auto 2rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius-md);
  line-height: 1.2;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-card);
}

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

.btn-secondary {
  background-color: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 0.8rem 1rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid #d1d5db;
  padding: 0.8rem 1rem;
}

.btn-outline:hover {
  background-color: #f3f4f6;
}

.wide-btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.inline-btn {
  display: block;
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

.full-width {
  width: 100%;
}

/* ================= HEADER / NAV ================= */

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffffcc;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--text-main);
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent);
}

.btn-quote {
  background-color: var(--accent);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.btn-quote:hover {
  background-color: var(--accent-dark);
  color: #fff;
}

/* mobile menu button hidden on desktop */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.2s ease;
}

.mobile-menu-toggle:focus-visible {
  outline: 3px solid rgba(70, 152, 194, 0.35);
  outline-offset: 4px;
}

.mobile-menu-toggle:hover {
  background-color: rgba(70, 152, 194, 0.08);
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-menu-icon {
  top: 50%;
  transform: translate(-50%, -50%);
}

.mobile-menu-icon::before {
  top: -6px;
  transform: translate(-50%, -50%);
}

.mobile-menu-icon::after {
  top: 6px;
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle.is-open .mobile-menu-icon {
  background-color: transparent;
}

.mobile-menu-toggle.is-open .mobile-menu-icon::before {
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle.is-open .mobile-menu-icon::after {
  top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* mobile menu drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem;
  position: fixed;
  top: var(--mobile-menu-top, 72px);
  left: 0;
  right: 0;
  z-index: 1100;
  box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.4);
  max-height: calc(100vh - var(--mobile-menu-top, 72px));
  overflow-y: auto;
}

.mobile-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-link:last-child {
  border-bottom: 0;
}

.mobile-menu.open {
  display: flex !important;
}

.mobile-cta {
  color: var(--accent);
  font-weight: 600;
}

/* ================= HERO ================= */

.hero-section {
  position: relative;
  color: #fff;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  min-height: 70vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}
 
.hero-slideshow {
  position: relative;
  max-width: 450px;
  aspect-ratio: 600 / 800;
  margin-left: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  max-width: 520px;
  text-align: left;
  padding: 0 1rem 2rem;
  margin-right: 2rem;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 1.8rem + 2.5vw, 3.5rem);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #fff;
}

.hero-subtext {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #e5e7eb;
  margin: 0 0 1.5rem;
  max-width: 480px;
}

.hero-btn {
  display: inline-flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-slideshow {
    flex: 0 0 calc(800px * (1080 / 1470));
  }

  .hero-content {
    text-align: left;
    padding: 0;
  }

  .hero-subtext {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ================= ABOUT ================= */

.about-section {
  padding: 4rem 0;
  background-color: #f7fafc;
}

.about-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  background-color: #f7fafc;
  box-shadow: none;
  min-height: 420px;
  isolation: isolate;
}

.about-text-layer {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-main);
  font-family: system-ui, sans-serif;
  filter: blur(4px);
  opacity: 0.4;
  transition: filter 1.6s ease-out, opacity 1.6s ease-out;
}

.about-text-layer h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.5rem);
  margin: 0 0 1.5rem;
}

.about-text-layer p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.about-bullets {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  color: var(--text-main);
  font-weight: 600;
  text-align: left;
  align-items: flex-start;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
}

.about-bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(70, 152, 194, 0.15);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.water-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.6s ease-out;
  display: block;
  background-image: url("img/waterdrops.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.water-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  filter: saturate(0.9);
  pointer-events: none;
}

.hand-layer {
  position: absolute;
  top: 10%;
  right: -160px;
  z-index: 4;
  pointer-events: none;
  transition: transform 1.85s cubic-bezier(0.3, 0.8, 0.25, 1);
  will-change: transform;
  transform: translateX(180%);
}

.hand-layer img {
  width: clamp(260px, 22vw, 340px);
  height: auto;
  display: block;
}

#about.about-animate .about-text-layer {
  filter: blur(0);
  opacity: 1;
}

#about.about-animate .water-layer {
  opacity: 0;
}

#about.about-animate .hand-layer {
  transform: translateX(-320%);
}

/* ================= SERVICES ================= */

.services-section {
  position: relative;
  padding: 4rem 0;
  color: var(--text-main);
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/about-photo.jpg") center/cover no-repeat;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-section .section-title {
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.services-section .section-intro {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.services-spotlight {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 320px;
  isolation: isolate;
  background: transparent;
}

.spotlight-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(210deg, rgba(9, 34, 52, 0.35), rgba(9, 34, 52, 0.75));
  transform: scale(1.05);
  transition: transform 1.2s ease;
  z-index: 0;
}

.services-spotlight:hover .spotlight-layer {
  transform: scale(1.1);
}

.spotlight-content {
  position: relative;
  z-index: 1;
  padding: 2.75rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  backdrop-filter: blur(0px);
}

.spotlight-tag {
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background-color: rgba(16, 61, 87, 0.55);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.spotlight-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  margin: 0 0 0.75rem;
  color: #000;
}

.spotlight-content p {
  margin: 0;
  color: #000;
  max-width: 18rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.services-compare {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.35rem;
  background: rgba(6, 29, 46, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 48px -28px rgba(9, 29, 45, 0.7);
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare-header h3 {
  margin: 0 0 0.35rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  color: #fff;
}

.compare-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.compare-view {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  background: #0b1f31;
  touch-action: pan-y;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.12s ease-out;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, #3fa0ff, #1f5fd4);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 26px -18px rgba(12, 28, 48, 0.8);
  cursor: ew-resize;
  z-index: 2;
}

.compare-handle:focus-visible {
  outline: 3px solid rgba(63, 160, 255, 0.5);
  outline-offset: 2px;
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: -999px;
  bottom: -999px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.85);
}

.compare-grip {
  position: relative;
  width: 18px;
  height: 18px;
}

.compare-grip::before,
.compare-grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  margin-top: -6px;
}

.compare-grip::before {
  left: -10px;
  border-right-color: #fff;
}

.compare-grip::after {
  right: -10px;
  border-left-color: #fff;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-view.is-dragging {
  cursor: ew-resize;
  user-select: none;
}

@media (max-width: 1024px) {
  .services-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-compare {
    order: -1;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-compare {
    padding: 1.25rem;
  }
}

.whyus-section {
  padding: 4.5rem 0 4.75rem;
  background: #f8fbff;
}

.whyus-container {
  max-width: 1120px;
  text-align: center;
}

.whyus-subhead {
  margin: 0 auto;
  max-width: 620px;
  color: #4b5563;
  font-size: 1rem;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.75rem 3.5rem;
  margin-top: 3rem;
  text-align: left;
}

.whyus-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.whyus-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #0f172a;
}

.whyus-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.97rem;
  line-height: 1.55;
}

.whyus-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(70, 152, 194, 0.25);
  background: rgba(70, 152, 194, 0.12);
  color: #1f5fd4;
}

.whyus-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.whyus-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whyus-icon--green {
  border-color: rgba(56, 183, 126, 0.45);
  background: rgba(56, 183, 126, 0.14);
  color: #1d9e6f;
}

.whyus-icon--blue {
  border-color: rgba(70, 152, 194, 0.28);
  background: rgba(70, 152, 194, 0.16);
  color: #1f5fd4;
}

@media (max-width: 1023px) {
  .whyus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 2.75rem;
  }
}

@media (max-width: 639px) {
  .whyus-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .whyus-card {
    align-items: center;
  }
}

#areas-we-serve {
  margin: 3rem 0 4rem;
}

#areas-we-serve .section-title {
  margin-bottom: 0.5rem;
}

.areas-intro {
  margin: 0 auto 1.75rem;
  max-width: 640px;
  color: #4b5563;
  font-size: 1rem;
}

.areas-map-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 42px -28px rgba(15, 23, 42, 0.45);
}

#service-map {
  width: 100%;
  height: 420px;
}

@media (min-width: 768px) {
  #service-map {
    height: 520px;
  }
}

.leaflet-container a {
  color: #4698C2;
}

.areas-list {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1f2937;
}

.service-card {
  position: relative;
  padding: 1.85rem 1.5rem 1.6rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(70, 152, 194, 0.22);
  box-shadow:
    0 25px 38px -28px rgba(12, 33, 46, 0.75),
    0 14px 30px -20px rgba(70, 152, 194, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(120deg, rgba(70, 152, 194, 0.25), transparent) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(70, 152, 194, 0.4);
  box-shadow:
    0 30px 48px -28px rgba(12, 33, 46, 0.78),
    0 20px 36px -20px rgba(70, 152, 194, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(70, 152, 194, 0.24), rgba(70, 152, 194, 0.08));
  display: grid;
  place-items: center;
  box-shadow: 0 18px 26px -18px rgba(9, 34, 52, 0.6);
}

.service-card-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 0 0 0.65rem;
  color: #0f2f42;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .services-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }

  .services-spotlight {
    min-height: 100%;
  }
}

@media (max-width: 639px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ================= FLOATING CALL FAB ================= */

.call-fab {
  position: fixed;
  bottom: clamp(16px, 4vw, 28px);
  right: clamp(16px, 4vw, 28px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(140deg, #3fa0ff, #1f5fd4);
  box-shadow: 0 18px 32px -18px rgba(11, 41, 68, 0.75), 0 8px 18px -12px rgba(63, 160, 255, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
  z-index: 1200;
}

.call-fab:hover {
  filter: brightness(1.05);
  box-shadow: 0 16px 30px -16px rgba(11, 41, 68, 0.8), 0 10px 22px -14px rgba(63, 160, 255, 0.6);
}

.call-fab:focus-visible {
  outline: 3px solid rgba(63, 160, 255, 0.55);
  outline-offset: 4px;
}

.call-fab__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.call-fab.is-pulsing {
  animation: callFabPulse 0.85s ease-out;
}

@keyframes callFabPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 18px 32px -18px rgba(11, 41, 68, 0.75), 0 8px 18px -12px rgba(63, 160, 255, 0.55);
  }
  55% {
    transform: scale(1.08);
    box-shadow: 0 22px 36px -16px rgba(11, 41, 68, 0.8), 0 10px 24px -12px rgba(63, 160, 255, 0.65);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 18px 32px -18px rgba(11, 41, 68, 0.75), 0 8px 18px -12px rgba(63, 160, 255, 0.55);
  }
}

@media (max-width: 768px) {
  .call-fab {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-fab.is-pulsing {
    animation: none;
  }
}

/* ================= QUOTE / CONTACT ================= */

.quote-section {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  color: #fff;
}

.quote-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.quote-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.quote-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(147, 147, 147, 0.6);
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.quote-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.quote-header .section-title {
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.quote-subhead {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.quote-form-card,
.contact-card {
  background-color: #f5f5f5;
  color: var(--text-main);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  padding: 1.5rem 1rem;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}


.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.quote-form-status {
  font-size: 0.9rem;
  line-height: 1.4;
  min-height: 1.25rem;
}

.quote-form-status.is-success {
  color: #1d9e6f;
}

.quote-form-status.is-error {
  color: #d1434b;
}

.quote-form label {
  display: block;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}


.quote-form label span {
  display: block;
  margin-bottom: 0.4rem;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  padding: 0.7rem 0.75rem;
  outline: none;
  font-family: inherit;
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(70 152 194 / 20%);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: auto;
  line-height: 1.4;
}


.contact-card {
  background-color: #f5f5f5;
  color: var(--text-main);
  border: 1px solid #e5e7eb;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(70, 152, 194, 0.12);
  border: 1px solid rgba(70, 152, 194, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.contact-icon img {
  width: 18px;
  height: 18px;
}

.contact-label {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-cta-block {
  margin-top: auto;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(70, 152, 194, 0.25);
  box-shadow: 0 18px 32px -26px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-cta-head {
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
}

.contact-cta-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ================= FOOTER ================= */

.site-footer {
  background-color: #0f172a;
  color: #fff;
  padding-top: 3rem;
  margin-top: 0;
}

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

.footer-brand {
  color: #fff;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 1rem 0 0;
  color: #cbd5e1;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials img {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.2s ease;
}

.footer-socials img:hover {
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  margin: 0 0 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact li {
  color: #cbd5e1;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 2rem;
}

.footer-bottom-inner {
  text-align: center;
  padding: 1.5rem 0;
}

.footer-bottom-inner p {
  color: #ffffff;
  font-size: 0.8rem;
  margin: 0;
}

/* ================= RESPONSIVE LAYOUTS ================= */

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

  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 2.5rem;
  }

  .quote-header {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }
}


@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    color: var(--text-main);
  }
}











