@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Work+Sans:wght@400;500;600&display=swap');

.contact-page {
  --ink: #1f1a16;
  --muted: #6f665f;
  --sand: #ede4dd;
  --paper: #ffffff;
  --cream: #f7f2ec;
  --accent: #c07a47;
  --accent-dark: #9a6138;
  --shadow-lg: 0 30px 60px rgba(31, 26, 22, 0.16);
  --shadow-md: 0 20px 45px rgba(31, 26, 22, 0.12);
  --shadow-sm: 0 12px 25px rgba(31, 26, 22, 0.12);
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

.contact-page * {
  box-sizing: border-box;
}

.contact-page a {
  color: inherit;
  text-decoration: none;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page h4,
.contact-page h5 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  max-width: 560px;
}

.section-heading.center {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 40px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-hero {
  position: relative;
  padding: 120px 0 110px;
  background: linear-gradient(120deg, #f9f4ee 0%, #fbf7f2 45%, #efe4d9 100%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(192, 122, 71, 0.18), transparent 55%);
  opacity: 0.85;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 122, 71, 0.18), transparent 70%);
  z-index: 0;
}

.hero-orb--one {
  width: 320px;
  height: 320px;
  top: -120px;
  right: 6%;
}

.hero-orb--two {
  width: 220px;
  height: 220px;
  bottom: 40px;
  left: -80px;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 18px 0 20px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid #eadfd5;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex: 0 0 auto;
}

.contact-card h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-social {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.contact-social span {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid #eadfd5;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 {
  margin: 16px 0 10px;
}

.contact-form-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.contact-form-card label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-form-card .form-control {
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid #e0d6cc;
  background: #fbf9f6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-form-card .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 122, 71, 0.15);
}

.contact-form-card .alert {
  border-radius: 12px;
  border: none;
}

.btn-submit {
  background: var(--ink);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-support {
  padding: 100px 0;
  background: #fff;
}

.support-card {
  background: #f9f4ee;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid #eadfd5;
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.support-card h3 {
  margin: 0;
}

.support-card p {
  margin: 0;
  color: var(--muted);
}

.support-meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.contact-cta {
  padding: 100px 0 120px;
  background: var(--cream);
}

.cta-card {
  position: relative;
  background: linear-gradient(120deg, #1f1a16 0%, #3a302b 100%);
  border-radius: 30px;
  padding: 48px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: -40% 0 0 -20%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.cta-card h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-btn.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.contact-btn.light:hover {
  background: transparent;
  color: #fff;
}

.contact-btn.outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-btn.outline:hover {
  border-color: #fff;
}

@media (max-width: 991.98px) {
  .contact-hero {
    padding: 100px 0 90px;
  }

  .cta-actions {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .contact-form-card {
    padding: 28px;
  }

  .cta-card {
    padding: 36px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .contact-hero {
    padding: 90px 0 80px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .contact-form-card {
    padding: 24px;
  }
}
