/* ============================================================
   contact.css — Dedicated stylesheet for contact.html
   Companion to styles.css (global baseline)
   Design tokens (:root) are defined in styles.css
   ============================================================ */

/* ── Page Root Wrapper ──────────────────────────────────── */
.contact-page-root {
  font-family: var(--font-manrope);
  background: var(--white);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Accent Bar ─────────────────────────────────────────── */
.contact-accent-bar {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: #FF7A33;
  border-radius: 2px;
  margin-right: 16px;
  vertical-align: -0.14em;
}

/* ── Hero Section (Desktop Base) ────────────────────────── */
.contact-hero-section {
  position: relative;
  overflow: clip;
  background: #F5F1E9;
  padding: 48px clamp(16px, 4vw, 40px) 52px;
}

.contact-hero-watermark {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 150px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(11, 18, 32, 0.07);
  letter-spacing: -5px;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.contact-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 44px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: min(320px, 100%);
  max-width: 560px;
}

.contact-hero-tag {
  font-family: var(--font-sora);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--slate);
  margin-bottom: 14px;
}

.contact-hero-title {
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 46px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
  text-transform: uppercase;
}

.contact-hero-title-light {
  font-weight: 300;
  color: var(--slate);
}

.contact-hero-lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}

.contact-hero-subtext {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.contact-hero-visual {
  position: relative;
  z-index: 1;
  flex: none;
  width: min(540px, 92vw);
  margin: 0 auto;
}

.contact-hero-visual-wrap {
  position: relative;
  width: 100%;
  height: clamp(280px, 60vw, 380px);
  margin-bottom: 18px;
}

.contact-hero-shadow {
  position: absolute;
  left: calc(50% + 16px);
  bottom: -10px;
  width: 75%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(11, 18, 32, 0.28), transparent 72%);
  border-radius: 50%;
  filter: blur(8px);
  transform: translateX(-50%);
  animation: heroShadow 6s ease-in-out infinite;
}

.contact-hero-float-layer {
  position: absolute;
  left: calc(50% + 16px);
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  animation: heroFloat 6s ease-in-out infinite;
}

.contact-hero-team-slot {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 24px rgba(11, 18, 32, 0.18));
}

.contact-hero-team-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ── Contact Form Section ───────────────────────────────── */
.contact-form-section {
  padding: 44px clamp(16px, 4vw, 48px) 96px;
  background: var(--white);
  scroll-margin-top: 80px;
}

.contact-form-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  background: var(--white);
}

.contact-form-title {
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--ink);
}

.contact-form-sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

.contact-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-family: var(--font-manrope);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.contact-input:focus {
  border-color: #D8451F;
  box-shadow: 0 0 0 3px rgba(216, 69, 31, 0.1);
}

.contact-input--mb {
  margin-bottom: 12px;
}

.contact-textarea {
  min-height: 110px;
  resize: vertical;
  margin-bottom: 16px;
}

.contact-status-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #FF7A33, #FF3B54);
  color: var(--white);
  border: none;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-manrope);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px -6px rgba(255, 59, 84, 0.4);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(255, 59, 84, 0.6);
}

/* ── Contact Info Column ────────────────────────────────── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 26px;
}

.contact-info-card--dark {
  background: var(--ink-dark);
  color: var(--white);
}

.contact-info-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--slate);
  margin-bottom: 10px;
}

.contact-info-text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--ink);
}

.contact-info-link {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #D8451F;
  transition: color 0.18s ease;
}

.contact-info-link:hover {
  text-decoration: underline;
}

.contact-phone-group {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-phone-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.contact-phone-link:hover {
  color: #D8451F;
}

.contact-dark-title {
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--white);
}

.contact-dark-sub {
  font-size: 13px;
  color: #B8C0D0;
  line-height: 1.55;
  margin-bottom: 16px;
}

.contact-dark-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--amber);
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-dark-link:hover {
  transform: translateX(4px);
}



/* ============================================================
   RESPONSIVE MEDIA QUERIES (Specific to contact.html)
   ============================================================ */

/* ── Tablet & Small Laptops (< 992px) ───────────────────── */
@media (max-width: 991px) {
  .contact-hero-watermark {
    font-size: 100px;
    top: 30px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── Mobile Devices (< 768px) ───────────────────────────── */
@media (max-width: 767px) {
  .contact-hero-container {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 20px !important;
  }

  .contact-hero-visual {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 20px auto 0 !important;
  }

  .contact-hero-visual-wrap {
    width: 100% !important;
    margin: 0 auto 18px !important;
    height: clamp(220px, 55vw, 300px);
  }

  .contact-hero-float-layer,
  .contact-hero-shadow {
    left: 50% !important;
    animation: none !important;
  }

  .contact-form-section {
    padding: 32px 16px 48px;
  }

  .contact-form-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .contact-inputs-row {
    grid-template-columns: 1fr;
  }

  .contact-submit-btn {
    width: 100%;
    box-sizing: border-box;
  }
}
