/* ============================================================
   contact.css — Contact Us Page Theme
   Emerald & Gold Royal Solstice Design System
   ============================================================ */

.contact-page {
  background: var(--bg-deep, #0B1914);
  color: var(--text-primary, #ffffff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-hero {
  position: relative;
  padding: 4rem 1.5rem 3rem 1.5rem;
  background: radial-gradient(ellipse 100% 90% at 50% 20%, #122c23 0%, #0B1914 80%);
  text-align: center;
  border-bottom: 1px solid rgba(46, 82, 67, 0.4);
}

.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: var(--radius-full, 9999px);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.contact-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #a3c2b5;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Main Section */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Info Cards Column */
.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: rgba(18, 38, 30, 0.75);
  border: 1px solid rgba(46, 82, 67, 0.6);
  border-radius: var(--radius-md, 16px);
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.15);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #f59e0b;
}

.contact-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #a3c2b5;
  line-height: 1.6;
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f59e0b;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.75rem;
  transition: gap 0.2s ease;
}

.contact-card__link:hover {
  gap: 10px;
  color: #ffd700;
}

/* Contact Form Card */
.contact-form-card {
  background: rgba(18, 38, 30, 0.85);
  border: 1px solid rgba(46, 82, 67, 0.8);
  border-radius: var(--radius-md, 16px);
  padding: 2.25rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contact-form-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-form-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #a3c2b5;
  margin-bottom: 1.75rem;
}

/* Form Controls */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.825rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(11, 25, 20, 0.8);
  border: 1px solid rgba(46, 82, 67, 0.8);
  border-radius: var(--radius-sm, 8px);
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

.form-select option {
  background: #0B1914;
  color: #ffffff;
}

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

/* Submit Button */
.btn-contact-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full, 9999px);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none;
  color: #040e04;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
}

.btn-contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Feedback Notification */
.contact-feedback {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm, 8px);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.contact-feedback.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.contact-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

/* Header Container & Twin Header Pills Alignment */
.contact-header {
  padding: 1rem 1.5rem;
  background: #0B1914;
  border-bottom: 1px solid rgba(46, 82, 67, 0.4);
  width: 100%;
  box-sizing: border-box;
}

.top-controls-row {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box;
}

/* Twin Header Pills: 100% Symmetrical Heights, Padding & Solstice Gold Border */
.breadcrumb-pill,
.header-location-picker {
  position: static !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  background: rgba(18, 38, 30, 0.85) !important;
  border: 1.5px solid rgba(245, 158, 11, 0.5) !important;
  border-radius: 9999px !important;
  padding: 0 16px !important;
  color: #a3c2b5 !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.breadcrumb-pill:hover,
.header-location-picker:hover {
  color: #ffd700 !important;
  border-color: #f59e0b !important;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.4) !important;
}

.city-selector-header {
  background: transparent !important;
  border: none !important;
  color: #ffd700 !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  outline: none !important;
  cursor: pointer !important;
  height: 100% !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  appearance: auto;
}

.city-selector-header option {
  background: #0B1914 !important;
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .top-controls-row {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 8px !important;
  }
  .breadcrumb-pill,
  .header-location-picker {
    font-size: 0.75rem !important;
    height: 32px !important;
    padding: 0 10px !important;
  }
  .city-selector-header {
    font-size: 0.75rem !important;
  }
}

/* Footer Section Adjustment */
.footer {
  background: #06110d;
  border-top: 1px solid rgba(46, 82, 67, 0.4);
  padding: 3.5rem 1.5rem 2rem 1.5rem;
  margin-top: auto;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #a3c2b5;
  line-height: 1.6;
}

.footer__cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.825rem;
  font-weight: 800;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: #a3c2b5;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #ffd700;
}

.footer__bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46, 82, 67, 0.3);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(163, 194, 181, 0.6);
}
