body.contact-page,
.contact-page-shell {
  min-height: 100vh;
}

.contact-main {
  padding-top: 108px;
}

.contact-hero,
.contact-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 420px);
  gap: 28px;
  align-items: stretch;
  padding-top: 24px;
}

.contact-hero-copy,
.contact-side-card,
.contact-form-wrap,
.info-card {
  border: 1px solid rgba(0,0,0,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,244,244,0.96));
  box-shadow: 0 24px 55px rgba(0,0,0,0.07);
}

.contact-hero-copy {
  border-radius: 36px;
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.contact-hero-copy::before,
.contact-side-card::before,
.contact-form-wrap::before,
.info-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.72);
  pointer-events: none;
}

.contact-kicker,
.section-kicker,
.side-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
}

.contact-hero-copy h1 {
  margin-top: 20px;
  max-width: 760px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #111;
}

.contact-hero-copy p,
.section-head p,
.contact-side-top p,
.info-card p,
.form-note {
  font-size: 16px;
  line-height: 1.8;
  color: #6a6a6a;
}

.contact-hero-copy p {
  margin-top: 18px;
  max-width: 700px;
}

.contact-hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.contact-hero-pills span {
  padding: 12px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-side-card {
  border-radius: 36px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.contact-side-top h3,
.section-head h2,
.info-card h3 {
  font-family: 'Syne', sans-serif;
  color: #111;
}

.contact-side-top h3 {
  margin-top: 16px;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact-whatsapp-direct,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.contact-whatsapp-direct:hover,
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

.contact-mini-list {
  display: grid;
  gap: 14px;
}

.contact-mini-list small {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c8c8c;
}

.contact-mini-list strong {
  font-size: 18px;
  color: #111;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 28px;
  margin-top: 32px;
  margin-bottom: 70px;
}

.contact-form-wrap {
  border-radius: 36px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin-top: 16px;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.section-head p {
  margin-top: 14px;
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
}

.field span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #111;
  outline: none;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

.field textarea {
  resize: vertical;
  min-height: 180px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.form-note {
  max-width: 360px;
}

.contact-info-wrap {
  display: grid;
  gap: 18px;
  align-self: start;
}

.info-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 28px;
}

.info-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: #111;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.info-card h3 {
  margin-top: 20px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.info-card p {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .contact-hero,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-side-card,
  .contact-info-wrap {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding-top: 96px;
  }

  .contact-hero,
  .contact-content {
    padding: 0 18px;
  }

  .contact-hero {
    gap: 18px;
    padding-top: 10px;
  }

  .contact-hero-copy,
  .contact-side-card,
  .contact-form-wrap,
  .info-card {
    border-radius: 26px;
  }

  .contact-hero-copy,
  .contact-side-card,
  .contact-form-wrap,
  .info-card {
    padding: 24px;
  }

  .contact-hero-copy::before,
  .contact-side-card::before,
  .contact-form-wrap::before,
  .info-card::before {
    inset: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field-full {
    grid-column: auto;
  }

  .contact-hero-copy h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .contact-side-top h3,
  .section-head h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .contact-hero-copy p,
  .section-head p,
  .contact-side-top p,
  .info-card p,
  .form-note {
    font-size: 14px;
  }

  .submit-btn,
  .contact-whatsapp-direct {
    width: 100%;
  }
}
