/* Contact Section */
.contact-section {
  background: var(--color-gradient-contact);
  padding: var(--section-padding) 0;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

/* Contact Modal */
.modal-content {
  border-radius: 1rem;
  border: none;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  background: var(--color-gradient-contact);
}

.modal-title {
  color: white;
  font-weight: 600;
}

.btn-close {
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 2rem;
}

.contact-info h6 {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-info i {
  color: var(--color-warning);
  font-size: 1.25rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--color-warning);
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-warning-rgb), 0.25);
  border-color: var(--color-warning);
}

.form-label {
  font-weight: 500;
  color: #000;
}

/* Modal Text Colors */
.modal .form-label,
.modal .modal-body p,
.modal .contact-info h6,
.modal .contact-info p,
.modal .contact-info a {
  color: #000 !important;
}

.modal .contact-info {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
}

.modal .contact-info i {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .contact-info {
    margin-top: 2rem;
  }
}
.contact-item h6 {
  font-family: var(--font-poppins);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.22px;
}

/* Footer */
.footer-section {
  background-color: var(--color-dark-brown);
  padding: 5rem 0;
}

.footer-logo {
  width: 94px;
  height: 76px;
}

.social-icon {
  font-size: 1.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
}
