
/* ── CONTACT HERO BANNER ────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(160deg, #05202f 0%, #082b47 55%, #0d4a78 100%);
  padding: 80px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grid texture */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Gold top shimmer line */
.contact-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c 35%, #e8c97a 60%, transparent);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.contact-eyebrow {
  display: block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.30em;
  color: #c9a84c;
  margin-bottom: 18px;
}

.contact-hero-inner h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  position: relative;
  display: inline-block;
}

/* Gold underline on hero h2 */
.contact-hero-inner h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #c9a84c;
  margin: 14px auto 0;
}

.contact-hero-inner p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  line-height: 1.75;
  margin-top: 20px;
}


/* ── CONTACT SECTION — two column layout ────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 0;
  max-width: 1160px;
  margin: -40px auto 0;
  padding: 0 32px 100px;
  position: relative;
  z-index: 4;
  /* Override existing .contact-section padding */
  background: transparent;
}

/* ── LEFT: INFO PANEL ───────────────────────────────────────── */
.contact-info-panel {
  background: linear-gradient(160deg, #05202f 0%, #082b47 100%);
  border-radius: 18px 0 0 18px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  animation: cardEntrance 0.6s cubic-bezier(0.4,0,0.2,1) both;
}

/* Subtle gold grid on info panel */
.contact-info-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Gold accent line on left edge */
.contact-info-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, #c9a84c 30%, #e8c97a 70%, transparent);
  border-radius: 18px 0 0 18px;
}

.info-panel-top {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.info-panel-top h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.info-panel-top p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* Info items */
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item:hover {
  transform: translateX(4px);
}

.info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 16px;
  transition: background 0.25s, transform 0.25s;
}

.contact-info-item:hover .info-icon {
  background: rgba(201,168,76,0.22);
  transform: scale(1.08);
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.info-value {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
}

/* Divider */
.info-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 32px 0;
  position: relative;
  z-index: 1;
}

/* Response promise */
.response-promise {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.response-promise i {
  color: #c9a84c;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.response-promise p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}

.response-promise p strong {
  color: #c9a84c;
  font-weight: 600;
}


/* ── RIGHT: FORM PANEL ──────────────────────────────────────── */
.contact-form-panel {
  background: #ffffff;
  border-radius: 0 18px 18px 0;
  padding: 48px 48px 44px;
  box-shadow:
    0 20px 60px rgba(8,43,71,0.12),
    0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-left: none;
  animation: cardEntrance 0.6s 0.1s cubic-bezier(0.4,0,0.2,1) both;
}

.form-panel-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0ece4;
}

.form-panel-header h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #082b47;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.form-panel-header p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: #8a9ab0;
  font-weight: 400;
}

/* Form grid — 2 columns */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  /* Override old form styles */
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  margin: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Full width items */
.form-group--full {
  grid-column: 1 / -1;
}

/* Labels */
.contact-form-grid label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.contact-form-grid label i {
  color: #c9a84c;
  font-size: 12px;
}

/* Inputs */
.contact-form-grid input[type="text"],
.contact-form-grid input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e8e4dc;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a2e;
  background: #faf8f4;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  margin: 0;
  /* Override old contact-section input styles */
  box-sizing: border-box;
}

.contact-form-grid input:focus {
  border-color: #c9a84c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.contact-form-grid input::placeholder {
  color: #c0c8d4;
  font-weight: 300;
}

/* Textarea */
.contact-form-grid textarea {
  width: 100%;
  padding: 16px;
  border: 1.5px solid #e8e4dc;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a2e;
  background: #faf8f4;
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  margin: 0;
  box-sizing: border-box;
}

.contact-form-grid textarea:focus {
  border-color: #c9a84c;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.contact-form-grid textarea::placeholder {
  color: #c0c8d4;
  font-weight: 300;
}

/* Submit row */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Submit button */
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #c9a84c 0%, #a07830 100%);
  color: #05202f;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #dbb85a 0%, #b08838 100%);
  box-shadow: 0 14px 36px rgba(201,168,76,0.42);
}

.contact-submit-btn i {
  font-size: 14px;
}

/* Privacy note */
.form-note {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  color: #aab0bc;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-note i {
  color: #c9a84c;
  font-size: 11px;
}


/* ── TRUST STRIP ────────────────────────────────────────────── */
.contact-trust-strip {
  background: #faf8f4;
  border-top: 1px solid #ede9e0;
  border-bottom: 1px solid #ede9e0;
  padding: 36px 20px;
}

.trust-strip-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4a5568;
  transition: color 0.2s;
}

.trust-item:hover {
  color: #082b47;
}

.trust-item i {
  color: #c9a84c;
  font-size: 16px;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: #e2ddd4;
  flex-shrink: 0;
}


/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 0 20px 80px;
    margin-top: -24px;
    gap: 0;
  }

  .contact-info-panel {
    border-radius: 18px 18px 0 0;
    padding: 36px 28px;
  }

  .contact-info-panel::after {
    /* Change left line to top line on mobile */
    top: 0; left: 0; right: 0; bottom: auto;
    width: auto;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, transparent, #c9a84c 30%, #e8c97a 70%, transparent);
  }

  .contact-form-panel {
    border-radius: 0 0 18px 18px;
    border-left: 1px solid rgba(201,168,76,0.12);
    border-top: none;
    padding: 36px 28px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 60px 20px 70px;
  }

  .contact-hero-inner h2 {
    font-size: 2rem;
  }

  .trust-strip-inner {
    gap: 20px;
  }

  .trust-item {
    padding: 0 16px;
    font-size: 11px;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .trust-divider {
    display: none;
  }
  .trust-item {
    padding: 8px 0;
    width: 50%;
    justify-content: center;
  }
  .trust-strip-inner {
    justify-content: center;
  }
}
/* Override old contact form styles */
.contact-section form.contact-form-grid {
    max-width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}