/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary:      #1a3a6b;
  --color-accent:       #1a56a0;
  --color-accent-light: #2d7dd2;
  --color-navy-btn:     #1e3a72;
  --color-bg:           #ffffff;
  --color-bg-dark:      #0f1623;
  --color-bg-section:   #f5f7fa;
  --color-text:         #1a1a2e;
  --color-text-muted:   #5a6478;
  --color-border:       #dde3ed;
  --color-white:        #ffffff;
  --font-main:          'Satoshi', sans-serif;
  --radius-sm:          6px;
  --radius-md:          12px;
  --radius-lg:          20px;
  --radius-pill:        100px;
  --shadow-card:        0 2px 24px rgba(0,0,0,0.07);
  --shadow-hover:       0 8px 40px rgba(0,0,0,0.13);

  --logo-row-h:         200px;
  --nav-row-h:          52px;

  --container-max:      1160px;
  --container-pad:      clamp(20px, 4vw, 60px);
  --transition:         0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.btn--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  padding: 17px 34px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.96);
  background: #284b92;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}

.btn--hero:hover {
  background: #284b92;
  border-color: rgba(255,255,255,0.96);
  transform: none;
  box-shadow: none;
}

.btn--submit {
  padding: 15px;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 4px 16px rgba(26,86,160,0.2);
}

.btn--submit:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,86,160,0.32);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: static;
  background: var(--color-white);
  width: 100%;
}

.header__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--logo-row-h);
  border-bottom: 1px solid var(--color-border);
}

.header__logo-img {
  height: 160px;
  width: auto;
}

.header__nav-row {
  height: var(--nav-row-h);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.header__nav-row--no-border {
  border-bottom: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 52px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--color-primary);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav__link:hover { color: var(--color-accent); }
.nav__link.active { color: var(--color-primary); font-weight: 600; }
.nav__link.active::after,
.nav__link:hover::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: var(--container-pad);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 545px;
  min-height: 545px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(20, 35, 70, 0.88) 0%,
      rgba(20, 35, 70, 0.76) 40%,
      rgba(20, 35, 70, 0.42) 70%,
      rgba(20, 35, 70, 0.18) 100%
    );
}

.hero .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(48px, 17vw, 330px);
  padding-right: 24px;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  text-align: left;
  transform: translateY(8px);
}

.hero__title {
  margin: 0 0 18px;
  max-width: 540px;
  font-size: clamp(3.2rem, 4.1vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero__title-break,
.hero__subtitle-break {
  display: block;
}

.hero__subtitle {
  margin: 0 0 30px;
  max-width: 460px;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255,255,255,0.94);
}

/* ============================================================
   INTRO COPY
   ============================================================ */
.intro-copy {
  background: #ffffff;
  padding: 58px 0 54px;
}

.intro-copy__inner {
  display: flex;
  justify-content: center;
}

.intro-copy__text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #3a3a3d;
}

/* ============================================================
   ABOUT BAND
   ============================================================ */
.about-band {
  background: #284f97;
  padding: 46px 0 42px;
}

.about-band__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-band__title {
  margin: 0 0 10px;
  font-size: clamp(2.7rem, 4.5vw, 4rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.about-band__text {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.38;
  font-weight: 400;
  color: rgba(255,255,255,0.97);
}

/* ============================================================
   SERVICES / WHAT WE DO
   ============================================================ */
.services {
  background: #dbe2ec;
  padding: 52px 0 70px;
  color: #3a3a3d;
}

.services__section-title {
  margin: 0 0 38px;
  text-align: center;
  font-size: clamp(2.8rem, 4.4vw, 3rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #3a3a3d;
}

.services__grid {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 92px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.services__img {
  width: 100%;
  height: 500px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.services__content-col {
  max-width: 610px;
}

.services__title {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  color: #3a3a3d;
}

.services__subtitle {
  font-size: 1.20rem;
  color: #44474d;
  margin-bottom: 26px;
  line-height: 1.45;
  max-width: 520px;
}

.services__support-label {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #3a3a3d;
  margin-bottom: 18px;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.services__list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.20rem;
  color: #5a5d64;
  line-height: 1.45;
}

.services__list-icon {
  color: #264d96;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1px;
  flex-shrink: 0;
}

.services__disclaimer {
  font-size: 1rem;
  color: #3f4248;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  background: #dbe2ec;
  padding: 56px 0 70px;
}

.why__section-title {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(2.6rem, 4.2vw, 3rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #3a3a3d;
}

.why__grid {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 70px;
}

.why__card {
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-areas:
    "icon title"
    "icon desc";
  column-gap: 28px;
  row-gap: 8px;
  align-items: start;
  padding: 26px 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  border: 1px solid rgba(38, 77, 150, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: rgba(255,255,255,0.28);
}

.why__icon {
  grid-area: icon;
  width: 72px;
  height: 72px;
  background: #294f97;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.why__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.why__card-title {
  grid-area: title;
  font-size: 1.18rem;
  font-weight: 700;
  color: #3a3a3d;
  margin: 4px 0 0;
  line-height: 1.25;
}

.why__card-desc {
  grid-area: desc;
  font-size: 1rem;
  color: #5f636b;
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: #f3f3f3;
  padding: 56px 0 58px;
}

.contact-section__title {
  margin: 0 0 26px;
  font-size: clamp(2.5rem, 4.2vw, 3rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #3a3a3d;
}

.contact-section__form-wrap {
  max-width: 990px;
  border: 1.5px solid #2b56a0;
  border-radius: 28px;
  padding: 34px 34px 42px;
  background: transparent;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-label {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  color: #3f4248;
}

.form-input {
  font-family: var(--font-main);
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #b9c6da;
  background: #f8f9fb;
  color: #2f3136;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  resize: none;
  width: 100%;
}

.form-input::placeholder {
  color: #8c96a8;
}

.form-input:focus {
  border-color: #2b56a0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(43, 86, 160, 0.08);
}

.form-textarea {
  min-height: 100px;
}

.btn--submit {
  padding: 15px 22px;
  border-radius: 18px;
  border: 1.5px solid #2b56a0;
  background: transparent;
  color: #2b56a0;
  font-size: 0.98rem;
  font-weight: 500;
  width: 100%;
  box-shadow: none;
}

.btn--submit:hover {
  background: #2b56a0;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(43, 86, 160, 0.18);
}

.form-success {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(43, 86, 160, 0.08);
  border: 1px solid rgba(43, 86, 160, 0.22);
  color: #2f3136;
  font-size: 0.97rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #3b3b3b;
  padding: 16px 0 12px;
  border-top: none;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 1180px;
}

.footer__tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  max-width: 760px;
}

.footer__links {
  display: flex;
  justify-content: center;
}

.footer__link {
  font-size: 0.96rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__divider {
  width: 100%;
  max-width: 1100px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 2px 0 4px;
}

.footer__copy {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.45;
}

/* ============================================================
   DOCTOR SECTION
   ============================================================ */
.doctor-section {
  background: #f3f3f3;
  padding: 74px 0 86px;
}

.doctor-section__title {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(2.5rem, 4.2vw, 3.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #3a3a3d;
}

.doctor-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 76px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.doctor-accordion {
  width: 100%;
}

.doctor-accordion__item {
  background: transparent;
  border: 3px solid #264d96;
  border-radius: 14px;
  margin-bottom: 22px;
  overflow: hidden;
}

.doctor-accordion__summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 68px 22px 28px;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 700;
  color: #3d3d40;
}

.doctor-accordion__summary::-webkit-details-marker {
  display: none;
}

.doctor-accordion__summary::before,
.doctor-accordion__summary::after {
  content: '';
  position: absolute;
  right: 28px;
  top: 50%;
  width: 15px;
  height: 2.5px;
  background: #3d3d40;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.doctor-accordion__summary::before {
  transform: translateY(-50%) rotate(45deg);
}

.doctor-accordion__summary::after {
  transform: translateY(-50%) rotate(-45deg);
  right: 18px;
}

.doctor-accordion__item[open] .doctor-accordion__summary::before {
  transform: translateY(-50%) rotate(-45deg);
}

.doctor-accordion__item[open] .doctor-accordion__summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.doctor-accordion__content {
  padding: 0 28px 22px;
}

.doctor-accordion__list {
  list-style: disc;
  padding-left: 18px;
  margin: 2px 0 0;
}

.doctor-accordion__list li {
  font-size: 0.96rem;
  line-height: 1.9;
  color: #57595e;
}

.doctor-accordion__text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #57595e;
}

.doctor-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
}

.doctor-profile__image {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.doctor-profile__name {
  margin: 22px 0 0;
  text-align: center;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #3a3a3d;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-works-section {
  padding: 56px 0 64px;
}

.how-works-section__title {
  margin: 0 0 30px;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #3a3a3d;
}

.how-works-section__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 42px;
}

.how-works-card {
  background: #294f97;
  border-radius: 20px;
  padding: 30px 34px 28px;
  min-height: unset;
  color: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.how-works-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.how-works-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.how-works-card__number {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.96);
  flex-shrink: 0;
}

.how-works-card__heading {
  margin: 4px 0 0;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
}

.how-works-card__desc {
  margin: 0;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
}

/* ============================================================
   PAGE HERO — shared by locations & contact
   ============================================================ */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 55, 0.62);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero__subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.5vw, 1.20rem);
  line-height: 1.55;
  font-weight: 500;
}


/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section {
  background: #ffffff;
  padding: 72px 0 80px;
}

.locations-list {
  max-width: 700px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
}

.loc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.loc-row:first-child {
  border-top: 1px solid var(--color-border);
}

.loc-row__label {
  font-size: 1.15rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #284b92;
  margin-bottom: 8px;
}

.loc-row__address {
  font-size: 1.15rem;
  font-weight: 500;
  color: #284b92;
  line-height: 1.7;
}

.loc-row__map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-row__img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.locations-cta {
  display: flex;
  justify-content: center;
}

.btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 44px;
  border-radius: var(--radius-pill);
  background: #284b92;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(40,75,146,0.18);
}

.btn--cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(40,75,146,0.28);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: #ffffff;
  padding: 40px 0 96px;
}

.faq-section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #3a3a3d;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}

.faq-group__label {
  display: none; /* replaced by faq-section__title */
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #284b92;
  border-radius: 14px;
  overflow: hidden;
  border: none;
}

.faq-item__question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  transition: background var(--transition);
  user-select: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question:hover {
  background: rgba(255,255,255,0.06);
}

.faq-item__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: transform 0.22s ease;
}

/* When open: first item shows up chevron (already pointing up in SVG) */
.faq-item[open] .faq-item__question {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-item__answer {
  padding: 20px 28px 24px;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 45, 0.82);
}

/* Title + form side by side over the image */
.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.contact-hero__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}

.contact-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

.contact-hero__subtitle {
  font-size: 1.20rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 420px;
}

/* Floating form card */
.contact-hero__form-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 16px;
  padding: 32px 28px 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-hero__form-card .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
  display: block;
}

.contact-hero__form-card .form-input {
  background: #ffffff;
  border: none;
  border-radius: 8px;
  color: #2f3136;
  font-size: 0.95rem;
  padding: 12px 14px;
}

.contact-hero__form-card .form-input::placeholder {
  color: #8c96a8;
}

.contact-hero__form-card .form-input:focus {
  outline: 2px solid #284b92;
  box-shadow: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-textarea { min-height: 120px; }

.btn--contact-submit {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: #284b92;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
}

.btn--contact-submit:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

/* Info cards row — sits below form still inside hero */
.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 760px;
  max-width: 100%;
}

.contact-info-card {
  padding: 28px 32px 32px;
}

.contact-info-card--dark {
  background: #284b92;
}

.contact-info-card--blue {
  background: #2196d3;
}

.contact-info-card__icon {
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-info-card__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-info-card__text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.contact-info-card__link {
  color: rgba(255,255,255,0.9);
  transition: opacity var(--transition);
}

.contact-info-card__link:hover { opacity: 0.75; }

.form-success {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-size: 0.95rem;
  text-align: center;
}

/* ============================================================
   LEGAL — Disclaimer & Privacy Policy
   ============================================================ */
.legal-section {
  background: #f5f5f5;
  padding: 72px 0 96px;
}

.legal-container {
  max-width: 860px;
}

.legal-block {
  margin-bottom: 64px;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #3a3a3d;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 32px;
}

.legal-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3a3a3d;
  margin: 28px 0 8px;
}

.legal-body p {
  font-size: 0.95rem;
  color: #57595e;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.legal-list li {
  font-size: 0.95rem;
  color: #57595e;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #284b92;
}
