/* Contact Page Specific Styles */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
  margin-bottom: 70px;
}

.contact-info-panel {
  background-color: var(--secondary-navy);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-method-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  fill: var(--accent-gold);
  width: 22px;
  height: 22px;
}

.contact-method-details h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-method-details p {
  font-size: 0.9rem;
  color: var(--text-silver);
  line-height: 1.5;
}

.contact-socials-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Map Section */
.map-section {
  width: 100%;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  margin-top: 20px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%); /* Dark map theme overlay matching our design */
}

/* Success Message styling */
.form-success-msg {
  display: none;
  background-color: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--accent-gold);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  color: var(--text-white);
  margin-top: 20px;
}

.form-success-msg svg {
  fill: var(--accent-gold);
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.form-success-msg h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.form-success-msg p {
  font-size: 0.9rem;
  color: var(--text-silver);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info-panel {
    padding: 40px;
  }
}

@media screen and (max-width: 768px) {
  .contact-info-panel {
    padding: 30px 20px;
  }
  .map-section {
    height: 300px;
  }
}
