/* ===================== CONTACT HERO ===================== */

.contact-hero {
  
    background: #ffffff;
  }
  
  .contact-title {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 500;
    color: #2c2c2c;
  }
  
  .contact-subtitle {
    max-width: 600px;
    margin: auto;
    font-size: 17px;
    color: #666;
    line-height: 1.7;
  }
  
  /* ===================== CONTACT SECTION ===================== */
  
  .contact-section {
    padding: 30px 0;
  }
  
  /* LEFT INFO */
  .contact-info {
    /* background: #f6f6f6; */
    padding: 80px 70px;
  }
  
  .contact-info-inner {
    max-width: 420px;
  }
  
  .contact-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #333;
  }
  
  .contact-list i {
    color: #ff2f63;
    font-size: 16px;
  }
  
  /* RIGHT FORM */
  .contact-form-wrap {
    background: #ffffff;
    padding: 80px 70px;
  }
  
  .custom-input,
  .custom-textarea {
    border: 2px solid #ddd;
    padding: 14px 16px;
    border-radius: 0;
    font-size: 15px;
  }
  
  .custom-input:focus,
  .custom-textarea:focus {
    border-color: #ff2f63;
    box-shadow: none;
  }
  
  .btn-submit {
    background: #ff2f63;
    color: #fff;
    padding: 14px 40px;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 0;
    font-weight: 600;
  }
  
  .btn-submit:hover {
    background: #e52656;
  }
  
  /* ===================== RESPONSIVE ===================== */
  
  @media (max-width: 991px) {
  
    /* .contact-hero {
      padding: 90px 0 60px;
    } */
  
    .contact-title {
      font-size: 36px;
    }
  
    .contact-info,
    .contact-form-wrap {
      padding: 50px 30px;
    }
  }
  .container-1680 {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 24px;
  }
    
  .error-msg{
    color:#d40000;
    font-size:13px;
    margin-top:4px;
    display:block;
  }
  
  .loading-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
  }
  
  .loader-box{
    background: #fff;
    padding: 32px 36px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
  }
  
  .loader-box p{
    margin-top: 14px;
    font-size: 15px;
    color: #444;
  }
  
  .spinner{
    width: 48px;
    height: 48px;
    border: 5px solid #e6e6e6;
    border-top: 5px solid #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
  }
  
  @keyframes spin{
    to{ transform: rotate(360deg); }
  }
  



  .success-popup{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn .3s ease;
  }
  
  .popup-box{
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 35px 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    animation: scaleIn .35s ease;
  }
  
  .popup-box .icon{
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #5fd18b);
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .popup-box h3{
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
  }
  
  .popup-box p{
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  
  .popup-box button{
    margin-top: 20px;
    padding: 10px 26px;
    font-size: 15px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #28a745, #5fd18b);
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
  }
  
  .popup-box button:hover{
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(40,167,69,.4);
  }
  
  /* Animations */
  @keyframes fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes scaleIn{
    from { transform: scale(.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  