/* ============================================================
   AL-HABIB REAL ESTATE — CONTACT PAGE CSS (Arabic / RTL)
   Sections: Breadcrumbs · Hero · Info Bar · Body (Form + Sidebar)
             Partners · Social Bar
   All sections use .mah-ct-* BEM prefix.
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --ct-dark-blue:      #0c3144;
  --ct-nav-blue:       #103c55;
  --ct-mid-blue:       #16506e;
  --ct-light-blue:     #b4d2e1;
  --ct-accent-blue:    #589ec1;
  --ct-info-blue:      #1f688f;
  --ct-btn-blue:       #374955;
  --ct-bg-light:       #f8fafc;
  --ct-form-bg:        #e1ecf1;
  --ct-input-bg:       #b4d2e1;
  --ct-card-dark:      #25323d;
  --ct-gold:           #b79e71;
  --ct-gold-dark:      #7f6f33;
  --ct-gold-on:        #3c2f14;
  --ct-body-text:      #282828;
  --ct-muted:          #606060;
  --ct-muted-2:        #9a9a9a;
  --ct-border:         #7f7f7f;
  --ct-white:          #ffffff;
  --ct-section-px:     96px;
  --ct-section-py:     96px;
  --ct-radius:         16px;
  --ct-radius-sm:      8px;
  --ct-transition:     0.3s ease;
}

/* ============================================================
   BREADCRUMBS — .mah-ct-breadcrumbs
   ============================================================ */
.mah-ct-breadcrumbs {
  background-color: var(--ct-nav-blue);
  padding: 12px var(--ct-section-px);
}

.mah-ct-breadcrumbs__inner {
  display: flex;
  align-items: center;
}

.mah-ct-breadcrumbs__current {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #86b8d1;
  padding: 16px 8px;
  line-height: 1.5;
  white-space: nowrap;
}

.mah-ct-breadcrumbs__sep {
  color: #86b8d1;
  opacity: 0.6;
  flex-shrink: 0;
}

[dir="rtl"] .mah-ct-breadcrumbs__sep {
  transform: scaleX(-1);
}

.mah-ct-breadcrumbs__link {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ct-light-blue);
  text-decoration: none;
  padding: 16px 8px;
  opacity: 0.8;
  transition: opacity var(--ct-transition);
  line-height: 1.5;
}

.mah-ct-breadcrumbs__link:hover {
  opacity: 1;
  color: var(--ct-light-blue);
}

/* ============================================================
   HERO SECTION — .mah-ct-hero
   ============================================================ */
.mah-ct-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #d4e1e9;
  direction: rtl;
}

/* Background image */
.mah-ct-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mah-ct-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay — solid base + directional darkening toward the text side */
.mah-ct-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(16, 60, 85, 0.6);
  background-image: linear-gradient(to right, rgba(12, 49, 68, 0) 44.618%, rgba(12, 49, 68, 0.8) 98.473%);
  z-index: 1;
  pointer-events: none;
}

/* Static place card — positioned in the top-left corner of the hero */
.mah-ct-hero__card-wrap {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 302px;
  z-index: 3;
}

.mah-ct-hero__place-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.30);
  padding: 12px 16px 0;
  font-family: 'Work Sans', system-ui, sans-serif;
  direction: ltr;
}

.mah-ct-hero__place-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.mah-ct-hero__place-card-info {
  flex: 1;
  min-width: 0;
}

.mah-ct-hero__place-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mah-ct-hero__place-address {
  font-size: 11px;
  color: #5f6368;
  line-height: 1.4;
  margin: 0;
}

.mah-ct-hero__place-directions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
  padding-top: 2px;
}

.mah-ct-hero__place-directions span {
  font-size: 10px;
  color: #1a73e8;
  white-space: nowrap;
}

.mah-ct-hero__place-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 10px;
}

.mah-ct-hero__place-score {
  font-size: 13px;
  font-weight: 600;
  color: #3c4043;
}

.mah-ct-hero__place-stars {
  display: flex;
  align-items: center;
  gap: 1px;
}

.mah-ct-hero__star {
  width: 13px;
  height: 13px;
  display: block;
}

.mah-ct-hero__place-reviews {
  font-size: 12px;
  color: #5f6368;
}

.mah-ct-hero__place-map-link {
  font-size: 12px;
  color: #1a73e8;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  border-top: 1px solid #e8eaed;
}

.mah-ct-hero__place-map-link:hover {
  text-decoration: underline;
}

/* Centre location pin */
.mah-ct-hero__pin {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 38px;
  height: 51px;
  pointer-events: none;
}

.mah-ct-hero__pin img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Text content – right side in RTL */
.mah-ct-hero__content {
  position: absolute;
  right: 111px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: right;
}

.mah-ct-hero__title {
  font-family: 'Greta Arabic', system-ui, sans-serif;
  font-size: 76px;
  color: var(--ct-white);
  line-height: 1.25;
  letter-spacing: -2.5px;
  margin: 0 0 20px 0;
  white-space: nowrap;
}

.mah-ct-hero__subtitle {
  font-family: '29LT Zarid', system-ui, sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--ct-white);
  line-height: 1.5;
  margin: 0;
  max-width: 472px;
}

/* ============================================================
   CONTACT INFO BAR — .mah-ct-info-bar
   ============================================================ */
.mah-ct-info-bar {
  background-color: var(--ct-dark-blue);
  padding: 48px var(--ct-section-px);
  direction: rtl;
  overflow: hidden;
}

.mah-ct-info-bar__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  direction: ltr; /* contacts fill LEFT, address sits RIGHT */
}

/* Contact methods group */
.mah-ct-info-bar__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.mah-ct-info-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--ct-radius-sm);
  cursor: pointer;
  transition: background var(--ct-transition);
  text-decoration: none;
  flex-shrink: 0;
}

.mah-ct-info-bar__item:hover {
  background: rgba(255,255,255,0.05);
}

.mah-ct-info-bar__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.mah-ct-info-bar__label {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ct-light-blue);
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
}

/* Vertical divider between contact items */
.mah-ct-info-bar__divider {
  width: 1px;
  height: 124px;
  background: rgba(180, 210, 225, 0.3);
  flex-shrink: 0;
}

/* Address + hours block */
.mah-ct-info-bar__address {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  width: 400px;
  flex-shrink: 0;
  text-align: right;
  direction: rtl; /* restore RTL text direction inside the LTR inner */
}

.mah-ct-info-bar__addr-text {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ct-light-blue);
  line-height: 1.5;
  margin: 0;
  white-space: pre-line;
}

.mah-ct-info-bar__hours-text {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ct-light-blue);
  line-height: 1.5;
  margin: 0;
  width: 280px;
}

/* ============================================================
   BODY — .mah-ct-body
   ============================================================ */
.mah-ct-body {
  background: var(--ct-bg-light);
  direction: rtl;
  position: relative;
}

/* Service label row */
.mah-ct-service-label {
  padding: 24px var(--ct-section-px);
  display: flex;
  justify-content: flex-start;
}

.mah-ct-service-label__text {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ct-gold-dark);
  line-height: 1.25;
  letter-spacing: 0px;
}

/* Two-column form row */
.mah-ct-form-row {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  padding: 32px var(--ct-section-px) 96px;
  /* establish a stacking context so the decorative pattern (z-index:-1) sits behind the
     form/sidebar but above the section background */
  position: relative;
  z-index: 0;
}

/* Decorative ornament pattern — bleeds to the page's left edge, behind the form card.
   485x627 matches the Figma "Pattern" frame (node 451:7549); the opaque form card (#e1ecf1)
   covers its right portion, leaving the left ~268px of open space patterned, as in the design. */
.mah-ct-pattern {
  position: absolute;
  left: 0;
  top: 0;
  width: 485px;
  height: 627px;
  background: url('/Content/site/assets/images/contact/pattern.png') no-repeat top left;
  background-size: 485px 627px;
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   FORM CARD — .mah-ct-form
   ============================================================ */
.mah-ct-form {
  width: 612px;
  flex-shrink: 0;
  background: var(--ct-form-bg);
  border-radius: var(--ct-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mah-ct-form__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: right;
  color: var(--ct-dark-blue);
}

.mah-ct-form__title {
  font-family: '29LT Zarid', system-ui, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1.5px;
  margin: 0;
}

.mah-ct-form__subtitle {
  font-family: '29LT Zarid', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Fields group */
.mah-ct-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  cursor: pointer;
}

.mah-ct-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mah-ct-input {
  width: 100%;
  height: 56px;
  background: var(--ct-input-bg);
  border: 1px solid var(--ct-input-bg);
  border-radius: var(--ct-radius-sm);
  padding: 16px;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ct-mid-blue);
  text-align: right;
  direction: rtl;
  outline: none;
  transition: border-color var(--ct-transition);
  box-sizing: border-box;
  display: block;
}

.mah-ct-input::placeholder {
  color: var(--ct-mid-blue);
  font-family: 'Work Sans', system-ui, sans-serif;
}

.mah-ct-input:focus {
  border-color: var(--ct-accent-blue);
  background: var(--ct-input-bg);
}

.mah-ct-input--file {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.mah-ct-file-icon {
  flex-shrink: 0;
  color: var(--ct-mid-blue);
}

.mah-ct-file-label {
  flex: 1;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ct-mid-blue);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mah-ct-select-wrap {
  position: relative;
  width: 100%;
}

.mah-ct-select {
  appearance: none;
  -webkit-appearance: none;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 48px;
  line-height: 56px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.mah-ct-select-chevron {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  color: var(--ct-mid-blue);
}

.mah-ct-select option {
  background: #fff;
  color: #0c3144;
  direction: rtl;
}

.mah-ct-textarea-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 150px;
}

.mah-ct-textarea {
  width: 100%;
  flex: 1;
  min-height: 80px;
  min-width: 240px;
  background: var(--ct-input-bg);
  border: 1px solid var(--ct-accent-blue);
  border-radius: var(--ct-radius-sm);
  padding: 16px;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ct-mid-blue);
  text-align: right;
  direction: rtl;
  outline: none;
  resize: vertical;
  transition: border-color var(--ct-transition);
  box-sizing: border-box;
  display: block;
}

.mah-ct-textarea::placeholder {
  color: var(--ct-mid-blue);
  font-family: 'Work Sans', system-ui, sans-serif;
}

.mah-ct-textarea:focus {
  border-color: var(--ct-mid-blue);
}

/* Form actions */
.mah-ct-form__actions {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
}

.mah-ct-btn-submit {
  width: 200px;
  height: 48px;
  background: var(--ct-btn-blue);
  border: none;
  border-radius: var(--ct-radius-sm);
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ct-white);
  cursor: pointer;
  transition: background var(--ct-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0px 1px 2px rgba(35, 47, 55, 0.05);
}

.mah-ct-btn-submit:hover {
  background: var(--ct-mid-blue);
}

.mah-ct-btn-reset {
  height: 48px;
  background: transparent;
  border: none;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ct-body-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px 16px 16px;
  border-radius: var(--ct-radius-sm);
  transition: opacity var(--ct-transition);
  flex-shrink: 0;
}

.mah-ct-btn-reset:hover {
  opacity: 0.7;
}

.mah-ct-btn-reset__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   SIDEBAR — .mah-ct-sidebar
   ============================================================ */
.mah-ct-sidebar {
  width: 400px;
  flex-shrink: 0;
  padding: 24px 0;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.mah-ct-sidebar__instruction {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ct-muted-2);
  line-height: 1.5;
  text-align: right;
  margin: 0;
  width: 100%;
}

/* Accordion */
.mah-ct-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mah-ct-acc-item {
  border-bottom: 1px solid var(--ct-border);
  width: 100%;
}

/* Active (expanded) accordion item */
.mah-ct-acc-item--active {
  padding: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mah-ct-acc-item--active .mah-ct-acc__title {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.mah-ct-acc-item--active .mah-ct-acc__btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: var(--ct-radius-sm);
  padding: 0;
}

.mah-ct-acc-item--active .mah-ct-acc__btn img,
.mah-ct-acc-item--active .mah-ct-acc__btn svg {
  width: 20px;
  height: 20px;
}

.mah-ct-acc__name {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ct-body-text);
  line-height: 1.5;
  text-align: right;
  flex: 1;
  margin: 0;
}

.mah-ct-acc__desc {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ct-muted);
  line-height: 1.5;
  text-align: right;
  margin: 0;
}

/* Collapsed (inactive) accordion items */
.mah-ct-acc-item--inactive {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 16px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--ct-transition);
  text-align: right;
  justify-content: flex-end;
}

.mah-ct-acc-item--inactive:hover {
  opacity: 0.8;
}

.mah-ct-acc-item--inactive .mah-ct-acc__name {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ct-body-text);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   PARTNERS / CTA SECTION — .mah-ct-partners
   ============================================================ */
.mah-ct-partners {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
  direction: rtl;
}

.mah-ct-partners__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #d9d9d9;
}

.mah-ct-partners__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mah-ct-partners__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(205, 182, 142, 0) 42%, rgba(205, 182, 142, 0.30) 96%);
  z-index: 1;
}

/* Dark card on the left side (visually; DOM first = right in RTL = left visual in this case) */
.mah-ct-partners__card {
  position: absolute;
  right: 995px;
  top: 50%;
  transform: translateY(-50%);
  width: 381px;
  background: var(--ct-card-dark);
  border-radius: var(--ct-radius);
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  z-index: 2;
}

.mah-ct-partners__card-title {
  font-family: 'Neco', system-ui, serif;
  font-size: 28px;
  font-weight: 700;
  color: #b4cad8;
  line-height: 1.2;
  letter-spacing: -0.56px;
  margin: 0;
  direction: ltr;
  text-align: left;
}

.mah-ct-partners__card-body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #f8fbfc;
  line-height: normal;
  margin: 0;
  direction: ltr;
  text-align: left;
}

.mah-ct-partners__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 16px 24px;
  background: var(--ct-gold);
  border-radius: var(--ct-radius-sm);
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ct-gold-on);
  text-decoration: none;
  box-shadow: 0px 1px 2px rgba(35, 47, 55, 0.05);
  transition: opacity var(--ct-transition);
  align-self: flex-start;
  direction: ltr;
  white-space: nowrap;
}

.mah-ct-partners__card-btn:hover {
  opacity: 0.85;
  color: var(--ct-gold-on);
}

/* ============================================================
   RESPONSIVE — TABLET (≤1200px)
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --ct-section-px: 48px;
  }

  .mah-ct-hero__title {
    font-size: 56px;
  }

  .mah-ct-hero__subtitle {
    font-size: 22px;
    max-width: 360px;
  }

  .mah-ct-hero__content {
    right: 48px;
  }

  .mah-ct-info-bar__inner {
    gap: 40px;
  }

  .mah-ct-info-bar__address {
    width: 300px;
  }

  .mah-ct-form-row {
    gap: 40px;
    padding: 32px 48px 64px;
  }

  .mah-ct-form {
    width: 100%;
    flex: 1;
    min-width: 0;
  }

  .mah-ct-sidebar {
    width: 320px;
  }

  .mah-ct-partners__card {
    right: auto;
    left: 40px;
    padding: 48px;
    gap: 48px;
    width: 340px;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px) — info-bar only
   ============================================================ */
@media (max-width: 960px) {
  /* Hide the decorative pattern where the form widens and would overlap it */
  .mah-ct-pattern {
    display: none;
  }

  .mah-ct-info-bar__inner {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 32px;
  }

  .mah-ct-info-bar__contacts {
    width: 100%;
    justify-content: space-evenly;
    gap: 8px;
  }

  .mah-ct-info-bar__divider {
    display: none;
  }

  .mah-ct-info-bar__address {
    width: 100%;
  }

  .mah-ct-info-bar__hours-text {
    width: auto;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --ct-section-px: 20px;
  }

  .mah-ct-breadcrumbs {
    padding: 8px var(--ct-section-px);
  }

  .mah-ct-hero {
    height: auto;
    min-height: 300px;
    padding-bottom: 40px;
  }

  .mah-ct-hero__content {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    padding: 40px var(--ct-section-px) 0;
    text-align: right;
  }

  .mah-ct-hero__title {
    font-size: 40px;
    letter-spacing: -1px;
    white-space: normal;
  }

  .mah-ct-hero__subtitle {
    font-size: 18px;
    max-width: 100%;
  }

  .mah-ct-hero__card-wrap {
    top: auto;
    left: auto;
    bottom: 24px;
    right: var(--ct-section-px);
  }

  .mah-ct-hero__map-card {
    display: none;
  }

  .mah-ct-hero__pin {
    display: none;
  }

  /* Info bar — mobile */
  .mah-ct-info-bar {
    padding: 32px var(--ct-section-px);
  }

  /* 2-per-row grid, items can shrink */
  .mah-ct-info-bar__contacts {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 8px;
  }

  .mah-ct-info-bar__item {
    flex-basis: calc(50% - 4px);
    flex-shrink: 1;
    min-width: 0;
    padding: 10px 8px;
  }

  .mah-ct-info-bar__icon {
    width: 36px;
    height: 36px;
  }

  /* Allow labels to wrap so they don't burst the container */
  .mah-ct-info-bar__label {
    white-space: normal;
    font-size: 12px;
    word-break: break-word;
    max-width: 100%;
  }

  .mah-ct-info-bar__addr-text {
    font-size: 16px;
  }

  .mah-ct-info-bar__hours-text {
    font-size: 14px;
  }

  /* Form section stack on mobile */
  .mah-ct-form-row {
    flex-direction: column;
    padding: 24px var(--ct-section-px) 48px;
    gap: 32px;
  }

  .mah-ct-form {
    width: 100%;
  }

  .mah-ct-sidebar {
    width: 100%;
    position: static;
  }

  .mah-ct-sidebar__instruction {
    font-size: 18px;
  }

  .mah-ct-form__title {
    font-size: 28px;
  }

  .mah-ct-form__subtitle {
    font-size: 16px;
    white-space: normal;
  }

  .mah-ct-form__actions {
    flex-direction: column;
  }

  /* Partners */
  .mah-ct-partners {
    height: auto;
    min-height: 500px;
  }

  .mah-ct-partners__card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 40px var(--ct-section-px);
    gap: 32px;
  }
}

/* ── Submission success banner ── */
.mah-ct-alert {
  max-width: 1248px;
  margin: 0 auto 24px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.6;
}
.mah-ct-alert--success {
  background: #e6f4ea;
  color: #1e7e34;
  border: 1px solid #b7dfc2;
}
