.qa-section {
  position: relative;
  padding: 30px 0;
  background: linear-gradient(135deg, #f8fbff, #eef4fb);
  overflow: hidden;
}

/* Decorative Background */
.qa-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(29, 66, 139, 0.05);
  top: -150px;
  left: -120px;
}

.qa-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(232, 187, 10, 0.08);
  right: -80px;
  bottom: -80px;
}

/*=========================================
        SECTION HEADER
=========================================*/
.qa-header {
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.qa-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(232, 187, 10, 0.12);
  border: 1px solid rgba(232, 187, 10, 0.4);
  border-radius: 50px;
  color: #1d428b;
  font-weight: 600;
  margin-bottom: 20px;
}

.qa-badge i {
  color: #e8bb0a;
}

.qa-title {
  font-size: 46px;
  font-weight: 800;
  color: #1d428b;
  margin-bottom: 18px;
  position: relative;
}

.qa-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 90px;
  height: 4px;
  border-radius: 50px;
  background: #e8bb0a;
}

.qa-subtitle {
  margin-top: 35px;
  font-size: 17px;
  line-height: 30px;
  color: #6b7280;
}

/*=========================================
        LAYOUT
=========================================*/

.qa-wrap {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 35px;
  position: relative;
  z-index: 2;
}

/*=========================================
        CARDS
=========================================*/

.qa-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border: 1px solid #edf1f7;
}

.qa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/*=========================================
        CONTACT INFO CARD
=========================================*/

.qa-info {
  position: relative;
  overflow: hidden;
}

.qa-info::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(29, 66, 139, 0.04);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.info-heading {
  font-size: 24px;
  color: #1d428b;
  font-weight: 700;
  margin-bottom: 35px;
}

/*=========================================
        CONTACT ITEMS
=========================================*/
.qa-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.qa-item:last-child {
  margin-bottom: 0;
}

.qa-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #1d428b, #3468c5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.35s;
}

.qa-item:hover .qa-icon {
  background: #e8bb0a;
  color: #1d428b;
  transform: rotateY(180deg);
}

.qa-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1d428b;
  margin-bottom: 8px;
}

.qa-item p a {
  margin: 0;
  color: #6b7280;
  line-height: 28px;
  font-size: 15px;
}

.qa-item p a:hover {
  color: #d9ab07;
}

/* social icons */
.qa-social {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.qa-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d428b;
  color: #fff;
  text-decoration: none;
  transition: 0.35s;
}

.qa-social a:hover {
  background: #e8bb0a;
  color: #1d428b;
  transform: translateY(-5px);
}

/*=========================================
        CONTACT FORM
=========================================*/

.qa-form {
  position: relative;
}

.form-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1d428b;
  margin-bottom: 10px;
}

.form-text {
  color: #6b7280;
  line-height: 28px;
  margin-bottom: 35px;
  font-size: 15px;
}

/*=========================================
        FORM GRID
=========================================*/

.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/*=========================================
        INPUT GROUP
=========================================*/

.input-group-custom {
  position: relative;
}

.input-group-custom i {
  position: absolute;

  left: 18px;

  top: 50%;

  transform: translateY(-50%);

  color: #1d428b;

  font-size: 16px;

  transition: 0.3s;
}

.input-group-custom input {
  width: 100%;

  height: 58px;

  padding: 0 18px 0 50px;

  border: 1px solid #dbe3ee;

  border-radius: 14px;

  background: #fff;

  font-size: 15px;

  transition: 0.3s;

  outline: none;
}

/*=========================================
        TEXTAREA
=========================================*/

.textarea-group {
  margin-bottom: 25px;
}

.textarea-group i {
  top: 24px;

  transform: none;
}

.textarea-group textarea {
  width: 100%;

  padding: 18px 18px 18px 50px;

  border: 1px solid #dbe3ee;

  border-radius: 14px;

  resize: none;

  background: #fff;

  font-size: 15px;

  min-height: 170px;

  transition: 0.3s;

  outline: none;
}

/*=========================================
        INPUT FOCUS
=========================================*/

.input-group-custom input:focus,
.textarea-group textarea:focus {
  border-color: #1d428b;

  box-shadow: 0 0 0 4px rgba(29, 66, 139, 0.08);
}

.input-group-custom input:focus + i,
.textarea-group textarea:focus + i {
  color: #e8bb0a;
}

/*=========================================
        PLACEHOLDER
=========================================*/

.input-group-custom input::placeholder,
.textarea-group textarea::placeholder {
  color: #9ca3af;
}

/*=========================================
        BUTTON
=========================================*/

.qa-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  border: none;

  background: linear-gradient(135deg, #1d428b, #2c5db8);

  color: #fff;

  padding: 16px 38px;

  border-radius: 50px;

  font-size: 16px;

  font-weight: 600;

  transition: 0.35s;

  overflow: hidden;

  position: relative;
}

.qa-btn i {
  font-size: 15px;
}

.qa-btn:hover {
  transform: translateY(-4px);

  background: linear-gradient(135deg, #e8bb0a, #d9ab07);

  color: #1d428b;

  box-shadow: 0 18px 35px rgba(232, 187, 10, 0.35);
}

/* Shine Effect */

.qa-btn::before {
  content: "";

  position: absolute;

  top: 0;

  left: -120%;

  width: 80%;

  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  transition: 0.7s;
}

.qa-btn:hover::before {
  left: 140%;
}

/*=========================================
        RESPONSE NOTE
=========================================*/

.contact-note {
  margin-top: 20px;

  color: #6b7280;

  font-size: 14px;
}

.contact-note i {
  color: #22c55e;

  margin-right: 8px;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1199px) {
  .qa-wrap {
    grid-template-columns: 330px 1fr;
  }
}

@media (max-width: 991px) {
  .qa-section {
    padding: 80px 0;
  }

  .qa-wrap {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .qa-card {
    padding: 30px;
  }

  .qa-title {
    font-size: 38px;
  }

  .qa-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .qa-section {
    padding: 70px 0;
  }

  .qa-grid {
    grid-template-columns: 1fr;
  }

  .qa-title {
    font-size: 30px;
  }

  .form-heading {
    font-size: 24px;
  }

  .qa-card {
    padding: 25px;
  }

  .qa-btn {
    width: 100%;
  }

  .info-heading {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .qa-section {
    padding: 60px 0;
  }

  .qa-title {
    font-size: 26px;
  }

  .qa-subtitle {
    font-size: 15px;

    line-height: 27px;
  }

  .qa-badge {
    font-size: 14px;

    padding: 8px 18px;
  }

  .qa-card {
    padding: 22px;
  }

  .qa-item {
    gap: 14px;
  }

  .qa-icon {
    width: 48px;

    height: 48px;

    font-size: 18px;
  }

  .qa-item h5 {
    font-size: 16px;
  }

  .qa-item p {
    font-size: 14px;

    line-height: 24px;
  }

  .form-heading {
    font-size: 22px;
  }

  .form-text {
    font-size: 14px;
  }

  .input-group-custom input {
    height: 54px;
  }

  .textarea-group textarea {
    min-height: 150px;
  }

  .qa-social {
    justify-content: center;
  }
}

/*=========================================
        MAP SECTION
=========================================*/

.qa-map {

  background: linear-gradient(135deg, #f8fbff, #eef4fb);

  position: relative;

  overflow: hidden;
}

.qa-map::before {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  background: rgba(29, 66, 139, 0.05);

  border-radius: 50%;

  top: -100px;

  left: -100px;
}

.qa-map-header {
  max-width: 760px;

  margin: 0 auto 60px;
}

/*=========================================
        MAP CARD
=========================================*/

.qa-map-card {
  position: relative;

  border-radius: 22px;

  overflow: hidden;

  background: #fff;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.qa-map-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.qa-map-card iframe {
  width: 100%;

  height: 550px;

  border: 0;

  display: block;
}

/*=========================================
        FLOATING INFO CARD
=========================================*/

.map-info-card {
  position: absolute;

  top: 30px;

  left: 30px;

  z-index: 10;

  width: 330px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  border-radius: 18px;

  padding: 25px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.map-info-card h4 {
  color: #1d428b;

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 18px;
}

.map-info-card h4 i {
  color: #e8bb0a;

  margin-right: 10px;
}

.map-info-card p {
  color: #6b7280;

  line-height: 28px;

  margin-bottom: 25px;
}

.map-info-card p i {
  color: #1d428b;

  margin-right: 8px;
}

.direction-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 24px;

  background: #1d428b;

  color: #fff;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.35s;
}

.direction-btn:hover {
  background: #e8bb0a;

  color: #1d428b;

  transform: translateY(-3px);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 991px) {
  .qa-map {
    padding: 80px 0;
  }

  .qa-map-card iframe {
    height: 450px;
  }

  .map-info-card {
    position: relative;

    top: auto;

    left: auto;

    width: 100%;

    border-radius: 0;

    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .qa-map {
    padding: 70px 0;
  }

  .qa-map-card iframe {
    height: 350px;
  }

  .map-info-card {
    padding: 20px;
  }

  .map-info-card h4 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .qa-map {
    padding: 60px 0;
  }

  .qa-map-card {
    border-radius: 16px;
  }

  .qa-map-card iframe {
    height: 300px;
  }

  .map-info-card {
    padding: 18px;
  }

  .direction-btn {
    width: 100%;

    justify-content: center;
  }
}
