/* ==========================================================================
   Explore Middle East FZE — Contact page
   Load AFTER eme-brand-theme.css (tokens come from there).
   ========================================================================== */

.eme-contact-page .breadcrumb-style-1 .inner-content .title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.12;
}

.eme-contact-page .breadcrumb-style-1 .eme-crumb-lead {
  max-width: 660px;
  margin: 18px auto 0;
  color: #DCE7F1;
  font-size: 18px;
  line-height: 1.65;
}

.eme-sec {
  padding: 100px 0;
}

.eme-sec.eme-sec-tint {
  background: #F2F7FB;
}

.eme-sec-head {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.eme-sec-head .sub-title {
  color: var(--eme-navy);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
}

.eme-sec-head h2 {
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.18;
  margin-bottom: 18px;
}

.eme-sec-head h2 span {
  color: var(--eme-sky);
}

.eme-sec-head p {
  color: var(--eme-gray);
  font-size: 18px;
  line-height: 1.68;
  margin: 0;
}

@media (max-width: 991px) {
  .eme-sec {
    padding: 70px 0;
  }
  .eme-sec-head {
    margin-bottom: 38px;
  }
}

/* --- channel cards -------------------------------------------------------- */

.eme-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.eme-channel {
  display: block;
  background: #fff;
  border: 1px solid #E1EAF2;
  border-radius: 8px;
  padding: 36px 28px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.eme-channel:hover {
  transform: translateY(-6px);
  border-color: var(--eme-sky);
  box-shadow: 0 24px 54px rgba(15, 78, 129, 0.13);
}

.eme-channel .eme-channel-icon {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--eme-sky-tint);
  color: var(--eme-navy);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.eme-channel h3 {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--eme-gray);
  margin-bottom: 10px;
}

.eme-channel strong {
  display: block;
  color: var(--eme-ink);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
  word-break: break-word;
  margin-bottom: 8px;
}

.eme-channel span {
  display: block;
  color: var(--eme-gray);
  font-size: 15px;
  line-height: 1.55;
}

.eme-channel-whatsapp .eme-channel-icon {
  background: var(--eme-navy);
  color: #fff;
}

@media (max-width: 1199px) {
  .eme-channels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .eme-channels {
    grid-template-columns: 1fr;
  }
}

/* --- form + side panel ---------------------------------------------------- */

.eme-form-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: stretch;
}

.eme-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 46px 44px;
  box-shadow: 0 24px 60px rgba(15, 78, 129, 0.10);
  border-top: 4px solid var(--eme-sky);
}

.eme-form-card > p {
  color: var(--eme-gray);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 30px;
}

.eme-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.eme-field {
  margin-bottom: 20px;
}

.eme-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--eme-ink);
}

.eme-field label i {
  color: #C1443F;
  font-size: 11px;
  margin-left: 2px;
  vertical-align: super;
}

.eme-field input,
.eme-field select,
.eme-field textarea {
  width: 100%;
  border: 1px solid #D8E3EC;
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--eme-ink);
  background: #FBFDFE;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.eme-field input::placeholder,
.eme-field textarea::placeholder {
  color: #A9B7C3;
}

.eme-field input:focus,
.eme-field select:focus,
.eme-field textarea:focus {
  outline: none;
  border-color: var(--eme-sky);
  box-shadow: 0 0 0 3px rgba(47, 182, 240, 0.16);
  background: #fff;
}

.eme-field textarea {
  min-height: 148px;
  resize: vertical;
}

.eme-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236B7280'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 42px;
}

.eme-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: var(--eme-navy);
  color: #fff;
  padding: 16px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.eme-form-submit:hover {
  background: var(--eme-sky);
  color: var(--eme-ink);
}

.eme-form-note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--eme-gray);
}

/* side panel */

.eme-info-panel {
  background: var(--eme-ink);
  border-radius: 10px;
  padding: 44px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.eme-info-panel::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 50px solid rgba(47, 182, 240, 0.07);
}

.eme-info-panel > * {
  position: relative;
  z-index: 1;
}

.eme-info-block {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.eme-info-block:first-of-type {
  padding-top: 0;
}

.eme-info-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.eme-info-block h3 {
  color: var(--eme-sky);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}

.eme-info-block p,
.eme-info-block a {
  color: #E1EBF4;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  text-decoration: none;
  display: block;
  word-break: break-word;
}

.eme-info-block a:hover {
  color: var(--eme-sky);
}

.eme-hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eme-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: #E1EBF4;
  font-size: 15px;
}

.eme-hours li span:last-child {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.eme-hours li.eme-closed span:last-child {
  color: #9FB0BE;
  font-weight: 600;
}

.eme-response {
  margin-top: 26px;
  background: rgba(47, 182, 240, 0.1);
  border: 1px solid rgba(47, 182, 240, 0.25);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.eme-response i {
  color: var(--eme-sky);
  margin-top: 3px;
}

.eme-response p {
  margin: 0;
  color: #E1EBF4;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .eme-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .eme-form-card {
    padding: 32px 24px;
  }
  .eme-field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .eme-form-submit {
    width: 100%;
    justify-content: center;
  }
}

/* --- map + address -------------------------------------------------------- */

.eme-map-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 78, 129, 0.14);
}

.eme-map-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.eme-map-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 340px;
  max-width: calc(100% - 68px);
  background: #fff;
  border-radius: 10px;
  padding: 30px 28px;
  box-shadow: 0 20px 46px rgba(10, 32, 54, 0.22);
  border-left: 4px solid var(--eme-sky);
}

.eme-map-card h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.eme-map-card p {
  color: var(--eme-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.eme-map-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--eme-navy);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.eme-map-link:hover {
  color: var(--eme-sky);
}

@media (max-width: 767px) {
  .eme-map-wrap iframe {
    height: 360px;
  }
  .eme-map-card {
    position: static;
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 10px 10px;
    border-left: 0;
    border-top: 4px solid var(--eme-sky);
    box-shadow: none;
  }
}

/* --- coverage chips ------------------------------------------------------- */

.eme-coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.eme-coverage span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 20px;
  border-radius: 24px;
  border: 1px solid #D5E2EE;
  background: #fff;
  color: var(--eme-ink);
  font-weight: 700;
  font-size: 15px;
}

.eme-coverage span i {
  color: var(--eme-sky);
  font-size: 14px;
}

/* --- CTA band ------------------------------------------------------------- */

.eme-cta-band {
  border-radius: 10px;
  padding: 54px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.eme-cta-band h3 {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.24;
  margin: 0 0 10px;
  max-width: 620px;
}

.eme-cta-band p {
  color: #D8E5F0;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.eme-cta-navy {
  background: linear-gradient(120deg, var(--eme-navy) 0%, #0B3A63 100%);
  box-shadow: 0 20px 50px rgba(15, 78, 129, 0.22);
}

.eme-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.eme-cta-ghost {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.eme-cta-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--eme-navy);
}

@media (max-width: 767px) {
  .eme-cta-band {
    padding: 38px 26px;
  }
  .eme-cta-actions {
    width: 100%;
  }
  .eme-cta-band .btn-sky-blue,
  .eme-cta-ghost {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eme-channel {
    transition: none;
  }
}