/*====================================
    CONTACT SECTION
====================================*/

.contact-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-box i {
  width: 60px;
  height: 60px;
  background: #074f8f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-box h5 {
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-box p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.contact-box a {
  color: #666;
  text-decoration: none;
  display: inline-block;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  height: 55px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: none;
}

.contact-form textarea.form-control {
  height: auto;
}

.contact-form .form-control:focus {
  border-color: #074f8f;
  box-shadow: none;
}

.btn-contact {
  background: #074f8f;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #053867;
}

.map-section iframe {
  display: block;
}

/*====================================
    MOBILE
====================================*/

@media (max-width: 991px) {
  .contact-form {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-box {
    padding: 20px;
  }
}

/*====================================
    RESPONSIVE
====================================*/

@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-form {
    margin-top: 30px;
    padding: 30px;
  }

  .contact-box {
    padding: 22px;
    gap: 15px;
  }

  .contact-box i {
    width: 55px;
    height: 55px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .contact-box h5 {
    font-size: 18px;
  }

  .contact-box p,
  .contact-box a {
    font-size: 15px;
    word-break: break-word;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
  }

  .contact-box i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 18px;
  }

  .contact-box div {
    flex: 1;
    min-width: 0;
  }

  .contact-box h5 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .contact-box p,
  .contact-box a {
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form .form-control {
    height: 50px;
    font-size: 14px;
  }

  .contact-form textarea.form-control {
    min-height: 140px;
  }

  .btn-contact {
    width: 100%;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .contact-box {
    padding: 16px;
  }

  .contact-box i {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 16px;
  }

  .contact-box h5 {
    font-size: 16px;
  }

  .contact-box p,
  .contact-box a {
    font-size: 13px;
  }
}

/* =================================
VIDEO 
==================================== */
.video-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 79, 143, 0.25), rgba(0, 0, 0, 0.2));
  z-index: -1;
}

.banner-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .video-banner {
    height: 350px;
  }

  .banner-content h1 {
    font-size: 34px;
  }

  .banner-content p {
    font-size: 16px;
  }
}
