*,
*::before,
*::after {
  box-sizing: border-box;
}

.contact-hero {
  padding: 94px 20px 74px;
  background:
    radial-gradient(circle at 12% 20%, rgba(199, 162, 74, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(38, 54, 38, 0.11), transparent 28%),
    linear-gradient(135deg, #f8f4ec 0%, #eef3ec 100%);
  text-align: center;
}

.contact-hero .eyebrow,
.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #8a6f35;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  color: #263626;
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.75;
  color: #4c5549;
}

.contact-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px;
}

.contact-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: stretch;
}

.intro-card {
  background: linear-gradient(135deg, #fffdf8 0%, #f8f4ec 100%);
  border: 1px solid rgba(138, 111, 53, 0.18);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.intro-card h2,
.section-heading h2,
.faq-box h2,
.final-contact h2 {
  font-family: "Playfair Display", serif;
  color: #263626;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.intro-card p,
.section-heading p,
.final-contact p {
  color: #4c5549;
  line-height: 1.8;
  font-size: 17px;
}

.quick-points {
  display: grid;
  gap: 16px;
  transform: translateY(26px);
}

.quick-point {
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border-left: 4px solid #8a6f35;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.055);
}

.quick-point:nth-child(even) {
  background: #eef3ec;
}

.quick-point strong {
  display: block;
  color: #263626;
  font-size: 18px;
  margin-bottom: 6px;
}

.quick-point span {
  color: #4c5549;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.contact-box {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(138, 111, 53, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
  padding: 38px;
}

.form-box {
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 162, 74, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fffdf8 100%);
}

.side-box {
  position: sticky;
  top: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 162, 74, 0.16), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #eef3ec 100%);
}

.contact-box h2,
.contact-box h3 {
  font-family: "Playfair Display", serif;
  color: #263626;
  margin-bottom: 16px;
}

.contact-box h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.contact-box h3 {
  font-size: 30px;
}

.contact-box p {
  color: #4c5549;
  line-height: 1.75;
  font-size: 17px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  max-width: 100%;
}

.form-block {
  max-width: 100%;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fffdf8 0%, #f8f4ec 100%);
  border: 1px solid rgba(138, 111, 53, 0.14);
  overflow: hidden;
}

.form-block h4 {
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #263626;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 14px;
  max-width: 100%;
}

.form-grid:last-child {
  margin-bottom: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border-radius: 15px;
  border: 1px solid #d8d0c1;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  background: #fffdf8;
  color: #263626;
  outline: none;
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #8a6f35;
  box-shadow: 0 0 0 4px rgba(199, 162, 74, 0.14);
  background: #ffffff;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4c5549;
  font-size: 14px;
  line-height: 1.5;
}

.privacy-check input {
  width: auto;
  margin-top: 3px;
}

.privacy-check a {
  color: #8a6f35;
  font-weight: 600;
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #263626 0%, #344b34 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 16px;
  box-shadow: 0 12px 24px rgba(38, 54, 38, 0.22);
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(38, 54, 38, 0.28);
}

.whatsapp-btn,
.final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c7a24a 0%, #b68f37 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
  box-shadow: 0 12px 24px rgba(182, 143, 55, 0.25);
}

.whatsapp-btn:hover,
.final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(182, 143, 55, 0.34);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-details div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  border-left: 4px solid #8a6f35;
}

.contact-details strong {
  display: block;
  color: #263626;
  margin-bottom: 6px;
}

.contact-details a,
.contact-details span {
  color: #4c5549;
  text-decoration: none;
  line-height: 1.6;
}

.process-section {
  position: relative;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 20px;
  width: 180px;
  height: 180px;
  background: rgba(199, 162, 74, 0.14);
  border-radius: 50%;
  z-index: -1;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  background: #fffdf8;
  border: 1px solid rgba(138, 111, 53, 0.18);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.055);
  transition: 0.25s ease;
}

.process-card:nth-child(2) {
  transform: translateY(26px);
  background: #eef3ec;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
}

.process-card:nth-child(2):hover {
  transform: translateY(18px);
}

.process-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #8a6f35;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-card h3 {
  font-family: "Playfair Display", serif;
  color: #263626;
  font-size: 24px;
  margin-bottom: 12px;
}

.process-card p {
  color: #4c5549;
  line-height: 1.7;
  font-size: 16px;
}

.faq-box {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: start;
  background: linear-gradient(135deg, #f8f4ec 0%, #ffffff 100%);
  border: 1px solid rgba(138, 111, 53, 0.18);
  border-radius: 28px;
  padding: 38px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: #fffdf8;
  border: 1px solid #e3dac8;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #263626;
}

.faq p {
  margin-top: 10px;
  color: #4c5549;
  font-size: 15.5px;
  line-height: 1.7;
}

.final-contact {
  position: relative;
  overflow: hidden;
  padding: 56px 44px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 94% 0%, rgba(199, 162, 74, 0.18), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(38, 54, 38, 0.10), transparent 26%),
    linear-gradient(135deg, #fffdf8 0%, #f8f4ec 48%, #eef3ec 100%);
  border: 1px solid rgba(138, 111, 53, 0.22);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.07);
}

.final-contact h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.final-contact p {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .contact-intro,
  .contact-layout,
  .faq-box {
    grid-template-columns: 1fr;
  }

  .quick-points,
  .side-box {
    transform: none;
    position: static;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .process-card:nth-child(2),
  .process-card:nth-child(2):hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 70px 18px 54px;
  }

  .contact-section {
    padding: 54px 18px;
  }

  .intro-card,
  .contact-box,
  .faq-box {
    padding: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .final-contact {
    padding: 40px 24px;
  }
}