/* Section background */
.cta-section {
  background: var(--tertiory-color);
}

/* Title */
.cta-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #1f2937;
}

/* Text */
.cta-text {
  font-size: 1rem;
  color: #4b5563;
  max-width: 480px;
}

/* Image */
.cta-image {
  border-radius: 20px;
  max-width: 100%;
}

/* Responsive: ≤ 980px */
@media (max-width: 980px) {
  .cta-content {
    text-align: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    margin-left: auto;
    margin-right: auto;
  }
}

/* contct section */
.contact-card {
  display: flex;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* LEFT PANEL WIDTH */
.contact-left {
  width: 40%;
  background: #273bd8;
  color: #fff;
  padding: 50px 40px;
}

/* RIGHT PANEL WIDTH */
.contact-right {
  width: 60%;
  padding: 50px 60px;
}

/* Text */
.contact-left p {
  font-size: 14px;
  line-height: 1.7;
  color: #e8ebff;
}

/* Bullet list */
.help-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.help-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
}

.help-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6cff90;
  font-size: 20px;
}

/* Inputs */
.form-control {
  border-radius: 10px;
  padding: 12px;
}

/* RESPONSIVE FIX */
@media (max-width: 991px) {
  .contact-card {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    padding: 30px;
  }

  .contact-left {
    text-align: center;
  }
}
.btn-success {
  background-color: #729E40 !important;
  border-color: #729E40 !important;
}

.btn-success:hover {
  background-color: #5f8435 !important;
}

.location-section {
  background: #ffffff;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 300px;
  }
}
