body {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  color: #222;
}

/* CONTACT SECTION */
.ct-contact-wrapper {
  background: #fff;
}

.ct-contact-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  background: #e9f5f0;
  border-radius: 30px;
      overflow: hidden;

}

/* FORM CARD */
.ct-form-card {
  background: #e9f5f0;
  flex: 1 1 48%;
  border-radius: 30px;
      overflow: hidden;
}

.ct-form-card h3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #0f3e36;
}

.ct-form-card p {
  font-size: 16px;
  color: #555;
}

.form-control {
  border: 1px solid #d4e4de;
  border-radius: 6px;
  height: 44px;
  font-size: 0.9rem;
  color: #333;
}

textarea.form-control {
  min-height: 110px;
}

.form-control::placeholder {
  color: #7b8c87;
}

/* SUBMIT BUTTON */
.ct-btn-submit {
  background: linear-gradient(90deg, #145c52 0%, #1e9d67 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.ct-btn-submit:hover {
  background: linear-gradient(90deg, #145c52 0%, #1e9d67 100%);
}

/* INFO CARD */
.ct-info-card {
  background: #fff;
  flex: 1 1 48%;
  border-radius: 28px;
   box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.06);
}

.ct-info-card h3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #0f3e36;
}

.ct-info-card p {
  font-size: 16px;
  color: #555;
}

.ct-contact-info li {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    position: relative;
    padding-left: 35px;
}

.ct-contact-info i {
    color: #1e9d67;
    position: absolute;
    left: 0;
    top: 7px;
    margin-right: 0;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.ct-contact-info li::after {
    content: "";
    display: table;
    clear: both;
}

.ct-contact-info li span {
    display: block;
    font-weight: 500;
    color: #0d3e34;
}

/* SOCIAL ICONS */
.ct-follow-us a {
  width: 32px;
  height: 32px;
  background: #f6f6f6;
  color: #145c52;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.ct-follow-us a:hover {
  background: #145c52;
  color: #fff;
}

/* FAQ SECTION */
.ct-faq-section {
  background: #fff;
}

.ct-faq-section h3 {
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 40px;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: #e9f5f0;
  border: 1px solid #cfe8e2;
  border-radius: 14px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.accordion-button {
  background: transparent;
  color: #0d3e35;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 18px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #e9f5f0;
  color: #0e3e34;
}

.accordion-body {
  background: #e9f5f0;
  padding: 20px 28px;
  color: #333;
  font-size: 0.96rem;
  line-height: 1.6;
  border-radius: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ct-contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .ct-form-card,
  .ct-info-card {
    flex: 1 1 100%;
    border-radius: 12px;
    margin-bottom: 20px;
  }
}
/* === Hero Section === */
.contact-hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/contact.webp') center center / cover no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-hero-section h1 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    margin: 10rem 0rem 1rem 0rem;
}

.contact-hero-section p {
  font-size: 1.2rem;
  /* max-width: 600px; */
  margin: 0 auto;
}

