/* ================= CONTACT PAGE STYLES ================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600&display=swap');

* {
  font-family: 'Sora', sans-serif;
}

body {
  background: #000000;
  color: #ffffff;
}

/* ================= CONTACT HERO SECTION ================= */

.contact-hero-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
    url('https://images.unsplash.com/photo-1560493676-04071c5f467b')
    center/cover no-repeat;
  background-attachment: fixed;
  padding: 150px 0 80px;
  position: relative;
}

.contact-hero-title {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #2471ff;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ================= MAIN CONTACT SECTION ================= */

.main-contact-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #000000,
    #0e2041
  );
  background-attachment: fixed;
}

/* LEFT SIDE - INFO */

.contact-intro {
  margin-bottom: 50px;
}

.intro-title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.intro-text a {
  color: #2471ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.intro-text a:hover {
  color: #4a9aff;
  text-decoration: underline;
}

/* WORLD MAP */

.world-map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  opacity: 0.8;
  filter: brightness(0.7) contrast(1.1);
}

/* RIGHT SIDE - CONTACT FORM */

.contact-form-wrapper {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 22px;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.contact-form .form-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: #2471ff;
  box-shadow: 0 0 0 3px rgba(36, 113, 255, 0.2);
  color: #ffffff;
  outline: none;
}

.contact-form .form-select {
  cursor: pointer;
}

.contact-form .form-select option {
  background: #0e2041;
  color: #ffffff;
}

/* Checkbox */
.form-check-input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #2471ff;
  border-color: #2471ff;
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(36, 113, 255, 0.2);
}

.form-check-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-weight: 300;
}

/* Legal Text */
.legal-text {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.legal-text a {
  color: #2471ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-text a:hover {
  color: #4a9aff;
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  padding: 14px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2078ff, #0e2041);
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.6px;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(32, 120, 255, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(32, 120, 255, 0.5);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(4px);
}

/* ================= TEAM CONTACTS SECTION ================= */

.team-contacts-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #0e2041,
    #000000
  );
  background-attachment: fixed;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.6px;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* Team Contact Cards */

.team-contact-card {
  height: 100%;
  padding: 45px 35px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-contact-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(
    135deg,
    rgba(45, 90, 190, 0.35),
    rgba(65, 120, 235, 0.25)
  );
  box-shadow:
    0 28px 80px rgba(30, 70, 160, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Team Photo */

.team-photo-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 3px solid rgba(36, 113, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

.team-contact-card:hover .team-photo-wrapper {
  border-color: #2471ff;
  transform: scale(1.05);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(20, 50, 120, 0.3),
    rgba(10, 30, 90, 0.2)
  );
}

.team-photo-placeholder i {
  font-size: 50px;
  color: rgba(255, 255, 255, 0.6);
}

/* Team Info */

.team-member-name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-member-position {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.team-contact-link {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #2471ff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.team-contact-link:hover {
  color: #4a9aff;
  transform: translateX(5px);
}

.team-contact-link i {
  font-size: 14px;
}

/* ================= FOOTER ================= */

.footer-section {
  padding: 80px 0 40px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #2078ff;
  padding-left: 5px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2078ff;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #2078ff;
}

/* ================= RESPONSIVE STYLES ================= */

@media (max-width: 991px) {
  .contact-hero-title {
    font-size: 40px;
  }

  .contact-hero-subtitle {
    font-size: 20px;
  }

  .main-contact-section {
    padding: 70px 0;
  }

  .contact-form-wrapper {
    padding: 35px;
  }

  .intro-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 36px;
  }

  .team-contacts-section {
    padding: 70px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .contact-hero-section {
    padding: 120px 0 60px;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 18px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .intro-title {
    font-size: 22px;
  }

  .section-title {
    font-size: 30px;
  }

  .team-photo-wrapper {
    width: 120px;
    height: 120px;
  }

  .team-member-name {
    font-size: 18px;
  }

  .team-member-position {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .contact-hero-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .main-contact-section {
    padding: 50px 0;
  }

  .contact-form-wrapper {
    padding: 22px;
  }

  .intro-title {
    font-size: 20px;
  }

  .intro-text {
    font-size: 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .team-contact-card {
    padding: 35px 25px;
  }

  .team-photo-wrapper {
    width: 100px;
    height: 100px;
  }

  .submit-btn {
    padding: 12px 32px;
    font-size: 15px;
  }
}
