/* ===============================
   CONTACT HEADER
================================= */

.contact-header {
  background-color: #fcf3e9;
}

.contact-card {
  background-color: #6cc0b8;
  border-radius: 40px;
  padding: 40px;
  max-width: 800px;
  /* adjust if needed */
  margin: 0 auto;
  position: relative;
}

/* TEXT */
.contact-text {
  max-width: 520px;
}

.contact-title {
  color: #f5c54c;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-subtitle {
  color: #f5c54c;
  font-size: 20px;
  line-height: 1.4;
}

/* IMAGE */
.contact-image img {
  max-width: 320px;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-card {
    text-align: center;
    flex-direction: column;
    gap: 30px;
  }

  .contact-image img {
    max-width: 240px;
  }
}

/* ===============================
   CONTACT BODY
================================= */

.contact-body {
  background-color: #6cc0b8;
}

.contact-form {
  max-width: 800px;
  /* adjust if needed */
  margin: auto;
}

/* TITLE */
.contact-form-title {
  color: #0c2e81;
  font-size: 28px;
  font-weight: 800;
}

/* INPUTS */
.custom-input {
  border-radius: 30px;
  padding: 12px 18px;
  border: none;
  font-size: 14px;
}

.custom-input::placeholder {
  color: #9fa8da;
}

.custom-input:focus {
  box-shadow: none;
}

.message-box {
  min-height: 140px;
  border-radius: 20px;
}

/* BUTTONS */
.send-btn,
.partner-btn {
  background-color: #f5c54c;
  color: #0c2e81;
  font-weight: bold;
  border-radius: 30px;
  padding: 8px 20px;
  border: none;
  transition: all 0.3s ease-in-out;
  animation: pulse-animation-gold 2s infinite;
}

.send-btn:hover,
.partner-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 15px rgba(12, 46, 129, 0.4);
  background-color: #0c2e81;
  color: #f5c54c;
  animation-play-state: paused;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  text-decoration: none;
}

.social-icons i {
  color: #0c2e81;
  /* Dark Blue */
  font-size: 32px;
  /* Large icons */
  cursor: pointer;
  transition: opacity 0.3s;
}

.social-icons i:hover {
  opacity: 0.8;
}

/* CONTACT INFO */
.contact-info-title {
  color: #0c2e81;
  font-weight: 800;
  font-size: 28px;
  /* Larger title */
}

.contact-info li {
  color: #0c2e81;
  margin-bottom: 20px;
  /* More spacing */
  font-size: 18px;
  /* Larger text */
}

.contact-info i {
  color: #0c2e81;
  width: 40px;
  /* Fixed width for alignment */
  text-align: center;
}

.contact-text-item {
  font-weight: 600;
}

/* MAP */
.map-box {
  width: 100%;
  max-width: 400px;
  /* Larger map container */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-box iframe {
  width: 100%;
  height: 300px;
  /* Taller map */
  border: none;
}

/* PARTNER BUTTON override if needed */
.partner-btn {
  font-size: 16px;
  padding: 12px 30px;
}

/* ===============================
   MOBILE RESPONSIVE FIXES
================================= */

@media (max-width: 992px) {
  .contact-info-title {
    text-align: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .partner-btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }

  .col-lg-5.d-flex.flex-column.align-items-end {
    align-items: center !important;
    margin-top: 30px;
  }

  .social-icons {
    justify-content: center;
  }

  .map-box {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  /* CONTACT HEADER */
  .contact-header {
    padding: 30px 20px;
  }

  .contact-card {
    padding: 40px 25px;
    gap: 20px;
    text-align: center;
    border-radius: 30px;
  }

  .contact-text {
    max-width: 100%;
  }

  .contact-title {
    font-size: 38px;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .contact-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .contact-image img {
    max-width: 200px;
    position: relative;
    margin: 0 auto;
  }

  /* CONTACT BODY */
  .contact-body {
    padding: 40px 20px;
  }

  .contact-form {
    padding: 0 10px;
  }

  .contact-form-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
  }

  /* FORM INPUTS */
  .custom-input {
    font-size: 14px;
    padding: 12px 16px;
    margin-bottom: 15px;
  }

  .message-box {
    min-height: 120px;
  }

  /* BUTTON + SOCIAL */
  .send-btn {
    padding: 10px 25px;
    font-size: 15px;
    display: block;
    margin: 15px auto 0;
  }

  .social-icons {
    margin-top: 25px;
  }

  .social-icons i {
    font-size: 28px;
  }

  /* CONTACT INFO */
  .contact-info-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact-info li {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
  }

  .contact-info i {
    width: 35px;
  }

  .map-box {
    max-width: 100%;
    margin-top: 25px;
  }

  .map-box iframe {
    height: 250px;
  }

  .partner-btn {
    margin-top: 25px;
    padding: 10px 25px;
    font-size: 15px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  /* HEADER */
  .contact-header {
    padding: 25px 15px;
  }

  .contact-card {
    padding: 30px 20px;
    border-radius: 25px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 14px;
  }

  .contact-image img {
    max-width: 170px;
  }

  /* BODY */
  .contact-body {
    padding: 30px 15px;
  }

  .contact-form-title {
    font-size: 20px;
  }

  .custom-input {
    font-size: 13px;
    padding: 10px 14px;
  }

  .message-box {
    min-height: 100px;
  }

  .send-btn {
    font-size: 14px;
    padding: 8px 20px;
  }

  .social-icons i {
    font-size: 26px;
  }

  .contact-info-title {
    font-size: 20px;
  }

  .contact-info li {
    font-size: 14px;
  }

  .map-box iframe {
    height: 220px;
  }

  .partner-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}