/* ============================================
   CONTACT
   ============================================ */

.contact-section {
  min-height: 100vh;
  padding: 80px;
  background: transparent;
  display: flex;
  align-items: center;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left */
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--grey);
  margin-bottom: 32px;
}

.contact-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 64px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0;
}

.contact-email {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--red);
  margin-top: 32px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-email:hover { opacity: 0.7; }

.contact-cta {
  margin-top: 16px;
  padding: 16px 40px;
}

/* Right / Form */
.contact-right {
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Selected package indicator */
.selected-package-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  background: rgba(232, 41, 74, 0.1);
  border: 1px solid rgba(232, 41, 74, 0.3);
  padding: 10px 16px;
  margin-bottom: 28px;
}

.package-indicator-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey);
}

#packageIndicatorName {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
}

/* Interest pills */
.interest-pills {
  margin-bottom: 40px;
}

.interest-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 16px;
}

.pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.service-pill {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.service-pill:hover {
  border-color: rgba(255,255,255,0.5);
}

.service-pill.is-selected {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Form fields */
.form-field {
  border-bottom: 1px solid #333;
  margin-bottom: 32px;
  transition: border-color 0.2s;
}

.form-field:focus-within {
  border-bottom-color: var(--red);
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  padding: 12px 0;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #444;
}

/* Submit */
.btn-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 20px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #c01f3b;
}

/* Success state */
.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.form-success p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--white);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  height: 80px;
  background: transparent;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 100%;
  padding: 0 48px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.1em;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: #444;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
}

.footer-icon {
  color: var(--white);
  transition: color 0.2s;
}

.footer-icon:hover {
  color: var(--red);
}
