/* Gilroy Font Face Declarations */
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-UltraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-navy: #073863;
  --brand-orange: #EC710F;
  --brand-white: #FFFFFF;
  --ink: #0B1220;
  --bg: #F6FAFF;
  --border: #E6ECF5;
  --accent: var(--brand-orange);
  --success: #1f9d55;
  --font-sans: 'Gilroy', 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1400px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 40px -24px rgba(7, 56, 99, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

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

a:hover,
a:focus {
  color: var(--accent);
}

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

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

main {
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: var(--brand-orange);
  color: var(--brand-white);
  border-radius: var(--radius-md);
  z-index: 1000;
}

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-flex;
  align-items: start;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand-orange);
  color: var(--brand-white);
  box-shadow: 0 18px 36px -20px rgba(236, 113, 15, 0.6);
  border: 1px none rgba(0, 0, 0, 0);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px -20px rgba(236, 113, 15, 0.55);
}

.btn-secondary {
  color: var(--brand-white);
  border: 2px solid var(--brand-orange);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: #cf5f0d;
  transform: translateY(-1px);
  box-shadow: 0 20px 44px -20px rgba(207, 95, 13, 0.58);
}

.btn-link {
  background: transparent;
  color: var(--brand-orange);
  padding-inline: 0;
}

.btn-link::after {
  content: '>';
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn-link:hover::after,
.btn-link:focus::after {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--brand-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px -20px rgba(7, 56, 99, 0.4);
}

.site-header .logo .logo-mark {
  display: block;
  height: 80px;
  width: auto;
}


.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0;
}

.site-header .logo {
  display: inline-flex;
  align-items: center;
}

.site-header .logo-type {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header nav {
  flex: 1;
}

.site-header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header nav li {
  position: relative;
}

.site-header nav li.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-header nav li.has-submenu > a .submenu-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.site-header nav li.has-submenu > a .submenu-indicator svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-header nav li.has-submenu.submenu-expanded > a .submenu-indicator {
  transform: rotate(90deg);
}

.site-header nav li.has-submenu > .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--brand-white);
  border: 1px solid rgba(7, 56, 99, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.25rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 12;
  max-height: 420px;
  overflow-y: auto;
}

@media (min-width: 941px) {
  .site-header nav li.has-submenu:hover > a .submenu-indicator,
  .site-header nav li.has-submenu:focus-within > a .submenu-indicator {
    transform: rotate(90deg);
  }

  .site-header nav li.has-submenu:hover > .submenu,
  .site-header nav li.has-submenu:focus-within > .submenu,
  .site-header nav li.has-submenu > .submenu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}
.site-header nav li.has-submenu > .submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.site-header nav li.has-submenu > .submenu li {
  margin: 0;
}

.site-header nav li.has-submenu > .submenu a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.site-header nav li.has-submenu > .submenu a:hover,
.site-header nav li.has-submenu > .submenu a:focus {
  color: var(--brand-navy);
}

.site-header nav a {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  color: var(--brand-white);
}

.site-header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-header nav a:focus::after,
.site-header nav a:hover::after {
  transform: scaleX(1);
}

.site-header nav a:hover,
.site-header nav a:focus {
  color: var(--brand-white);
}

.site-header .cta {
  background: var(--brand-orange);
  color: var(--brand-white);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 36px -20px rgba(236, 113, 15, 0.6);
}

.site-header .cta:hover,
.site-header .cta:focus {
  background: #cf5f0d;
  transform: translateY(-1px);
  box-shadow: 0 20px 44px -20px rgba(207, 95, 13, 0.58);
}

.site-header .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--brand-white);
  color: var(--brand-white);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header .cta-secondary:hover,
.site-header .cta-secondary:focus {
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

.site-header .cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  background: var(--brand-orange);
  color: var(--brand-white);
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(7, 56, 99, 0.5);
  margin-bottom: 1rem;
}

.section-kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: rgba(7, 56, 99, 0.2);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.trust-badges li {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.services-grid {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.services-grid .grid,
.county-section .grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 40px -32px rgba(7, 56, 99, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.service-card a {
  display: block;
  color: inherit;
  padding: 2rem;
  height: 100%;
}

.service-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(7, 56, 99, 0.25);
}

.about-preview,
.why-us,
.partner-logos,
.faq,
.lead-form,
.testimonials,
.county-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.lead-form {
  padding-top: 80px;
  padding-bottom: 0;
}

.about-preview .container {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-preview .visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-preview .visual img {
  width: 100%;
  height: auto;
  display: block;
}

.why-us .container {
  display: grid;
  gap: 0;
}

.why-us-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 6vw, 3.5rem);
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(7, 56, 99, 0.08);
  box-shadow: 0 32px 60px -32px rgba(7, 56, 99, 0.28);
  padding: clamp(2.5rem, 5vw, 3.25rem);
  overflow: hidden;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.why-us-content h2 {
  margin: 0;
}

.why-us-intro {
  margin: 0;
  max-width: 58ch;
  color: rgba(11, 18, 32, 0.78);
}

.why-us-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.75rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-us-item {
  position: relative;
  padding-left: 1.75rem;
}

.why-us-item::before {
  content: '';
  position: absolute;
  top: 0.35rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-navy), var(--accent));
  box-shadow: 0 10px 24px -14px rgba(7, 56, 99, 0.6);
}

.why-us-item dt {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: rgba(7, 56, 99, 0.7);
}

.why-us-item dd {
  margin: 0.45rem 0 0;
  color: rgba(11, 18, 32, 0.72);
  line-height: 1.55;
}

.why-us-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 12px);
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 60px -34px rgba(7, 56, 99, 0.45);
}

.media-accent {
  position: absolute;
  inset: clamp(-1.25rem, -3vw, -0.75rem);
  background: linear-gradient(140deg, rgba(7, 56, 99, 0.12), rgba(59, 167, 255, 0.28));
  border-radius: calc(var(--radius-lg) - 4px);
  z-index: 0;
}

@media (max-width: 1080px) {
  .why-us-card {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  }

  .media-frame {
    width: min(100%, 360px);
  }
}

@media (max-width: 900px) {
  .why-us-card {
    grid-template-columns: 1fr;
  }

  .why-us-media {
    order: -1;
  }

  .why-us-list {
    grid-template-columns: 1fr;
  }

  .media-frame {
    width: min(440px, 90%);
  }
}

@media (max-width: 600px) {
  .why-us-card {
    padding: clamp(2rem, 8vw, 2.6rem);
  }

  .media-frame {
    aspect-ratio: 1;
  }

  .why-us-item dt {
    letter-spacing: 0.12em;
    font-size: 0.78rem;
  }
}

.testimonials .carousel {
  position: relative;
  overflow: hidden;
}

.testimonials ul {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0;
  list-style: none;
  margin: 0;
}

.testimonials li {
  min-width: min(320px, 85%);
  scroll-snap-align: start;
}

.testimonials figure {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 24px 40px -32px rgba(11, 18, 32, 0.3);
}

.testimonials blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonials figcaption {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--brand-navy);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonials .rating {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.carousel-controls {
  display: none;
}

.partner-logos ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  filter: grayscale(1);
  opacity: 0.8;
}

.faq .faq-list {
  display: grid;
  gap: 1rem;
}

.faq details {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  float: right;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.lead-form .container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: auto;
  align-items: stretch;
  justify-content: center;
}

.lead-form-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 30px 48px;
  width: auto;
  flex: 1 1 auto;
  margin: 0;
}

.lead-form-card h2 {
  font-size: 22px;
  line-height: 25px;
  margin: 5px 0 0;
  padding-bottom: -10px;
}

.lead-form-image {
  width: min(100%, 520px);
  height: 550px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  align-self: center;
  justify-self: center;
  margin: 0;
  margin-top: auto;
}

.lead-form form {
  display: grid;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

input, select, textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 167, 255, 0.2);
}

textarea {
  resize: vertical;
}

.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

footer.site-footer {
  background: var(--brand-orange);
  color: var(--brand-white);
  padding-block: clamp(3rem, 6vw, 4rem);
  margin-top: clamp(4rem, 8vw, 6rem);
}

.hero__form-intro {
  color: var(--brand-white);
}

.hero__form-card label {
  color: var(--brand-white);
}

.hero__form-card input,
.hero__form-card select {
  background: rgba(200, 220, 240, 0.25);
  border-color: rgba(7, 56, 99, 0.15);
  color: var(--ink);
}

footer .container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

footer h2, footer h3 {
  margin-top: 0;
  color: var(--brand-white);
}

footer a {
  color: var(--brand-white);
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.page-hero {
  padding-block: clamp(3rem, 6vw, 4rem);
  background: var(--brand-white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4vw, 2.75rem);
}

.page-hero p {
  max-width: 720px;
}

.content-section {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.content-section.alt {
  background: var(--brand-white);
  border-block: 1px solid var(--border);
}

.content-page ul {
  padding-left: 1.2rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

.county-section.split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.county-section.split .container {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.map-block {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.map-block .map-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.testimonial-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.testimonial-list li figure {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.cta {
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.blog-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.blog-list article {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 24px 40px -32px rgba(7, 56, 99, 0.25);
}

.blog-post .post-body {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.blog-post .post-body .container {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.blog-post h2, .blog-post h3 {
  margin-top: 1.8rem;
}

.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 0.5rem;
  color: rgba(7, 56, 99, 0.3);
}

.breadcrumbs li:last-child::after {
  content: '';
}

.breadcrumbs a {
  color: var(--brand-navy);
}

.breadcrumbs span {
  color: rgba(7, 56, 99, 0.6);
}

.service-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.service-hero .container {
  display: flex;
  flex-direction: column;
  gap: clamp(0rem, 0vw, 0rem);
  align-items: flex-start;
}

.service-hero__content {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.service-hero__visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--brand-white);
  box-shadow: var(--shadow-soft);
}

.service-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 720px) {
  .service-hero .container {
    grid-template-columns: 1fr;
  }
}
.service-detail .service-section {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.service-detail .service-section.alt {
  background: var(--brand-white);
  border-block: 1px solid var(--border);
}

.service-detail .service-section ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.service-detail .case-study {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: clamp(2rem, 5vw, 3rem);
}

.related-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.related-services a {
  background: var(--bg);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  font-weight: 500;
}
.service-areas {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--brand-white);
  border-block: 1px solid var(--border);
}

.service-areas .grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 2rem;
}

.service-areas article {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: 0 24px 40px -36px rgba(7, 56, 99, 0.25);
}
.service-areas article h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.service-areas article p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: rgba(11, 18, 32, 0.75);
}

.service-areas article ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.service-areas article li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
}

.service-areas article li::before {
  content: '';
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-navy), var(--accent));
  left: 0;
  top: 0.35rem;
  box-shadow: 0 10px 24px -16px rgba(7, 56, 99, 0.6);
}
.service-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(7, 56, 99, 0.06);
  border: 1px solid rgba(7, 56, 99, 0.08);
  color: var(--brand-navy);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.service-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card:hover .icon,
.service-card:focus-within .icon {
  background: rgba(59, 167, 255, 0.12);
  border-color: rgba(59, 167, 255, 0.4);
}

@media (max-width: 940px) {
  .site-header nav {
    position: absolute;
    inset: 100% 0 auto;
    background: rgba(245, 247, 251, 0.98);
    border-bottom: 1px solid rgba(230, 236, 245, 0.9);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.2s ease;
  }

  .site-header nav[aria-hidden="false"] {
    transform: scaleY(1);
  }

  .site-header nav ul {
    flex-direction: column;
    padding: 1.5rem;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .site-header nav li.has-submenu {
    width: 100%;
  }

  .site-header nav li.has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 0;
  }

  .site-header nav li.has-submenu > a .nav-link-text {
    flex: 1;
  }

  .site-header nav li.has-submenu > a .submenu-indicator {
    margin-left: 1rem;
  }

  .site-header nav li.has-submenu > .submenu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, max-height 0.3s ease, padding 0.3s ease;
  }

  .site-header nav li.has-submenu.submenu-expanded > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.75rem 0 0;
    max-height: 500px;
  }

  .site-header nav li.has-submenu > .submenu ul {
    gap: 0.5rem;
  }

  .site-header nav li.has-submenu > .submenu li a {
    padding-left: 0;
  }

  .site-header nav li.has-submenu > .submenu a {
    padding: 0.35rem 0;
    font-size: 1rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header .container {
    align-items: center;
  }

  .site-header .cta {
    display: none;
  }
}
@media (max-width: 1024px) {
  .lead-form .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 640px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .lead-form .container {
    flex-direction: column;
    align-items: stretch;
  }

  .lead-form-image {
    display: none;
  }

  .lead-form-card {
    padding: 1.75rem;
  }

  .hero__description {
    text-align: left;
  }

  .hero__badge span {
    font-size: 14px;
  }

  .hero__form-field label {
    text-align: left;
  }

  .hero__services {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

body.no-scroll {
  overflow: hidden;
}

.hero {
  background: linear-gradient(to bottom, #063966 0%, #4a7a9e 40%, #8fb3d4 70%, #ffffff 100%);
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(59, 167, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.6rem);
  align-items: flex-start;
  justify-content: center;
  margin-top: 0;
}

.hero__headline {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 800;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15em;
  align-items: baseline;
}

.hero__headline-white {
  color: var(--brand-white);
  display: block;
}

.hero__headline-orange {
  color: var(--brand-orange);
  display: block;
  text-shadow: 0 2px 8px rgba(236, 113, 15, 0.25);
  -webkit-text-stroke: 1px var(--brand-white);
}

.hero__headline-tampa {
  color: var(--brand-orange);
  display: block;
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 2px var(--brand-white);
  paint-order: stroke fill;
}

.hero__description {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: 0.25rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brand-orange);
}

.hero__services {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  color: var(--brand-white);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 600;
}

.hero__services-dot {
  color: var(--brand-orange);
  font-size: 1.2em;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--brand-orange);
  color: var(--brand-white);
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  box-shadow: 0 20px 40px -20px rgba(236, 113, 15, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.hero__cta:hover,
.hero__cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -20px rgba(236, 113, 15, 0.7);
  color: var(--brand-white);
}

.hero__cta-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--brand-white);
  color: var(--brand-orange);
  border-radius: 50%;
  padding: 5px;
}

.hero__form {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero__form-card {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 20px 44px;
  box-shadow: 0 30px 60px -20px rgba(7, 56, 99, 0.5);
  backdrop-filter: blur(10px);
}

.hero__form-heading {
  color: var(--brand-orange);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.hero__form-intro {
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

.hero__form-card form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__form-field label {
  font-weight: 600;
  color: var(--brand-white);
  font-size: 0.95rem;
}

.hero__form-field input,
.hero__form-field select {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(7, 56, 99, 0.15);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(200, 220, 240, 0.25);
}

.hero__form-field input::placeholder {
  color: rgba(11, 18, 32, 0.4);
}

.hero__form-field input:focus,
.hero__form-field select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(236, 113, 15, 0.15);
}

.hero__form-submit {
  background: var(--ink);
  color: var(--brand-white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 0;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.hero__form-submit:hover,
.hero__form-submit:focus {
  background: #000000;
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .hero .container {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: clamp(2rem, 5vw, 3rem);
  }
}

@media (max-width: 991px) {
  .hero__services {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__form {
    max-width: 500px;
    margin-inline: auto;
  }

  .hero__headline {
    text-align: left;
  }

  .hero__cta {
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: clamp(2.5rem, 8vw, 3.5rem) 0;
  }

  .hero__badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__services {
    display: none;
  }

  .hero__services-dot {
    display: none;
  }

  .hero__form-card {
    padding: clamp(1.75rem, 6vw, 2rem);
  }
}

.site-header nav .mobile-actions {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: var(--brand-orange);
  color: var(--brand-white);
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: #cf5f0d;
  transform: translateY(-1px);
}

.menu-toggle__icon {
  display: inline-flex;
  justify-content: space-between;
  flex-direction: column;
  width: 1.25rem;
  height: 1rem;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle__label {
  font-weight: 600;
  line-height: 1;
}

.site-header.is-menu-open .menu-toggle__icon span:nth-child(1) {
  transform: translateY(0.34rem) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-0.34rem) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-header .container {
    position: relative;
    align-items: center;
    padding-block: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header nav {
    flex: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    background: var(--brand-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 950;
  }

  .site-header nav a {
    color: var(--ink);
  }

  .site-header nav a:hover,
  .site-header nav a:focus {
    color: var(--ink);
  }

  .site-header nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }

  .site-header nav li.has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 0;
  }

  .site-header nav li.has-submenu > a .nav-link-text {
    flex: 1;
  }

  .site-header nav li.has-submenu > a .submenu-indicator {
    margin-left: 1rem;
  }

  .site-header nav li.has-submenu > .submenu {
    position: static;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, max-height 0.3s ease, padding 0.3s ease;
  }

  .site-header nav li.has-submenu.submenu-expanded > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.75rem 0 0;
    max-height: 500px;
  }

  .site-header nav li.has-submenu > .submenu ul {
    gap: 0.5rem;
  }

  .site-header nav li.has-submenu > .submenu a {
    padding: 0.35rem 0;
    font-size: 1rem;
  }

  .site-header .cta-group {
    display: none;
  }

  .site-header .cta-desktop {
    display: none;
  }

  .site-header nav .mobile-actions .cta-secondary {
    width: 100%;
    justify-content: center;
    margin-top: 0.75rem;
    background: var(--brand-orange);
    color: var(--brand-white);
    border-color: var(--brand-orange);
  }

  .site-header nav .mobile-actions {
    display: block;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    width: 100%;
  }

  .site-header nav .mobile-actions .cta {
    width: 100%;
    justify-content: center;
  }

  .no-js .site-header nav {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .no-js .site-header nav li.has-submenu > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: none;
    padding: 0.75rem 0 0;
    overflow: visible;
  }

  .no-js .site-header nav ul {
    gap: 0.75rem;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .site-header .cta-desktop {
    display: inline-flex;
  }

  .no-js .site-header nav .mobile-actions {
    display: none;
  }
}


















.trust-icons {
  background: var(--brand-white);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.trust-icons ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-icons li {
  background: rgba(7, 56, 99, 0.05);
  border: 1px solid rgba(7, 56, 99, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.trust-icons strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.service-page .service-hero {
  background: linear-gradient(135deg, rgba(7, 56, 99, 0.92), rgba(7, 56, 99, 0.75));
  color: var(--brand-white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.service-hero .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.service-content {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--brand-white);
}

.service-content .two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.service-media img {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

/* Override for wider roller & track replacement image */
.service-media img[alt="Technician replacing rollers and resurfacing sliding door track"] {
  max-width: 980px;
  max-height: 300px;
}

.service-process {
  background: rgba(7, 56, 99, 0.05);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.service-process ol,
.service-process ul {
  margin: 1.5rem 0 0;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.related-services {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.related-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-services a {
  color: var(--brand-orange);
  font-weight: 600;
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.service-area-list article,
.service-area-directory article {
  background: var(--brand-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 24px 40px -32px rgba(7, 56, 99, 0.25);
}

.service-area-list ul,
.service-area-directory ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.service-area-directory .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.service-area-directory .neighborhoods {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(7, 56, 99, 0.75);
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 32px -22px rgba(7, 56, 99, 0.35);
  aspect-ratio: 16 / 9;
  margin-top: 1rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.process-grid article {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 18px 32px -26px rgba(7, 56, 99, 0.3);
}

/* Window Services Section - Matching Why Us Layout */
.window-services-section {
  background: var(--brand-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-block: 1px solid var(--border);
}

.services-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 6vw, 3.5rem);
  align-items: start;
}

.services-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--brand-navy);
}

.services-intro {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(11, 18, 32, 0.75);
  max-width: 58ch;
}

.services-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.services-list li {
  position: relative;
  padding-left: 2rem;
}

.services-list li::before {
  content: '';
  position: absolute;
  top: 0.35rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-navy), var(--accent));
  box-shadow: 0 10px 24px -14px rgba(7, 56, 99, 0.6);
}

.services-list strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--brand-navy);
  line-height: 1.3;
}

.services-list p {
  margin: 0;
  color: rgba(11, 18, 32, 0.72);
  line-height: 1.55;
  font-size: 0.95rem;
}

.services-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-visual img {
  width: 100%;
  height: auto;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -34px rgba(7, 56, 99, 0.45);
  object-fit: cover;
}

/* Responsive behavior for services section */
@media (max-width: 1080px) {
  .services-split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  }

  .services-visual img {
    max-width: 400px;
  }
}

@media (max-width: 900px) {
  .services-split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-visual {
    order: -1;
  }

  .services-visual img {
    max-width: min(480px, 90%);
  }
}

@media (max-width: 720px) {
  .window-services-section {
    padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  }

  .services-split-layout {
    gap: 2rem;
  }

  .services-list {
    gap: 1.5rem;
  }

  .services-list li {
    padding-left: 1.75rem;
  }

  .services-list li::before {
    width: 8px;
    height: 8px;
    top: 0.4rem;
  }

  .services-list strong {
    font-size: 1.1rem;
  }

  .services-list p {
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  .service-hero .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-icons ul,
  .service-area-directory .grid,
  .service-area-list {
    grid-template-columns: 1fr;
  }
}


.service-overview {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.service-feature {
  background: var(--brand-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 18px 32px -28px rgba(7, 56, 99, 0.25);
}

.service-feature img {
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.service-feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

/* Enhanced Detailed Services Grid */
.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.detailed-service-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 40px -32px rgba(7, 56, 99, 0.25);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.detailed-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-navy), var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.detailed-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 56, 99, 0.25);
  box-shadow: 0 32px 60px -32px rgba(7, 56, 99, 0.35);
}

.service-icon-wrapper {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  background: rgba(7, 56, 99, 0.06);
  border-radius: 50%;
  border: 2px solid rgba(7, 56, 99, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.service-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, var(--brand-navy), var(--accent));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.detailed-service-card:hover .service-icon-wrapper {
  background: rgba(59, 167, 255, 0.12);
  border-color: rgba(59, 167, 255, 0.4);
  transform: scale(1.05);
}

.detailed-service-card:hover .service-icon-wrapper::before {
  opacity: 0.1;
}

.service-icon-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(7, 56, 99, 0.2));
}

.detailed-service-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
}

.detailed-service-card p {
  margin: 0;
  color: rgba(11, 18, 32, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .detailed-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detailed-service-card {
    padding: 1.5rem;
    text-align: left;
  }

  .service-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 0 1rem;
    align-self: flex-start;
  }

  .service-icon-wrapper img {
    width: 48px;
    height: 48px;
  }

  .detailed-service-card h3 {
    font-size: 1.25rem;
  }
}

.service-feature p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Enhanced Process Section Styles */
.process-step {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 18px 32px -26px rgba(7, 56, 99, 0.25);
  border: 1px solid rgba(7, 56, 99, 0.08);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px -28px rgba(7, 56, 99, 0.35);
}

.step-indicator {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(7, 56, 99, 0.4);
  position: relative;
  z-index: 1;
}

.step-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-content h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--brand-navy);
  line-height: 1.3;
}

.step-content p {
  margin: 0;
  color: rgba(11, 18, 32, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Connecting line between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 48px;
  top: 72px;
  bottom: -32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(236, 113, 15, 0.3));
  z-index: 0;
}

@media (max-width: 720px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    padding: 1.25rem;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .step-indicator {
    width: 40px;
    height: 40px;
  }

  .step-number {
    font-size: 1.1rem;
  }
}

/* Call Widget */
.call-widget {
  position: fixed;
  bottom: 120px; /* Position above Tidio widget */
  right: 20px;
  z-index: 1000;
  background: var(--brand-orange);
  color: var(--brand-white);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(236, 113, 15, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: callPulse 2s infinite;
}

.call-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(236, 113, 15, 0.6);
  background: #cf5f0d;
}

.call-widget:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(236, 113, 15, 0.3), 0 6px 25px rgba(236, 113, 15, 0.6);
}

.call-widget svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes callPulse {
  0% {
    box-shadow: 0 4px 20px rgba(236, 113, 15, 0.4), 0 0 0 0 rgba(236, 113, 15, 0.7);
  }
  70% {
    box-shadow: 0 4px 20px rgba(236, 113, 15, 0.4), 0 0 0 10px rgba(236, 113, 15, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(236, 113, 15, 0.4), 0 0 0 0 rgba(236, 113, 15, 0);
  }
}

/* Hide call widget on very small screens */
@media (max-width: 480px) {
  .call-widget {
    bottom: 100px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .call-widget svg {
    width: 24px;
    height: 24px;
  }
}

/* Contact Page Enhancements */
.contact-page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-hero {
  background: linear-gradient(135deg, #f6faff 0%, #ffffff 60%, rgba(7, 56, 99, 0.08) 100%);
  padding-block: clamp(3.5rem, 9vw, 6rem);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(7, 56, 99, 0.12), rgba(7, 56, 99, 0));
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

.contact-hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.contact-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-orange);
}

.contact-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-cta-button--primary {
  background: var(--brand-orange);
  color: var(--brand-white);
  border: none;
  box-shadow: 0 18px 36px -20px rgba(236, 113, 15, 0.6);
}

.contact-cta-button--primary:hover,
.contact-cta-button--primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px -20px rgba(236, 113, 15, 0.55);
}

.contact-cta-button--ghost {
  background: var(--brand-white);
  color: var(--brand-navy);
  border: 2px solid rgba(7, 56, 99, 0.12);
  box-shadow: 0 12px 26px -22px rgba(7, 56, 99, 0.35);
}

.contact-cta-button--ghost:hover,
.contact-cta-button--ghost:focus {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-1px);
}

.contact-hero__note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(7, 56, 99, 0.7);
}

.contact-hero__note a {
  color: var(--brand-orange);
  font-weight: 600;
}

.contact-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: clamp(1rem, 3vw, 1.75rem);
}

.contact-hero__meta-item {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(7, 56, 99, 0.08);
  box-shadow: 0 18px 32px -28px rgba(7, 56, 99, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-hero__meta-item .label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(7, 56, 99, 0.6);
}

.contact-hero__meta-item strong {
  font-size: 1.05rem;
  color: var(--brand-navy);
}

.contact-hero__media img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  border-radius: clamp(1rem, 4vw, 1.75rem);
  box-shadow: 0 24px 44px -28px rgba(7, 56, 99, 0.45);
  background: var(--brand-white);
}

.contact-methods {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.contact-methods__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(7, 56, 99, 0.08);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 30px 60px -40px rgba(7, 56, 99, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-card h2,
.contact-card h3 {
  margin: 0;
  color: var(--brand-navy);
}

.contact-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.contact-card__list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
}

.contact-card__list span {
  font-weight: 600;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  min-width: 64px;
}

.contact-card__list a {
  font-weight: 600;
  color: var(--brand-orange);
}

.contact-card__hours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.contact-card__hours div {
  background: rgba(7, 56, 99, 0.05);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-card__hours span {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(7, 56, 99, 0.6);
}

.contact-card__hours strong {
  color: var(--brand-navy);
  font-size: 1rem;
}

.contact-card__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: rgba(7, 56, 99, 0.78);
}

.contact-card__bullets li {
  position: relative;
  padding-left: 1.75rem;
}

.contact-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.35rem;
  border-left: 3px solid var(--brand-orange);
  border-bottom: 3px solid var(--brand-orange);
  transform: rotate(-45deg);
}

.contact-card__cta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: rgba(7, 56, 99, 0.7);
}

.contact-card--secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.contact-map {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  padding-block: clamp(3rem, 8vw, 5rem);
}

.contact-map__inner {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
}

.contact-map__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-map__copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: var(--brand-navy);
}

.contact-map__copy p {
  margin: 0;
  color: rgba(7, 56, 99, 0.75);
}

.contact-map__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.contact-map__list li {
  background: var(--brand-white);
  border: 1px solid rgba(7, 56, 99, 0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  box-shadow: 0 12px 24px -18px rgba(7, 56, 99, 0.3);
}

.contact-map__note {
  font-size: 0.9rem;
  color: rgba(7, 56, 99, 0.6);
}

.contact-map__media .map-frame {
  margin-top: 0;
  min-height: 320px;
}

.contact-trust {
  padding-block: clamp(3rem, 8vw, 5.5rem);
}

.contact-trust__inner {
  display: grid;
  gap: clamp(2rem, 6vw, 3.5rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.contact-trust__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 48px -30px rgba(7, 56, 99, 0.4);
  object-fit: cover;
}

.contact-trust__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: rgba(7, 56, 99, 0.78);
}

.contact-checklist li {
  position: relative;
  padding-left: 2rem;
}

.contact-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.4rem;
  border-left: 3px solid var(--brand-orange);
  border-bottom: 3px solid var(--brand-orange);
  transform: rotate(-45deg);
}

.contact-team {
  background: var(--brand-white);
  padding-block: clamp(3rem, 8vw, 5.5rem);
}

.contact-team__inner {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
}

.contact-team__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-team__copy h2 {
  margin: 0;
  color: var(--brand-navy);
}

.contact-team__copy p {
  margin: 0;
  color: rgba(7, 56, 99, 0.75);
}

.contact-team__values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-team__value {
  background: rgba(7, 56, 99, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(7, 56, 99, 0.08);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-team__value strong {
  color: var(--brand-navy);
  font-size: 1.05rem;
}

.contact-team__value span {
  color: rgba(7, 56, 99, 0.75);
  font-size: 0.95rem;
}

.contact-team__media img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

@media (max-width: 960px) {
  .contact-hero__inner,
  .contact-map__inner,
  .contact-trust__inner,
  .contact-team__inner {
    grid-template-columns: 1fr;
  }

  .contact-hero__copy,
  .contact-map__copy,
  .contact-trust__copy,
  .contact-team__copy {
    text-align: center;
  }

  .contact-hero__cta {
    justify-content: center;
  }

  .contact-hero__meta {
    justify-items: center;
  }

  .contact-hero__meta-item {
    width: 100%;
    max-width: 260px;
  }

  .contact-map__media {
    order: -1;
  }

  .contact-trust__image,
  .contact-team__media {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-card__list {
    align-items: center;
  }

  .contact-card__list li {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding-block: clamp(2.5rem, 10vw, 3.5rem);
  }

  .contact-hero__meta {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: clamp(1.5rem, 6vw, 2rem);
  }

  .contact-card__hours {
    grid-template-columns: 1fr;
  }

  .contact-map__list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .contact-team__values {
    grid-template-columns: 1fr;
  }
}
