.contact-page-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Premium Info Cards */
.contact-info-card {
  background: #f8f9fc;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #eaeaea;
  transition: all 0.4s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
}
.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(10, 37, 64, 0.08);
  border-bottom-color: #d4af37;
}
.ci-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: 0.4s;
}
.contact-info-card:hover .ci-icon {
  background: #0a2540;
  color: #d4af37;
}
.ci-title {
  color: #0a2540;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.ci-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Map & Form Area */
.map-box-contact {
  height: 100%;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 4px solid #f8f9fc;
}
.map-box-contact iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrapper {
  background: #0a2540;
  padding: 45px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(10, 37, 64, 0.2);
  color: #ffffff;
}
.contact-form-wrapper h3 {
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.8rem;
}
.form-control-custom {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 20px;
}
.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-control-custom:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* FAQ Section */
.faq-section {
  background: #f8f9fc;
  padding: 90px 0;
}
.accordion-button {
  font-weight: 600;
  color: #0a2540;
  padding: 20px;
  box-shadow: none !important;
  border: 1px solid #eaeaea;
}
.accordion-button:not(.collapsed) {
  background-color: #0a2540;
  color: #ffffff;
  border-color: #0a2540;
}
.accordion-button::after {
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.accordion-body {
  background: #ffffff;
  color: #555;
  line-height: 1.8;
  padding: 25px;
  border: 1px solid #eaeaea;
  border-top: none;
}
