 /* ----------------------------- */
 /* ------- CONTACT PAGE CSS ----- */
 /* ----------------------------- */
 .contact-section-wrapper {
     background-color: #FFF9F5;
     width: 100%;
     min-height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 .contact-section-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
     z-index: 0;
 }

 .contact-section-wrapper::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(255, 180, 71, 0.05) 0%, transparent 70%);
     z-index: 0;
 }

 .container {
     position: relative;
     z-index: 1;
 }

 .section-header {
     margin-bottom: 4.5rem;
     position: relative;
 }

 .back-btn {
     color: #FF6B35;
     font-weight: 600;
     font-size: 15px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 20px;
     background-color: white;
     border: 2px solid #FFB794;
     border-radius: 10px;
     text-decoration: none;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 0 2px 8px rgba(255, 107, 53, 0.08);
 }

 .back-btn:hover {
     background-color: #FF6B35;
     color: white;
     border-color: #FF6B35;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(255, 107, 53, 0.12);
 }

 .contact-maintitle {
     font-size: 3rem;
     font-weight: 800;
     color: #1a1a1a;
     margin-bottom: 0.75rem;
     letter-spacing: -0.5px;
     position: relative;
     display: inline-block;
 }

 .contact-subtitle {
     font-size: 1.125rem;
     color: #666666;
     max-width: 600px;
     margin: 0 auto 0;
     line-height: 1.7;
 }

 .contact-title-1 {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 2.5rem;
     position: relative;
     padding-bottom: 1rem;
 }

 /* .contact-title-1::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 80px;
     height: 4px;
     background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFB347 100%);
     border-radius: 2px;
 } */

 .contact-info-item-text {
     margin-bottom: 40px;
     padding-left: 1.5rem;
     border-left: 3px solid #FFD7C2;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
 }

 .contact-info-item-text:hover {
     border-left-color: #FF6B35;
 }

 .info-label-text {
     font-size: 22px;
     font-weight: 600;
     color: #FF6B35;
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .info-label-text i {
     font-size: 1.1rem;
     width: 24px;
     height: 16px;
     color: #FF6B35;
 }

 .contact-info-content-text {
     font-size: 1.125rem;
     font-weight: 500;
     color: #333333;
     line-height: 1.7;
     background: transparent;
     border: none;
     cursor: pointer;
     display: block;
     width: 100%;
     text-align: left;
     padding: 0;
     margin: 0;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     text-decoration: none;
 }

 .contact-form-card {
     background-color: #ffffff;
     border-radius: 14px;
     padding: 3rem;
     box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
     height: 100%;
     border: 1px solid #FFD7C2;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     overflow: hidden;
 }

 .contact-form-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFB347 100%);
 }

 .contact-form-card:hover {
     box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15), 0 10px 30px rgba(255, 107, 53, 0.1);
 }

 .form-label {
     font-weight: 600;
     color: #1a1a1a;
     margin-bottom: 0.75rem;
     font-size: 0.95rem;
 }

 .form-control {
     padding: 0.875rem 1rem;
     border: 2px solid #FFD7C2;
     border-radius: 10px;
     font-size: 1rem;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     color: #333333;
     background-color: white;
 }

 .form-control:focus {
     border-color: #FF6B35;
     box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
     outline: none;
 }

 .form-control::placeholder {
     color: #888888;
     font-weight: 400;
 }

 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }

 .submit-btn {
     background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFB347 100%);
     border: none;
     color: white;
     width: 100%;
     padding: 1rem;
     border-radius: 10px;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 1rem;
     letter-spacing: 0.5px;
     position: relative;
     overflow: hidden;
 }

 .submit-btn:hover {
     background: linear-gradient(135deg, #E55A2B 0%, #FF6B35 50%, #FF8C42 100%);
     transform: translateY(-3px);
     box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
 }

 .was-validated .form-control:invalid {
     border-color: #ef4444;
 }

 .was-validated .form-control:valid {
     border-color: #10b981;
 }

 .invalid-feedback {
     font-size: 0.875rem;
     color: #ef4444;
     margin-top: 0.5rem;
 }

 .success-message {
     background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
     color: #065f46;
     padding: 1.25rem;
     border-radius: 10px;
     margin-top: 1.5rem;
     display: none;
     align-items: center;
     gap: 12px;
     border-left: 4px solid #10b981;
     animation: fadeIn 0.3s ease-out;
 }

 .form-note i {
     color: #FF6B35;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .contact-form-card {
     animation: fadeIn 0.6s ease-out;
 }
 .was-validated .form-control:invalid {
  border-color: #dc3545;
}

.was-validated .form-control:valid {
  border-color: #198754;
}
