/* Contact page premium styling */
.contact-section {
  background-color: #FAF6F0; /* Luxury warm champagne peach linen background */
  padding-top: 60px;
  padding-bottom: 120px;
}

/* Beautiful Centered Editorial Header */
.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.contact-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.contact-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 15px;
}
.contact-header h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.contact-header .contact-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Information Card (Left Column) */
.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(44, 26, 14, 0.04);
  border: 1px solid rgba(200, 146, 42, 0.08);
}
.contact-info h3, .contact-info h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.contact-info h4 {
  font-size: 1.5rem;
  margin-top: 35px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-row:last-of-type {
  margin-bottom: 0;
}
.info-row svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--gold);
  margin-top: 3px;
}
.info-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* Map Frame */
.contact-map {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(44, 26, 14, 0.06);
  border: 1px solid rgba(200, 146, 42, 0.06);
}
.contact-map iframe {
  display: block;
  width: 100%;
}

/* Message Form (Right Column) */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(44, 26, 14, 0.04);
  border: 1px solid rgba(200, 146, 42, 0.08);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form .form-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  border-radius: 30px; /* Highly elegant modern rounded fields */
  border: 1.5px solid #E5DFD5;
  background-color: #FAF9F6;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.contact-form textarea.form-input {
  border-radius: 20px; /* soft rounding for messages */
  min-height: 200px;
  resize: vertical;
}
.contact-form .form-input:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 146, 42, 0.08);
}
.contact-form .form-input::placeholder {
  color: #A0988E;
  opacity: 0.85;
}

/* Submit Action Button styling */
.contact-form .form-actions {
  text-align: right;
  margin-top: 10px;
}
.contact-form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 30px; /* Beautiful gold pill button */
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(200,146,42,0.25);
  transition: all 0.3s ease;
}
.contact-form .btn-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200,146,42,0.35);
}

.contact-success {
  display: none;
  background: rgba(44,130,70,0.06);
  border: 1px solid rgba(44,130,70,0.12);
  color: #1f5e2f;
  padding: 14px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
  text-align: center;
}
.contact-success.show {
  display: block;
  animation: contactFadeIn .3s ease;
}

@keyframes contactFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-header h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-info, .contact-form {
    padding: 30px 20px;
  }
}
