/* ============================================================
   LUMIÈRE SALON — CONTACT PAGE STYLES
   contact.css
   ============================================================ */

/* ─── Contact Hero ───────────────────────────────────────────── */
.contact-hero {
  padding: 160px 0 90px;
  background: #080807;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199,167,108,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(199,167,108,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero .section-heading {
  font-size: 52px;
  position: relative;
  z-index: 1;
}

.contact-hero .section-heading::after {
  margin: 18px auto 0;
}

.contact-hero-sub {
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ─── Main Contact Section ───────────────────────────────────── */
.contact-main {
  padding: 100px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

/* ─── Contact Info Side ──────────────────────────────────────── */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.contact-info-intro {
  font-size: 16px;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-card {
  background: var(--bg-elevated);
  border-radius: 20px;
  padding: 24px 24px;
  box-shadow: none;
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(199,167,108,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-card-content {
  flex: 1;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.contact-card-sub {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.5;
}

.hours-list {
  margin-top: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--cream-dim);
  padding: 3px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 500;
  color: var(--cream);
}

.hours-closed {
  color: #EF4444;
  font-weight: 500;
}

/* ─── Booking Form Side ──────────────────────────────────────── */
.booking-form-wrap {
  background: var(--bg-card);
  border-radius: 28px;
  padding: 48px 48px;
  box-shadow: none;
  border: 1px solid var(--border-dark);
}

.form-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.form-subheading {
  font-size: 15px;
  color: var(--cream-dim);
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream);
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  background: var(--bg-elevated);
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 3px rgba(199,167,108,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--cream-dim);
  opacity: 0.5;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B8AFA4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199,167,108,0.4);
}

.form-privacy {
  text-align: center;
  font-size: 13px;
  color: var(--cream-dim);
  margin-top: 14px;
  line-height: 1.5;
  opacity: 0.7;
}

.form-privacy a {
  color: var(--gold);
}

/* ─── Map Section ────────────────────────────────────────────── */
.map-section {
  padding: 0 0 100px;
  background: var(--bg);
}

.map-placeholder {
  background: var(--bg-elevated);
  border-radius: 28px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 60px;
  border: 1px solid var(--border-dark);
  position: relative;
}

.map-icon {
  font-size: 52px;
  opacity: 0.6;
}

.map-address-display {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.map-address-sub {
  font-size: 16px;
  color: var(--cream-dim);
}

.map-deco-1,
.map-deco-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.map-deco-1 {
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(199,167,108,0.12) 0%, transparent 70%);
}

.map-deco-2 {
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(199,167,108,0.06) 0%, transparent 70%);
}

/* ─── Contact Bottom Card ────────────────────────────────────── */
.contact-cta-card-section {
  padding: 0 0 100px;
  background: var(--bg);
}

.contact-cta-card-section .contact-cta-label {
  color: var(--gold);
}

.contact-cta-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-dark);
  border-radius: 32px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(199,167,108,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-cta-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(199,167,108,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-cta-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-cta-sub {
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.contact-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info-side {
    order: 1;
  }

  .booking-form-wrap {
    order: 0;
  }
}

@media (max-width: 768px) {
  .contact-hero .section-heading {
    font-size: 40px;
  }

  .contact-main {
    padding: 80px 0;
  }

  .booking-form-wrap {
    padding: 36px 28px;
  }

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

  .contact-cta-card {
    padding: 48px 28px;
  }

  .contact-cta-heading {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .contact-hero .section-heading {
    font-size: 34px;
  }

  .booking-form-wrap {
    padding: 28px 20px;
  }

  .map-address-display {
    font-size: 22px;
  }

  .map-placeholder {
    padding: 40px 24px;
  }

  .contact-cta-heading {
    font-size: 28px;
  }

  .contact-cta-btns {
    flex-direction: column;
  }
}
