/* ==========================================================================
   CONTACT US PAGE - PAGE-SPECIFIC STYLESHEET
   ========================================================================== */

/* ==========================================================================
   1. PAGE HERO BANNER
   ========================================================================== */
.hero-page {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-page__bg {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-page__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.45);
  z-index: 2;
}

.hero-page__content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  padding: 0 2rem;
  text-align: center;
}

.hero-page__title {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.3;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-page__subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1050px;
  margin: 0 auto;
}


/* ==========================================================================
   2. GET IN TOUCH SECTION (desktop, >992px — unchanged)
   ========================================================================== */
.get-in-touch {
  background-color: var(--color-white);
  padding: 4.5rem 3rem;
  overflow-x: hidden;
}

.get-in-touch,
.get-in-touch * {
  box-sizing: border-box;
}

.get-in-touch__container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(0, 668fr) minmax(0, 536fr);
  gap: 80px;
  align-items: start;
}

.get-in-touch__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.get-in-touch__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent-orange);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-align: left;
}

.get-in-touch__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 0.915rem + 1.4286vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  color: var(--color-text-dark);
  text-align: left;
  white-space: nowrap;
}

.get-in-touch__text {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 18px;
    color: #111;
}

.get-in-touch__text .line1 {
    display: block;
    white-space: nowrap;
}

.get-in-touch__text .line2 {
    display: block;
}

.get-in-touch__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.get-in-touch__detail {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-align: left;
  line-height: 1.5;
  white-space: nowrap;
}

.get-in-touch__detail-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0;
  color: var(--color-accent-orange);
}

.enquiry-form__title--accent {
  color: var(--color-accent-orange);
  font-size: clamp(1.05rem, 0.275rem + 1.25vw, 1.4rem);
  white-space: nowrap;
}

.get-in-touch .enquiry-form {
  width: 100%;
  max-width: 536px;
  height: auto;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 28px 40px 40px;
  margin-top: -8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  min-width: 0;
  overflow: hidden;
}

.get-in-touch .enquiry-form__field {
  font-size: clamp(0.78rem, 0.55rem + 0.35vw, 0.9rem);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.get-in-touch .enquiry-form__row {
  margin-bottom: 0;
}

.get-in-touch .enquiry-form__row--split {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.get-in-touch .enquiry-form__row--split > * {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.enquiry-form__date-field {
  position: relative;
  flex: 1;
  min-width: 0;
}

.enquiry-form__date-field .enquiry-form__field--date {
  width: 100%;
  padding-right: 2.75rem;
  cursor: pointer;
}

.enquiry-form__date-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-accent-orange);
  pointer-events: none;
}

.month-picker {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 14px;
  z-index: 30;
  cursor: default;
}

.month-picker.is-open {
  display: block;
}

.month-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.month-picker__year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.month-picker__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-accent-orange);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.month-picker__nav:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.month-picker__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.month-picker__month {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 8px 4px;
  font-family: var(--font-body, inherit);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.month-picker__month:hover {
  background-color: var(--color-accent-orange);
  border-color: var(--color-accent-orange);
  color: #FFFFFF;
}

.month-picker__month.is-selected {
  background-color: var(--color-accent-orange);
  border-color: var(--color-accent-orange);
  color: #FFFFFF;
}


/* ==========================================================================
   3. CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  background-color: #FFF9EB;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  background: url('../../assets/images/cta.webp') no-repeat center;
  background-size: cover;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 0 2rem;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 0.6rem + 2.4vw, 2.2rem);
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.cta-banner__subtitle {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* --- Mobile/tablet-only corner decorations ---
   Two gold mandala motifs (left_design.png / right_design.png), added as
   ::before/::after pseudo-elements on .cta-banner so no HTML changes are
   needed. `display: none` here keeps them off the desktop layout; the
   @media (max-width: 992px) block in section 4 below is the ONLY place
   that turns them on. */
.cta-banner::before,
.cta-banner::after {
  content: "";
  display: none;
  position: absolute;
  width: 55px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

.cta-banner::before {
  background-image: url('../../assets/images/left_design.png');
  top: 2px;
  left: 1px;
}

.cta-banner::after {
  background-image: url('../../assets/images/right_design.png');
  bottom: 1px;
  right: -27px;
}


/* ==========================================================================
   4. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 992px) {
  .hero-page {
    height: auto;
    padding: 8rem 1.5rem 3rem;
  }

  .hero-page__title {
    font-size: 2rem;
  }

  .hero-page__subtitle {
    max-width: 700px;
  }

  .hero-page__deco {
    width: 40px;
    margin: 0 0.5rem;
  }

  .cta-banner {
    height: auto;
    padding: 3.5rem 1.5rem;
  }

  /* Turn on the corner decorations for tablet + mobile (this query
     already covers everything narrower than 992px too) */
  .cta-banner::before,
  .cta-banner::after {
    display: block;
  }
}

/* --- Mobile (<= 640px) ---
   FIX: the 992px block above sets `.hero-page { height: auto; }`, which
   is why the hero was collapsing to fit its text on phones instead of
   holding a fixed height. This narrower query runs after it, so at
   phone widths it wins and locks the hero to 903px — same fixed-height
   pattern already used for .page-hero__content in about_us.css. */
@media (max-width: 640px) {
  .hero-page {
    height: 903px;
  }
}

/* ==========================================================================
   TABLET/MOBILE STACKING (≤992px) — this is the existing breakpoint that
   covers the 703px-972px range. It's reinforced below with !important on
   every property that controls column count/width, so nothing (including
   base site CSS rules elsewhere) can re-introduce the two-column layout
   or a fixed width anywhere inside this range. No new media query added.
   ========================================================================== */
@media (max-width: 992px) {
  .get-in-touch {
    overflow: visible !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .get-in-touch__container {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 3rem !important;
    justify-items: stretch !important;
    overflow: visible !important;
  }

  .get-in-touch__info,
  .get-in-touch .enquiry-form {
    width: 100% !important;
    max-width: 536px !important;
    min-width: 0 !important;
    margin: 0 !important;
    float: none !important;
    position: static !important;
    transform: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .get-in-touch .enquiry-form {
    padding: 40px 30px;
    margin-top: 0 !important;
    order: 2;
    align-self: stretch !important;
  }

 .get-in-touch__info {
    height: auto !important;
    order: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}

  .get-in-touch__title,
.get-in-touch__eyebrow,
.get-in-touch__text {
    text-align: left !important;
}

  .get-in-touch__title,
  .get-in-touch__detail,
  .get-in-touch__text .line1,
  .enquiry-form__title--accent {
    white-space: normal;
  }

  .get-in-touch__title {
    font-size: clamp(1.5rem, 1rem + 1.5vw, 1.8rem);
  }

.get-in-touch__text {
    margin: 0 0 10px 0 !important;
    text-align: left !important;
}

.get-in-touch__details {
    align-items: flex-start !important;
    width: 100%;
    margin-top: 8px !important;
    gap: 18px !important;
}
  .get-in-touch__detail {
    justify-content: flex-start !important;
    text-align: left !important;
    white-space: normal !important;
}

  .get-in-touch__text br {
    display: none;
  }

  .get-in-touch .enquiry-form__field {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: initial !important;
  }

.get-in-touch .enquiry-form__row--split{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:14px !important;
}

  .get-in-touch .enquiry-form__row--split > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 100% !important;
  }
}