.contact-section {
  width: 100%;
  padding: 100px 48px;
  background: #0e0e0e;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a14a;
  margin: 0 0 14px;
}

.contact-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
}

.contact-line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a14a, transparent);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
}

/* ---------- Form layout ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-group label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c9a14a' stroke-width='1.5' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select option {
  background: #161616;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #c9a14a;
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

/* ---------- Radio buttons ---------- */
.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #f2f2f2;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: #c9a14a;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #c9a14a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- Button & status ---------- */
.booking-form .btn-solid {
  margin-top: 8px;
  width: 100%;
}

.form-status {
  margin-top: 14px;
  font-size: 13px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  min-height: 18px;
}

.form-status.success {
  color: #6ddc8b;
}

.form-status.error {
  color: #e06868;
}

/* ---------- Info side ---------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid rgba(201, 161, 74, 0.2);
  padding-left: 48px;
}

.info-item h4 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a14a;
  margin: 0 0 8px;
}

.info-item p {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .contact-section {
    padding: 72px 24px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-left: none;
    border-top: 1px solid rgba(201, 161, 74, 0.2);
    padding-left: 0;
    padding-top: 32px;
  }
}