.contact-page {
  background-image: url("../imgs/images/contact-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #030303;
  display: flex;
  padding:30px 0;
  justify-content: center;
  align-items: center;
  
}

.contact-container {
  display: flex;
}

.form-section {
  flex: 2;
  padding: 10px 20px;
  min-width: 0; 
}

.info-section {
  flex: 1;
  padding: 10px 20px;
  border-left: 1px solid #c5c5c5;
}

.info-section h3 {
  color: #1b65af;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.form-title {
  color: #1b65af;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.form-desc {
  font-size: 0.9em;
  color: #4e4e4e;
  margin-bottom: 20px;
}

.contact-links a {
  color: #1b65af;
  text-decoration: none;
  margin-right: 10px;
}

.contact-links a:hover {
  text-decoration: underline;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 0.9em;
  color: #4e4e4e;
  margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #c4c1c1;
  color: #1b65af;
  font-size: 1em;
  box-sizing: border-box; 
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #666;
}

.btn-submit {
  background-color: #1b65af;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

.btn-submit:hover {
  background: linear-gradient(30deg, #de9f17 2%, #cf9a15 31%, #fff68a 68%, #ffcf45 96%);
}

.info-block {
  margin-bottom: 20px;
}

.info-block span {
  margin-right: 10px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  max-width: 700px;
  margin: 20px 0;
  align-items: center;
}

.contact-page .btn-link {
    display: block;
    text-align: center;
    padding: 10px 25px;
    background: linear-gradient(30deg, #de9f17 2%, #cf9a15 31%, #fff68a 68%, #ffcf45 96%);
    color: #333;
    border-radius: 33px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    min-width: 250px;
    font-weight: 500;
}


.contact-page .btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-page .btn-link span i {
    margin-right: 5px;
    font-size: 20px;
    color: #000;
}


.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 0 5px; 
    font-size: 16px;
    font-weight: 400;
}


a.instagram,
a.facebook,
a.twitter{
  display: flex;
  justify-content: center;
  align-items: center;
  width:40px;
  height:40px;
  border-radius: 50%;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons .instagram {
    background: linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);
    color: #fff;
}

.social-icons .facebook {
  background-color: #1877f2;
  color: #fff;
}

.social-icons .twitter {
  background-color: #000000;
  color: #fff;
}

.social-icons span.address-icon {
    margin-right: 10px;
}

.social-icons span.address-icon img {
    width: 25px; 
}



.social-icons i {
  font-size: 24px;
}

.iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags
    label#Phone-error {
    position: absolute;
    margin-top: 0px;
}

.fxt-template-layout34 .fxt-form .form-group label.error {
    color: red;
    font-size: 14px;
}
form#step1Form .error {
    color: red;
    font-size: 13px;
    text-transform: capitalize;
}

.contact-number-col .iti.iti--allow-dropdown.iti--separate-dial-code.iti--show-flags {
    width: 100%;
}



.flag-circle {
  width: 48px;
  height: 48px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.address-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px 0;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.address-item:hover {
  background-color: #f0f0f0;
}

.address-text {
  line-height: 1.5;
  color: #2d2d2d;
}

.address-text .main {
  font-weight: normal;
  font-size: 14px;
  color: #1a1a1a;
}


@media (max-width: 600px) {
  .contact-container {
    flex-direction: column; 
  }

  .form-section,
  .info-section {
    flex: 1; 
    padding: 10px;
    border-left: none; 
  }

  .info-section {
    border-top: 1px solid #c5c5c5; 
  }

  .form-title,
  .info-section h3 {
    font-size: 1.5em; 
  }

  .form-desc {
    font-size: 0.8em;
  }

  .input-group input,
  .input-group textarea {
    font-size: 0.9em;
    padding: 8px;
  }

  .btn-submit {
    font-size: 0.9em;
    padding: 8px 16px;
  }

  .contact-actions {
    flex-direction: column; 
    gap: 10px;
  }

  .btn-link {
    font-size: 16px;
    padding: 8px;
  }

  .social-icons {
    gap: 15px;
    padding: 15px 0;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons i {
    font-size: 20px;
  }

  .flag-circle {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .address-text .main {
    font-size: 1rem;
  }

  .address-item {
    padding: 10px;
  }
}


@media (min-width: 601px) and (max-width: 1024px) {
  .contact-container {
    flex-direction: column; 
    width: 95%;
  }

  .form-section,
  .info-section {
    flex: 1;
    padding: 15px;
    border-left: none;
  }

  .info-section {
    border-top: 1px solid #c5c5c5; 
  }

  .form-title,
  .info-section h3 {
    font-size: 1.8em; 
  }

  .form-desc {
    font-size: 0.85em;
  }

  .input-group input,
  .input-group textarea {
    font-size: 0.95em;
    padding: 9px;
  }

  .btn-submit {
    font-size: 0.95em;
    padding: 9px 18px;
  }

  .contact-actions {
    gap: 10px;
  }

  .btn-link {
    font-size: 18px;
    padding: 9px;
  }

  .social-icons {
    gap: 18px;
    padding: 18px 0;
  }

  .flag-circle {
    width: 44px;
    height: 44px;
    margin-right: 14px;
  }

  .address-text .main {
    font-size: 13px;
  }
}


@media (min-width: 769px) and (max-width: 1024px) {
  .contact-container {
    width: 90%;
  }

  .form-section {
    flex: 1.5; 
    padding: 15px;
  }

  .info-section {
    flex: 1;
    padding: 15px;
  }

  .form-title,
  .info-section h3 {
    font-size: 1.9em;
  }

  .form-desc {
    font-size: 0.9em;
  }

  .input-group input,
  .input-group textarea {
    font-size: 0.95em;
  }

  .btn-submit {
    font-size: 0.95em;
  }

  .btn-link {
    font-size: 18px;
  }

  .social-icons {
    gap: 18px;
  }
}


@media (min-width: 1025px) {
  .contact-container {
    width: 100%; 
  }

  .form-section,
  .info-section {
    padding: 20px; 
  }
}

@media (max-width: 767px) {
    
.footer-address a {
    width: fit-content;
}

}