/* Contact Page Styles */
.contact-page {
  min-height: 100vh;
}

/* Hero Section */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.707), rgba(0, 0, 0, 0.75)), url(../images/newsletter.jpg) no-repeat center center;
    background-size: cover;
  padding: 100px 0 80px;
  margin-bottom: 0;
}


.contact-hero h1 {
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Contact Section */
.contact-section {
  background-color: #f8f9fa;
}

/* Contact Information */
.contact-info-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-wrapper h3 {
  color: var(--brown-primary);
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-item .icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brown-primary) 0%, #8B6F47 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.contact-info-item .info-content h5 {
  color: var(--brown-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-item .info-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* Social Links */
.social-links h5 {
  color: var(--brown-primary);
  font-weight: 600;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--brown-primary) 0%, #8B6F47 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(111, 78, 55, 0.4);
  color: white;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
  color: var(--brown-primary);
  font-weight: 600;
}

.contact-form-wrapper .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-control {
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--brown-primary);
  box-shadow: 0 0 0 0.2rem rgba(111, 78, 55, 0.15);
}

.contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.contact-form-wrapper .btn-brown {
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .btn-brown:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(111, 78, 55, 0.3);
}

.contact-form-wrapper .alert {
  border-radius: 8px;
  padding: 1rem;
}

/* Map Section */


.map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.map-wrapper iframe {
  display: block;
  filter: grayscale(20%);
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-info-wrapper,
  .contact-form-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 60px 0 40px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-info-item {
    gap: 1rem;
  }

  .contact-info-item .icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}
