:root {
  --primary: #0f006d;
  --primary-deep: #0a004a;
  --silver-1: #f8f9fc;
  --silver-2: #e6e9f2;
  --silver-3: #c8cfdd;
  --text: #1b2140;
  --muted: #5d6480;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 0, 109, 0.12);
  --radius: 22px;
  --radius-sm: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  position: relative;
}

.site-wrapper,
.page-wrapper,
main {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.silver-bg {
  background: linear-gradient(180deg, var(--silver-1), #eef1f7 55%, #fbfcfe);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  margin: 0 0 16px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 16px;
  color: #000;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 0, 109, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2912c8);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary);
  border: 1px solid rgba(15, 0, 109, 0.14);
  backdrop-filter: blur(8px);
}

.btn-nav,
.btn-footer,
.btn-fab {
  background: linear-gradient(135deg, #e8ebf5, #c7cedc);
  color: var(--primary);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 14px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled,
.site-header.menu-open,
body.no-hero .site-header {
  background: rgba(15, 0, 109, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.logo-box {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  overflow: hidden;
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.2rem;
}

.brand-copy small {
  opacity: 0.88;
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav li {
  position: relative;
}

.main-nav a,
.dropdown-toggle {
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 10px;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown-menu a {
  color: #09003f !important;
  padding: 12px 14px;
  border-radius: 14px;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: linear-gradient(135deg, var(--silver-1), #e8ecf8);
  color: var(--primary);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  justify-content: center;
  align-items: center;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.hero-home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
    align-items: center;
  text-align: center;
  justify-content: center;
}
.hero .hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 3rem);
}


.hero {
  min-height: 30vh;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay,
.parallax-band::before {
  position: absolute;
  inset: 0;
  content: '';
  background:
    linear-gradient(90deg, rgba(10, 0, 74, 0.88), rgba(15, 0, 109, 0.60)),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 130px;
  padding-bottom: 80px;

}

.hero-home p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(2rem, 1.8vw, 2.2rem);
  align-items: center;
  text-align: center;
  justify-content: center;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
    align-items: center;
  text-align: center;
  justify-content: center;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.media-stack {
  display: grid;
  gap: 16px;
}
.photo-placeholder {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 0, 109, 0.2);
  background: #fff;
  overflow: hidden;
  display: block;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.photo-placeholder.tall {
  min-height: 460px;
}

.photo-placeholder.wide {
  min-height: 380px;
}

.photo-placeholder.small {
  min-height: 230px;
}

.gallery-grid,
.two-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section-title {
  margin-bottom: 28px;
}

.section-title.center {
  text-align: center;
}

.card-grid.three,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.stat-card,
.value-card,
.contact-card,
.location-card,
.not-found-card {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(15, 0, 109, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.value-card:hover,
.contact-card:hover,
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 0, 109, 0.16);
}

.service-card a {
  color: var(--primary);
  font-weight: 700;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  text-align: center;
}

.stat-card strong {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.parallax,
.parallax-band {
  background-attachment: fixed;
}

.parallax-band {
  position: relative;
  padding: 320px 0;
  background-image: var(--band-image);
  background-size: cover;
  background-position: bottom;
    align-items: center;
  text-align: center;
  justify-content: center;
}

.band-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 760px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.band-content .eyebrow{
  color: #fff;
}
.band-content p {
  color: rgba(255,255,255,0.84);
}

.check-list {
  list-style: disc;
  padding-left: 1.25rem;
}

.check-list li {
  padding-left: 0;
}

.check-list li::before {
  content: none;
}

.contact-banner {
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15,0,109,0.95), rgba(41,18,200,0.92));
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-banner p,
.contact-banner .eyebrow {
  color: rgba(255,255,255,0.85);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-card {
  text-align: center;
  font-weight: 700;
  color: var(--primary);
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.primary-contact {
  margin: 24px 0;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(15, 0, 109, 0.1);
  background: linear-gradient(180deg, #ffffff, #f8f9fc);
  padding: 0 22px;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 4px;
  font-weight: 700;
  color: var(--text);
}

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

.faq-item p {
  padding: 0 4px 22px;
}

.site-footer {
  background: linear-gradient(180deg, #14006f, #09003f);
  color: rgba(255,255,255,0.85);
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer-brand,
.footer-logo {
  color: var(--white);
}
.footer-brand {
  margin-bottom: 1.5vh;
}


.footer-text,
.footer-list li,
.footer-list a {
  color: rgba(255,255,255,0.8);
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-contact-list {
  display: grid;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-list li i {
  width: 18px;
  margin-top: 0.2rem;
  color: silver;
  flex-shrink: 0;
}

.footer-contact-list li a,
.footer-contact-list li span {
  line-height: 1.6;
}

.footer-bottom {
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0 26px;
  color: #fff;
}

.footer-bottom p{
  color: var(--silver-3);
}
.quote-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 31, 0.62);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 60;
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(760px, 100%);
  background: #fff;
  color: var(--text);
  border-radius: 28px;
  padding: 30px;
  position: relative;
  box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #edf0f6;
  color: var(--primary);
  font-size: 1.8rem;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quote-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15,0,109,0.12);
  background: #f8f9fd;
  color: var(--text);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: 2px solid rgba(15, 0, 109, 0.16);
  border-color: rgba(15, 0, 109, 0.28);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  min-height: 24px;
  color: var(--primary);
  font-weight: 600;
}

.not-found-wrap {
  min-height: 70vh;
  padding-top: 120px;
}

.not-found-card {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    top: 84px;
    right: 1rem;
    left: 1rem;
    background: rgba(15, 0, 109, 0.97);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul,
  .footer-grid,
  .split-grid,
  .contact-grid,
  .faq-wrap,
  .card-grid.three,
  .stats-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .main-nav ul {
    display: grid;
    gap: 8px;
  }

  .main-nav a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: rgba(255,255,255,0.1);
    display: none;
    box-shadow: none;
    margin-top: 8px;
  }

  .dropdown-menu a {
    color: var(--white);
  }

  .has-dropdown.open .dropdown-menu {
    display: grid;
  }

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

  .btn-nav {
    width: 100%;
  }

  .parallax,
  .parallax-band {
    background-attachment: scroll;
  }

  .hero-home p {
    display: none;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 120px;
  }

  .form-grid,
  .gallery-grid,
  .two-card-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-banner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-box {
    width: 54px;
    height: 54px;
  }

  .brand-copy small {
    font-size: 0.75rem;
  }

  .modal-card {
    padding: 24px 18px;
  }

  .quote-fab {
    right: 14px;
    bottom: 14px;
  }

  .btn-fab {
    padding: 12px 18px;
  }
}



.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  color: inherit;
  padding: 0.4rem 0;
}

.header-actions {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
}

.desktop-nav-cta {
  display: inline-flex;
}

.mobile-nav-cta {
  display: none;
}

.mobile-toggle {
  display: none;
}

/* optional: keep dropdown centered under item */
.has-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
}

/* tablet/mobile */
@media (max-width: 991px) {
  .nav-shell {
    min-height: 80px;
  }

  .brand-copy small {
    display: none;
  }

  .desktop-nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #fff;
  }

  .mobile-toggle i {
    display: block;
    width: 60px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    display: none;
    padding: 1rem;
    margin-top: 0.75rem;
    border-radius: 20px;
    background: rgba(15, 0, 109, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.4rem;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0;
    color: #fff !important;
  }

  .mobile-nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .has-dropdown .dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 0.35rem;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    gap: 0.75rem;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .logo-box img {
    max-height: 44px;
    width: auto;
  }
}


.main-nav a,
.dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  color: #ffffff;
  padding: 0.5rem 0;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c0c0c0 0%, #ffffff 50%, #c0c0c0 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.95;
}

.main-nav a:hover,
.dropdown-toggle:hover,
.main-nav a.active,
.dropdown-toggle[aria-expanded="true"] {
  color: #ffffff;
  background: transparent;
}

.main-nav a:hover::after,
.dropdown-toggle:hover::after,
.main-nav a.active::after,
.dropdown-toggle[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.main-nav a:focus-visible,
.dropdown-toggle:focus-visible {
  outline: none;
  color: #ffffff;
}

.main-nav a:focus-visible::after,
.dropdown-toggle:focus-visible::after {
  transform: scaleX(1);
}

.main-nav li {
  position: relative;
}

@media (max-width: 991px) {
  .main-nav a,
  .dropdown-toggle {
    color: #ffffff;
    background: transparent;
  }

  .main-nav a::after,
  .dropdown-toggle::after {
    bottom: 0.35rem;
  }
}
.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.image-service-card {
  position: relative;
  min-height: 780px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 40px rgba(15, 0, 109, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
}

.image-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: scale(1);
  transition: transform 0.6s ease;
  z-index: -2;
}

.image-service-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 0, 109, 0) 0%,
      rgba(15, 0, 109, 0.25) 65%,
      rgba(15, 0, 109, 0.88) 100%
    );
  transition: background 0.4s ease, opacity 0.4s ease;
  z-index: -1;
}

.image-service-content {
  position: relative;
  width: 100%;
  padding: 2rem;
  color: #ffffff;
  transform: translateY(18px);
  transition: transform 0.4s ease;
}

.image-service-tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-service-card h3 {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  color: #fff;
}

.image-service-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.94);
  max-width: 32ch;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.2rem;
  transition: gap 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.card-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.image-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(15, 0, 109, 0.22);
}

.image-service-card:hover .image-service-content {
  transform: translateY(0);
}

.image-service-card:hover .image-service-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(15, 0, 109, 0.05) 0%,
      rgba(15, 0, 109, 0.34) 38%,
      rgba(15, 0, 109, 0.92) 100%
    );
}

.image-service-card:hover .card-link {
  gap: 0.7rem;
  border-color: rgba(255, 255, 255, 0.9);
}

.image-service-card:hover .card-link::after {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .image-card-grid {
    grid-template-columns: 1fr;
  }

  .image-service-card {
    min-height: 400px;
  }

  .image-service-card h3 {
    font-size: 1.7rem;
  }
}


.image-service-content p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-bottom: 0;
  transform: translateY(12px);
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease,
    margin-bottom 0.3s ease;
}

.image-service-card:hover .image-service-content p {
  max-height: 160px;
  opacity: 1;
  margin-bottom: 1.2rem;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .image-service-content p {
    display: none;
  }

  .image-service-card:hover .image-service-content p {
    display: none;
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transform: translateY(12px);
  }
}



.full-span {
  grid-column: 1 / -1;
}

.quote-form,
.contact-form-card {
  width: 100%;
}

.quote-form fieldset {
  margin: 1.4rem 0 1.2rem;
  padding: 0;
  border: 0;
}

.quote-form legend {
  margin-bottom: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

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

.service-pill {
  display: block;
  cursor: pointer;
}

.service-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 0, 109, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fb 100%);
  color: #1f2430;
  font-weight: 600;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.service-pill:hover span {
  transform: translateY(-2px);
  border-color: rgba(15, 0, 109, 0.4);
  box-shadow: 0 12px 24px rgba(15, 0, 109, 0.08);
}

.service-pill input:checked + span {
  color: #ffffff;
  background: linear-gradient(135deg, #0f006d 0%, #5f6db0 55%, #ffff 100%);
  box-shadow: 0 14px 28px rgba(15, 0, 109, 0.2);
}

.turnstile-wrap {
  margin-top: 1.25rem;
}

.form-status {
  margin-top: 1rem;
  min-height: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #0f6b2d;
}

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

.contact-form-card {
  padding: 2rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 0, 109, 0.08);
}

@media (max-width: 767px) {
  .service-choices {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.2rem;
    border-radius: 18px;
  }
}




.service-list-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-row-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 2rem;
  align-items: stretch;
  padding: 1.5rem;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 0, 109, 0.08);
  border: 1px solid rgba(15, 0, 109, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-row-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 0, 109, 0.12);
}

.service-row-media {
  min-height: 320px;
  height: 100%;
}

.service-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-content h3 {
  margin-bottom: 0.9rem;
}

.service-row-content p {
  margin-bottom: 1rem;
  max-width: 62ch;
}

.service-row-content .check-list {
  margin-top: 0.3rem;
}

@media (max-width: 991px) {
  .service-row-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.2rem;
  }

  .service-row-media {
    min-height: 260px;
  }
}


.direct-contact-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-mini-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 0, 109, 0.08);
  box-shadow: 0 14px 32px rgba(15, 0, 109, 0.08);
  text-align: center;
}

.contact-mini-card i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.contact-mini-card span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #667085;
}

.contact-mini-card strong,
.contact-mini-card a,
.contact-mini-card small {
  display: block;
}

.contact-mini-card strong,
.contact-mini-card a {
  font-size: 1rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.contact-mini-card small {
  margin-top: 0.3rem;
  color: #667085;
}

@media (max-width: 991px) {
  .direct-contact-layout {
    grid-template-columns: 1fr;
  }
}