/* Base theme variables and defaults. */
:root{
  --brand: #0B2D5C;
  --brand-dark: #082043;
  --accent: #FF7A00;
  --ink: #0B2D5C;
  --muted: #385983;
  --bg: #ffffff;
  --surface: #ffffff;
  --radius: 16px;
  --container: 1120px;
  --space: 16px;
  --space-lg: 32px;
  --space-xl: 64px;

  /* Sticky header height for scroll offset */
  --header: 72px;

  /* Spacing rhythm */
  --section-gap: clamp(48px, 8vw, 88px);
  --section-gap-xl: clamp(72px, 10vw, 128px);

  /* Shadows */
  --shadow-card: 0 10px 24px rgba(11,45,92,.12);
  --shadow-card-hover: 0 14px 30px rgba(11,45,92,.2);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0; overflow-x: hidden; width:100%;}

/* Keep media within the viewport */
img, svg, video{ max-width: 100%; height: auto; display: block; }

body{
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

/* Show hand cursor for interactive elements. */
a, button, .btn{ cursor: pointer; }
input[type="checkbox"]{ cursor: pointer; }

.container{max-width:var(--container);margin-inline:auto;padding-inline:var(--space)}

.container--wide {
  max-width: min(1280px, 94vw);
}

.site-header{
  position: sticky; top:0; z-index:30;
  background: var(--bg); border-bottom:1px solid rgba(11,45,92,.18);
  padding-top: env(safe-area-inset-top);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding-block:10px; }
.logo{ display:flex; align-items:center; gap:8px; font-weight:900; }


/* Top navigation layout */
.menu{ display:flex; align-items:center; gap:18px; margin:0; padding:0; list-style:none; }
.nav__link{
  text-decoration:none; color: var(--ink);
  padding:8px 10px; border-radius: 10px;
  transition: background-color 0.25s ease;
}
.nav__link:hover{ background: rgba(11,45,92,.08); }

/* Primary nav CTA styling */
.btn--brand{ background: var(--accent); color: var(--bg); }
.nav__cta{ padding:10px 16px; border-radius: 999px; }

.btn{
  display:inline-block; border:0; border-radius: var(--radius);
  padding: 12px 20px; font-weight: 700; text-decoration:none; cursor:pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--brand{ background: var(--accent); color: var(--bg); }
.btn--brand:hover { background: var(--brand); }

.site-header .nav{
  max-width: none;
  width: 100%;
  padding-inline: 16px;
  display:flex; align-items:center; justify-content:space-between;
}
.logo{font-weight: 900}

/* Keep hero and brand typography consistent */
.logo,
.hero__title,
.hero__subtitle{ font-family: inherit; }

/* Mobile nav toggle button */
.nav__toggle{
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
}
.nav__toggle:focus{ outline: 3px solid rgba(255,122,0,.3); }

@media (max-width: 880px){
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .menu{
    position: absolute;
    inset-inline: 0;
    top: calc(100% + 6px);
    background: var(--bg);
    border-top: 1px solid rgba(11,45,92,.18);
    box-shadow: 0 10px 24px rgba(11,45,92,.12);
    padding: 10px 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 25;
  }
  .menu.is-open{ display:flex; }
  .nav__cta{ align-self: stretch; text-align:center; }
}

/* Footer layout and links */
.site-footer{
  background: var(--brand-dark);
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: clamp(28px, 5vw, 44px);
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.25fr .95fr 1.1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  padding-bottom: clamp(22px, 4vw, 32px);
}

.footer__col{
  min-width: 0;
}

.footer__logo-ring{
  width: clamp(128px, 10.5vw, 156px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.42);
  overflow: hidden;
  display: block;
}

.footer__logo{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.footer__tagline{
  margin: 14px 0 0;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.02rem;
}

.footer__serving{
  margin: 8px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 0.94rem;
}

.footer__heading{
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.06rem;
  font-weight: 800;
}

.footer__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer__links a{
  color: rgba(255,255,255,.9);
  text-decoration: none;
}

.footer__links a:hover,
.footer__links a:focus{
  color: #F57C00;
  text-decoration: underline;
}

.footer__line{
  margin: 0 0 10px;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
}

.footer__line a{
  color: rgba(255,255,255,.96);
  text-decoration: none;
}

.footer__line a:hover,
.footer__line a:focus{
  color: #F57C00;
  text-decoration: underline;
}

.footer__label{
  color: #ffffff;
  font-weight: 700;
}

.footer__bar{
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
}

.footer__copy{
  text-align: center;
  color: rgba(255,255,255,.82);
  font-size: .85rem;
}

@media (max-width: 900px){
  .footer__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Base section spacing and offsets */
#about { scroll-margin-top: var(--header); }

.section{ padding-block: var(--section-gap); }
@media (max-width: 640px){ .section{ padding-block: var(--space-lg); } }

.section--after-hero {
  padding-top: var(--section-gap-xl);
  padding-bottom: var(--section-gap);
  position: relative;
}

.section--after-hero::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(11,45,92,.18), transparent);
}

/* Tighten spacing between About and Services */
#about + #services { padding-top: calc(var(--section-gap) * 0.2); }
.section__title {
  font-family: inherit;
  font-weight: 700;
  font-style: normal;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 64px);
  margin-bottom: 14px; 
  text-align: left;
}

/* Section body text */
.section__text {
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
   max-width: 85ch;
  margin: 0;             
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.85;
  color: var(--muted);
  text-align: left;   
}

/* About + differentiators section */
.choose-a2b{
  background: #ffffff;
}

.choose-a2b__title{
  margin: 0;
  text-align: center;
  color: var(--brand);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.12;
}

.choose-a2b__layout{
  margin-top: clamp(34px, 4.4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.choose-a2b__about{
  min-width: 0;
}

.choose-a2b__logo-inline{
  display: block;
  width: 50%;
  max-width: 100%;
  height: auto;
  margin-top: clamp(18px, 2.4vw, 28px);
  margin-inline: auto;
}

.choose-a2b__text{
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.8;
}

.choose-a2b__diffs{
  display: grid;
  gap: 14px;
}

.choose-a2b__item{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0 12px 14px;
  border-left: 3px solid rgba(245,124,0,.7);
}

.choose-a2b__icon{
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.choose-a2b__copy{
  min-width: 0;
}

.choose-a2b__item-title{
  margin: 0;
  color: var(--brand);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.3;
  font-weight: 700;
}

.choose-a2b__item-text{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
}

@media (max-width: 860px){
  .choose-a2b__layout{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .choose-a2b__text{
    max-width: none;
  }
}

/* Hero section layout and background */
.hero{
  position: relative;
  min-block-size: clamp(54vh, 64vh, 72vh);
  display: grid;
  place-items: center;
  overflow: clip;
}

/* Hero background image layer */
.hero__bg{
  position: absolute; inset: 0;
  background-image: url("assets/media/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 46% 30%;
  filter: blur(2px);
  transform: scale(1.02);
}


.hero__scrim{
  position:absolute; inset:0;
 background: linear-gradient(to bottom, rgba(11,45,92,0.16) 0%, rgba(11,45,92,0.58) 100%);}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--bg);
  max-width: 800px;
  margin-inline: auto;
  padding: 0;
}

/* Hero title typography and single-line clamp */
.hero__title{
  margin: 0 0 24px;
  font-size: clamp(40px, 6.2vw, 96px);
  font-weight: 900;
  letter-spacing: 0.1px;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(11,45,92,.45);
}

.hero__subtitle{
  margin: 8px 0 0;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--bg);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(11,45,92,.7);
  display: inline-block;
  padding: 0;
}

.hero__subtitle::after{
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 12px auto 0;
  background: #F57C00;
  border-radius: 999px;
}

.hero__subline{
  margin: 14px 0 0;
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255,255,255,.95);
}

/* Hero CTA layout */
.hero__cta {
  margin-top: 80px;
  display: flex;
  gap: 46px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__cta .btn {
  font-size: 1.1rem;
  padding: 16px 32px;
  transform-origin: center;
  box-shadow: 0 10px 22px rgba(255,122,0,.32);
  transition: background-color .24s ease, transform .22s ease, box-shadow .24s ease;
}

.hero__cta .btn.is-breathing{
  animation: heroCtaBreath 2s ease-in-out 1;
}

.hero__cta .btn:hover{
  animation: none;
}

.hero__trust{
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--bg);
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 18px);
  text-shadow: 0 2px 6px rgba(11,45,92,.55);
}

.hero__trust li{
  display: inline-flex;
  align-items: center;
}

.hero__trust li + li::before{
  content: "•";
  margin-right: 14px;
  color: var(--accent);
}

@keyframes heroCtaBreath {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 22px rgba(255,122,0,.32);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 14px 28px rgba(255,122,0,.4);
  }
}

/* Smooth anchor scroll offset for sticky header */
.hero, .section{ scroll-margin-top: var(--header); }

/* Responsive overrides */
@media (max-width: 720px){
}

/* Motion-reduction settings. */
@media (prefers-reduced-motion: reduce){
  .hero__cta .btn,
  .hero__cta .btn.is-breathing{ animation: none !important; }
}

/* Customer reviews section */
#reviews {
  scroll-margin-top: calc(var(--header) + 8px);
}

.testimonials{
  background: linear-gradient(180deg, rgba(11,45,92,.03) 0%, #ffffff 100%);
}

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

.testimonials__title{
  margin: 0;
  color: var(--brand);
  font-size: clamp(34px, 4.3vw, 52px);
  line-height: 1.1;
  font-weight: 800;
}

.testimonials__subline{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
}

.google-wordmark{
  display: inline-flex;
  align-items: baseline;
  gap: .02em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.google-wordmark__g1,
.google-wordmark__g2{ color: #4285F4; }
.google-wordmark__o1,
.google-wordmark__e{ color: #EA4335; }
.google-wordmark__o2{ color: #FBBC05; }
.google-wordmark__l{ color: #34A853; }

.testimonials__rating{
  margin: clamp(26px, 4vw, 38px) auto 0;
  max-width: 460px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(11,45,92,.08);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(11,45,92,.09);
  padding: clamp(18px, 2.6vw, 24px);
}

.testimonials__stars{
  color: var(--accent);
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: 3px;
  line-height: 1;
}

.testimonials__rating-value{
  margin: 12px 0 0;
  color: var(--brand);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 800;
}

.testimonials__rating-base{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 17px);
}

.testimonials__grid{
  margin-top: clamp(26px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.review-card{
  background: #ffffff;
  border: 1px solid rgba(11,45,92,.08);
  border-radius: 14px;
  padding: clamp(18px, 2vw, 22px);
  box-shadow: 0 8px 20px rgba(11,45,92,.09);
}

.review-card__stars{
  margin-bottom: 10px;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1;
}

.review-card__text{
  margin: 0;
  color: var(--brand);
  line-height: 1.7;
  font-size: clamp(15px, 1.2vw, 17px);
}

.review-card__name{
  margin: 14px 0 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.98rem;
}

.testimonials__actions{
  margin-top: clamp(24px, 3.5vw, 34px);
  text-align: center;
}

.btn--google-outline{
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  border-radius: 999px;
  padding: 12px 24px;
}

.btn__ext-icon{
  margin-left: 6px;
  font-size: 1.05em;
  line-height: 1;
}

.btn--google-outline:hover{
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

@media (hover: hover) and (pointer: fine){
  .review-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(11,45,92,.14);
  }
}

@media (max-width: 860px){
  .testimonials__grid{
    grid-template-columns: 1fr;
  }
}

/* Services and team sections */
.services{
  background: #EEF2F7;
  padding-block: clamp(72px, 9vw, 112px);
}

.services__head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

.services__title{
  margin: 0;
  color: #0B2D5C;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.1;
  font-weight: 800;
}

.services__intro{
  margin: 14px 0 0;
  color: #0B2D5C;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
}

.services__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.service-card{
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(15,23,42,.1);
  border: 1px solid rgba(15,23,42,.06);
  transition: transform .2s ease-out, box-shadow .2s ease-out;
}

.service-card__icon{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #0B2D5C;
}

.service-card__title{
  margin: 14px 0 8px;
  color: #0B2D5C;
  font-size: 1.2rem;
  line-height: 1.3;
}

.service-card__text{
  margin: 0;
  color: #0B2D5C;
  font-size: 1rem;
  line-height: 1.65;
}

.services__cta{
  text-align: center;
  margin-top: clamp(28px, 4vw, 46px);
}

.services__cta-text{
  margin: 0 0 14px;
  color: #0B2D5C;
  font-size: 1rem;
}

.services__cta-btn{
  display: inline-block;
  text-decoration: none;
  background: #F57C00;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  padding: 21px 42px;
  transition: background-color .24s ease, transform .24s ease, box-shadow .24s ease;
  box-shadow: 0 8px 20px rgba(245,124,0,.24);
}

.services__cta-btn:focus-visible{
  outline: 3px solid rgba(245,124,0,.35);
  outline-offset: 3px;
}

@media (max-width: 980px){
  .services__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px){
  .services__grid{ grid-template-columns: 1fr; }
  .service-card{ padding: 20px 18px; }
}

@media (hover: hover) and (pointer: fine){
  .service-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15,23,42,.16);
  }

  .services__cta-btn:hover{
    background: #DE7000;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(245,124,0,.38);
  }
}

.team { background: linear-gradient(180deg, #ffffff 0%, rgba(11,45,92,.04) 100%); }
.team__grid{
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
@media (max-width: 740px){ .team__grid{ grid-template-columns: 1fr; } }

.team__member{ text-align: center; direction: ltr; }
.team__name{
  margin: 12px 0 0;
  font-weight: 800;
  color: var(--brand);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.2;
}
.team__photo-frame{
  --team-photo-size: clamp(220px, 28vw, 300px);
  width: var(--team-photo-size);
  height: var(--team-photo-size);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 50%;
  padding: 10px;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  box-shadow: 0 18px 40px rgba(11,45,92,.3), 0 6px 16px rgba(11,45,92,.12);
  overflow: hidden;
}
.team__photo{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  box-shadow: 0 10px 24px rgba(11,45,92,.16);
}

.team__bio{ margin: 14px 0 0; color: var(--muted); font-size: clamp(16px, 1.4vw, 18px); }

.features{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 980px){ .features{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .features{ grid-template-columns: 1fr; } }

.feature-card{
  direction: ltr; text-align: left;
  padding: 20px 18px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--bg);
  box-shadow: var(--shadow-card);
  will-change: transform;
  transform: none;
  transition: transform .22s cubic-bezier(.22,.61,.36,1), box-shadow .22s ease;
}
.feature-card:hover{ box-shadow: var(--shadow-card-hover); }
.feature__title{ margin:0 0 6px; font-weight:800; font-size:1.15rem; }
.feature__text{ margin:0; color:var(--muted); line-height:1.7; }

/* Feature card accent gradients */
.feature-card--1{ background: linear-gradient(135deg, rgba(11,45,92,.08) 0%, rgba(11,45,92,.14) 100%); }
.feature-card--2{ background: linear-gradient(135deg, rgba(255,122,0,.08) 0%, rgba(255,122,0,.16) 100%); }
.feature-card--3{ background: linear-gradient(135deg, rgba(11,45,92,.08) 0%, rgba(255,122,0,.12) 100%); }
.feature-card--4{ background: linear-gradient(135deg, rgba(255,122,0,.06) 0%, rgba(11,45,92,.12) 100%); }

/* About CTA styles */
.about__cta{ display:flex; justify-content:center; margin-top: 72px; }
.btn--xl{ padding: 22px 46px; font-size: 1.3rem; border-radius: 999px; }

/* Animated CTA button treatment */
.about__cta .btn--brand{
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  box-shadow: 0 14px 30px rgba(11,45,92,.3), inset 0 0 0 1px rgba(255,255,255,.35);
  position: relative;
  animation: breath 2.4s ease-in-out infinite;
}
.about__cta .btn--brand::after{
  content:""; position:absolute; inset:0; border-radius:inherit;
  background: linear-gradient(120deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.0) 100%);
  transform: translateX(-120%);
  animation: shine 3.8s ease-in-out infinite;
  pointer-events:none;
}
.about__cta .btn--brand:hover{ filter: brightness(1.04); }

@keyframes breath{ 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.035); } }
@keyframes shine{ 0%{ transform: translateX(-120%); } 100%{ transform: translateX(120%); } }

@media (prefers-reduced-motion: reduce){
  .feature-card{ transition: none; }
  .feature-card:hover{ transform:none; box-shadow: 0 8px 20px rgba(11,45,92,.12); }
}

/* Contact section and form layout */
.contact { background: linear-gradient(180deg, rgba(11,45,92,.05) 0%, #ffffff 100%); }
.contact { margin-top: var(--section-gap-xl); }
.contact .section__title{ margin-bottom: 8px; color: var(--brand); }
.contact .section__text { margin-bottom: 24px; max-width: 68ch; color: var(--muted); }

.contact__layout{
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.contact__info{
  background: #ffffff;
  border: 1px solid rgba(11,45,92,.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(11,45,92,.08);
  padding: clamp(18px, 2.3vw, 24px);
  color: var(--brand);
}

.contact-info__item + .contact-info__item{
  margin-top: 18px;
}

.contact-info__label{
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info__icon{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: rgba(11,45,92,.08);
  flex: 0 0 20px;
}

.contact-info__phone{
  display: inline-block;
  margin-top: 6px;
  color: var(--brand);
  text-decoration: none;
  font-size: clamp(1.2rem, 1.8vw, 1.42rem);
  line-height: 1.3;
  font-weight: 800;
}

.contact-info__email{
  display: inline-block;
  margin-top: 6px;
  color: var(--brand);
  text-decoration: none;
  font-size: clamp(1rem, 1.4vw, 1.06rem);
  line-height: 1.4;
  font-weight: 600;
}

.contact-info__detail{
  margin: 6px 0 0;
  color: var(--brand);
  line-height: 1.6;
}

.contact-info__phone:hover,
.contact-info__phone:focus,
.contact-info__email:hover,
.contact-info__email:focus{
  text-decoration: underline;
}

@media (min-width: 921px){
  .contact-info__item--call{
    padding: 6px 0 8px;
  }

  .contact-info__item--call .contact-info__label{
    font-size: 1.02rem;
  }

  .contact-info__item--call .contact-info__phone{
    font-size: clamp(1.42rem, 2.2vw, 1.7rem);
  }
}

.contact__form{
  direction: ltr; text-align: left;
  width: 100%;
  margin-inline: 0;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px clamp(18px, 3vw, 28px) 26px;
  position: relative; overflow: hidden;
}

.form__row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px; }
@media (max-width: 720px){ .form__row{ grid-template-columns: 1fr; } }

.field{ display:flex; flex-direction: column; gap: 6px; }
.field label{ font-weight: 700; font-size: .95rem; color: var(--ink); }

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

.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1.5px solid rgba(11,45,92,.22);
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: 3px solid rgba(255,122,0,.25);
  border-color: var(--accent);
}

.form__actions{ display:flex; align-items:center; gap: 16px; margin-top: 22px; justify-content: flex-start; }
.form__actions.submitted{ justify-content: flex-start; }
.form__status{ color: var(--brand); font-weight: 700; }
.form__note{ color: var(--muted); font-size: .9rem; margin-top: 10px; }

.form__consent-inline{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
}

.form__consent-inline input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 0;
  flex: 0 0 18px;
  accent-color: var(--brand);
}

.form__consent-inline a{
  color: var(--brand);
  font-weight: 700;
}

/* Contact CTA emphasis */
.contact .btn--brand{
  padding: 14px 28px;
  font-size: 1.02rem;
  border-radius: 999px;
  background: #F57C00;
  color: #ffffff;
  transition: background-color .2s ease;
}
.contact .btn--brand:hover{ background: var(--brand); transform: none; }

.contact__reassurance{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Success submission transitions */
.form__actions .btn.is-hidden{ opacity: 0; pointer-events: none; }

.form__status{ opacity: 0; position: relative; }
.form__status::before{
  content: '✓';
  display: inline-flex; align-items:center; justify-content:center;
  width: 22px; height: 22px; margin-inline-start: 8px;
  background: var(--accent); color:var(--bg); border-radius: 50%; font-weight:900; font-size: 14px;
  box-shadow: 0 4px 10px rgba(255,122,0,.35);
  opacity: 0;
}
.form__actions.submitted .form__status{ opacity: 1; }
.form__actions.submitted .form__status::before{ opacity: 1; }

.contact__form.submitted{ box-shadow: var(--shadow-card); }
.contact__form.submitted > *:not(.form__success){ opacity: 0; pointer-events: none; }

/* Centered success overlay */
.form__success{
  position: absolute; inset: 0; display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 12px; text-align: center;
  opacity: 0; pointer-events: none; z-index: 1;
}
.form__success-icon{
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--accent); color:var(--bg); display:grid; place-items:center; font-size: 44px; font-weight: 900;
  box-shadow: 0 10px 24px rgba(255,122,0,.35);
}
.form__success-text{ color: var(--brand); font-weight: 800; font-size: clamp(18px, 2.2vw, 24px); }
.contact__form.submitted .form__success{ opacity: 1; }

@media (max-width: 920px){
  .contact__layout{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__form{
    width: 100%;
  }
}
