@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

.contact-page {
  background: #f3f3f3;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

/* Hero Section */
.contact-hero {
  background: #ffffff;
  padding: 2.5rem 0;
  border-bottom: 1px solid #d5d9d9;
}

.contact-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f1111;
  margin-bottom: 0.75rem;
}

.contact-hero-desc {
  font-size: 1.1rem;
  color: #565959;
  margin: 0;
}

/* Contact Content */
.contact-content {
  background: #f3f3f3;
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  border: 1px solid #d5d9d9;
  border-radius: 0.4rem;
  padding: 1.5rem;
}

.contact-info-card h2,
.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f1111;
  margin-bottom: 1.5rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #f0f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007185;
  font-size: 1.2rem;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text strong {
  display: block;
  font-weight: 700;
  color: #0f1111;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-info-text p {
  margin: 0;
  color: #3c3c3c;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-weight: 700;
  color: #0f1111;
  font-size: 0.95rem;
}

.form-control {
  padding: 0.6rem 0.8rem;
  border: 1px solid #d5d9d9;
  border-radius: 0.4rem;
  font-size: 0.95rem;
  color: #0f1111;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #007185;
  box-shadow: 0 0 0 3px rgba(0, 113, 133, 0.1);
}

.form-control::placeholder {
  color: #999;
}

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

.contact-submit-btn {
  background: #f0c14b;
  color: #111111;
  border: 1px solid #a88734;
  border-radius: 0.4rem;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  background: #e3b73e;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Map Section */
.contact-map {
  background: #ffffff;
  padding: 3rem 0 4rem;
  border-top: 1px solid #d5d9d9;
}

.contact-map h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f1111;
  margin-bottom: 1.5rem;
}

.contact-map-embed {
  width: 100%;
  height: 450px;
  border: 1px solid #d5d9d9;
  border-radius: 0.4rem;
  overflow: hidden;
  background: #f0f2f2;
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .contact-hero {
    padding: 2rem 0;
  }
  .contact-hero h1 {
    font-size: 1.75rem;
  }
  .contact-content,
  .contact-map {
    padding: 2rem 0;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 1.2rem;
  }
  .contact-map h2 {
    font-size: 1.5rem;
  }
  .contact-map-embed {
    height: 350px;
  }
}

@media (max-width: 575.98px) {
  .contact-hero h1 {
    font-size: 1.5rem;
  }
  .contact-hero-desc {
    font-size: 1rem;
  }
  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 1.2rem;
  }
  .contact-map-embed {
    height: 280px;
  }
}
