/* ==========================================================================
   PAGE HERO
   ========================================================================== */
.page-hero {
  height: 50vh;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--gray);
}

.breadcrumb .current {
  color: var(--gold);
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--white-cream);
  padding: 0;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  background: var(--white);
}

.contact-form-wrapper {
  flex: 0 0 60%;
  padding: 80px 10%;
  background-color: var(--white-cream);
}

.contact-info-wrapper {
  flex: 0 0 40%;
  padding: 80px 60px;
  background-color: var(--black-soft);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.contact-form__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-info__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 16px;
}

.gold-hairline {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
  margin-bottom: 40px;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-row {
  display: flex;
  gap: 32px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-light);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
  padding: 8px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group.focused label {
  color: var(--gold);
}

/* Custom Select */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 24px;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
  font-size: 16px;
}

/* Validation */
.error-msg {
  display: none;
  color: #D32F2F;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  margin-top: 4px;
}

.form-group.error input,
.form-group.error textarea {
  border-bottom-color: #D32F2F;
}

.form-group.error .error-msg {
  display: block;
}

.submit-btn {
  margin-top: 16px;
  align-self: flex-start;
}

/* Info List */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: auto; /* pushes social down */
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  font-size: 24px;
  color: var(--gold);
  margin-top: 2px;
}

.info-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.contact-social a {
  color: var(--gold);
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-social a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   MAP SECTION
   ========================================================================== */
.map-section {
  width: 100%;
  height: 400px;
  border-top: 2px solid var(--gold);
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) contrast(1.1);
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0.8);
}

.modal__content {
  position: relative;
  background: var(--white);
  padding: 48px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: translateY(0);
}

.modal__icon {
  font-size: 64px;
  color: var(--gold);
  margin-bottom: 24px;
}

.modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 12px;
}

.modal__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-form-wrapper {
    flex: 0 0 100%;
    padding: 60px 5%;
  }
  .contact-info-wrapper {
    flex: 0 0 100%;
    padding: 60px 5%;
  }
}

@media (max-width: 767px) {
  .page-hero__title {
    font-size: 40px;
  }
  .form-row {
    flex-direction: column;
    gap: 32px;
  }
  .submit-btn {
    width: 100%;
  }
}
