/* Contact page — Signature Tours Morocco */
.stp-contact-page {
  background: var(--stp-cream, #F9F5F0);
}

.stp-contact-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 56px;
  background-size: cover;
  background-position: center;
}

.stp-contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 35, 50, 0.3) 0%, rgba(26, 35, 50, 0.72) 65%, rgba(58, 21, 8, 0.88) 100%);
}

.stp-contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.stp-contact-hero .stp-contact-hero-title,
#stp.stp-contact-page .stp-contact-hero h1.stp-contact-hero-title {
  font-family: var(--stp-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #fff !important;
  margin: 0 0 14px;
  line-height: 1.12;
}

.stp-contact-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  margin: 0;
  max-width: 580px;
}

.stp-contact-page .stp-eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.stp-contact-body {
  padding: 64px 0 88px;
}

.stp-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 48px;
  align-items: start;
}

.stp-contact-form-card {
  background: #fff;
  border: 1px solid var(--stp-border, #e5ddd4);
  border-radius: 12px;
  padding: 36px 32px 40px;
  box-shadow: 0 10px 40px rgba(26, 35, 50, 0.07);
}

.stp-contact-form-title {
  font-family: var(--stp-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--stp-ink, #1a2332);
  margin: 0 0 10px;
}

.stp-contact-form-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 28px;
  font-weight: 300;
}

.stp-contact-field {
  margin-bottom: 20px;
}

.stp-contact-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--stp-muted, #666);
  margin-bottom: 8px;
  font-weight: 500;
}

.stp-contact-field label span {
  color: var(--stp-terra, #C44B27);
}

.stp-contact-field input,
.stp-contact-field textarea {
  width: 100%;
  font-family: var(--stp-sans, 'Kanit', system-ui, sans-serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--stp-ink);
  background: var(--stp-cream, #F9F5F0);
  border: 1px solid var(--stp-border, #e5ddd4);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.stp-contact-field input:focus,
.stp-contact-field textarea:focus {
  outline: none;
  border-color: var(--stp-terra, #C44B27);
  box-shadow: 0 0 0 3px rgba(196, 75, 39, 0.12);
}

.stp-contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.stp-contact-form-note {
  font-size: 12px;
  color: #888;
  margin: 0 0 20px;
}

.stp-contact-submit {
  min-width: 200px;
}

.stp-contact-form.is-sending .stp-contact-submit {
  opacity: 0.65;
  pointer-events: none;
}

.stp-contact-form-error {
  font-size: 14px;
  color: #b32d2e;
  margin: 14px 0 0;
}

.stp-contact-success {
  text-align: center;
  padding: 24px 0 8px;
}

.stp-contact-success h3 {
  font-family: var(--stp-serif);
  font-size: 24px;
  color: var(--stp-ink);
  margin: 0 0 12px;
  font-weight: 400;
}

.stp-contact-success p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 24px;
}

.stp-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.stp-contact-info-card {
  background: #fff;
  border: 1px solid var(--stp-border);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.06);
}

.stp-contact-info-title {
  font-family: var(--stp-serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--stp-ink);
}

.stp-contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stp-contact-info-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stp-border);
}

.stp-contact-info-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.stp-contact-info-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--stp-muted, #888);
  margin-bottom: 6px;
}

.stp-contact-info-list a {
  display: block;
  font-size: 15px;
  color: var(--stp-terra, #C44B27);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 4px;
}

.stp-contact-info-list a:hover {
  text-decoration: underline;
}

.stp-contact-wa {
  font-size: 13px !important;
  font-weight: 400 !important;
  opacity: 0.9;
}

.stp-contact-info-value {
  font-size: 15px;
  color: var(--stp-ink);
  font-weight: 300;
  line-height: 1.5;
}

.stp-contact-highlight {
  background: #E8EDE3;
  border-radius: 10px;
  padding: 18px 20px;
}

.stp-contact-highlight h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--stp-ink);
  margin: 0 0 8px;
  font-weight: 500;
}

.stp-contact-highlight p {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  margin: 0;
  font-weight: 300;
}

.stp-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stp-contact-links .stp-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 960px) {
  .stp-contact-layout {
    grid-template-columns: 1fr;
  }

  .stp-contact-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  .stp-contact-hero {
    min-height: 38vh;
    padding-bottom: 40px;
  }

  .stp-contact-form-card {
    padding: 28px 20px 32px;
  }

  .stp-contact-submit {
    width: 100%;
  }
}
