/* Contact Us Page Specific Styles */
@import url("base.css");

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-hero p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Enhanced Contact Form */
.contact .contact-form-container {
  position: relative;
  overflow: hidden;
}

.contact .contact-form-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.05), transparent);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Form Enhancements */
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #059669, #10b981);
  border: none;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.contact-form .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-form .btn-primary:hover::before {
  left: 100%;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f9fafb;
}

.map-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 400px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.1rem;
}

/* Office Hours Section */
.hours-section {
  padding: 80px 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.hours-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #10b981;
}

.hours-card i {
  font-size: 2.5rem;
  color: #10b981;
  margin-bottom: 1.5rem;
}

.hours-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: #4b5563;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: 500;
}

.hours-list .time {
  color: #10b981;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f9fafb;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question i {
  color: #10b981;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #6b7280;
  line-height: 1.6;
}
.about-banner {
    padding-top: 95px;
    height: 350px;
    background: #0955ac;
    align-items: center;
    display: block;
    background-image: url(images/bim-image-02.jpg);
    position: relative;
}
.about-banner h1 {
    color: #ffffff;
    font-weight: 500;
}
.about-banner p {
    color: #fff;
}
nav.breadcrumb {
    color: #fff;
}
nav.breadcrumb a {
    color: #fff;
}
.page-header-content {
    display: inline-block;
    background: #00000087;
    padding: 20px;
    margin-top: 70px;
    font-weight: 300;
    border-radius: 7px;
}
section.values {
    margin-bottom: 50px;
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .map-section,
  .hours-section,
  .faq-section {
    padding: 60px 0;
  }

  .map-container {
    height: 300px;
  }

  .hours-card {
    padding: 2rem;
  }
}
