/* ── PAGE-SPECIFIC: CONTACT ── */
.page-hero { height: 44vh; min-height: 320px; }

.contact-section {
  padding: 96px 50px 110px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 88px;
  align-items: start;
}

/* FORM SIDE */
.form-title {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
}
.form-sub {
  font-size: 13.5px;
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
label .req { color: #e07b3a; margin-left: 2px; }

input, textarea, select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-plus-jakarta-sans), sans-serif;
  font-size: 13.5px;
  width: 100%;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder {
  color: rgba(242, 239, 233, 0.28);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold-dim);
  background: rgba(200, 169, 110, 0.06);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.08);
  outline: none;
}
input.error, textarea.error, select.error {
  border-color: rgba(224, 123, 58, 0.6);
  background: rgba(224, 123, 58, 0.06);
}
textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.field-error {
  font-size: 11px;
  color: #e07b3a;
  margin-top: -4px;
  min-height: 14px;
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--gold);
  pointer-events: none;
}
select { cursor: pointer; padding-right: 40px; }
select option { background: #0f0f0f; color: var(--text); }

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  border-radius: 100px;
  font-family: var(--font-plus-jakarta-sans), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #070707;
  border: none;
  cursor: none;
  width: 100%;
  margin-top: 8px;
  transition: box-shadow 0.35s, transform 0.25s, opacity 0.25s;
}
.submit-btn:hover:not(:disabled) {
  box-shadow: 0 0 52px var(--gold-dim);
  transform: translateY(-2px);
}
.submit-btn:disabled {
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}
.submit-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.form-success {
  padding: 28px 30px;
  border: 1px solid var(--gold-dim);
  border-radius: 18px;
  background: var(--gold-glow);
  text-align: center;
}
.form-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-success strong {
  color: var(--gold);
  display: block;
  font-family: var(--font-playfair-display), serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mute);
}

/* INFO SIDE */
.info-title {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #fff;
}
.info-sub {
  font-size: 12.5px;
  color: var(--text-mute);
  line-height: 1.7;
  margin-bottom: 36px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, background 0.3s;
}
.info-card:hover {
  border-color: var(--gold-dim);
  background: var(--gold-glow);
}
.info-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 15px; height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-val {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.info-val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.info-val a:hover { color: var(--gold); }

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.wa-btn:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 0 32px rgba(37, 211, 102, 0.12);
}
.wa-btn svg {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.jam-wrap {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: var(--glass);
}
.jam-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.jam-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12.5px;
}
.jam-row:last-child { border-bottom: none; }
.jam-row span:first-child { color: var(--text-mute); }
.jam-row span:last-child {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .contact-section { padding: 80px 32px 96px; gap: 56px; }
}
@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; gap: 60px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .contact-section { padding: 60px 20px 80px; }
}
