 .contact-container {
     max-width: 1200px;
     width: 100%;
     background: white;
     border-radius: 30px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     display: grid;
     grid-template-columns: 1fr 1fr;
     margin: 60px auto;
 }

 /* Left Side - Contact Info */
 .contact-info {
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     padding: 40px 40px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .contact-header h1 {
     font-size: 42px;
     font-family: 'Poppins', sans-serif;
     margin-bottom: 15px;
     line-height: 1.2;
 }

 .contact-header p {
     font-size: 16px;
     opacity: 0.9;
     line-height: 1.7;
     margin-bottom: 40px;
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     gap: 20px;
     margin-bottom: 35px;
     animation: fadeInLeft 0.6s ease forwards;
     opacity: 0;
 }

 .info-item:nth-child(1) {
     animation-delay: 0.1s;
 }

 .info-item:nth-child(2) {
     animation-delay: 0.2s;
 }

 .info-item:nth-child(3) {
     animation-delay: 0.3s;
 }

 .info-item:nth-child(4) {
     animation-delay: 0.4s;
 }

 .info-icon {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.15);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .info-icon i {
     font-size: 22px;
 }

 .info-content h3 {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 8px;
     opacity: 0.9;
 }

 .info-content p {
     font-size: 18px;
     font-weight: 500;
     line-height: 1.6;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 30px;
 }

 .social-link {
     width: 45px;
     height: 45px;
     background: rgba(255, 255, 255, 0.15);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .social-link:hover {
     background: rgba(255, 255, 255, 0.25);
     transform: translateY(-3px);
 }

 /* Right Side - Contact Form */
 .contact-form-section {
     padding: 40px 40px;
 }

 .form-header {
     margin-bottom: 40px;
 }

 .form-header h2 {
     font-size: 32px;
     font-family: 'Poppins', sans-serif;
     color: var(--dark);
     margin-bottom: 10px;
 }

 .form-header p {
     color: var(--gray);
     font-size: 15px;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 25px;
 }

 .form-group {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .form-group label {
     font-weight: 600;
     color: var(--dark);
     font-size: 15px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .form-group label i {
     color: var(--primary);
     font-size: 16px;
 }

 .form-group input,
 .form-group textarea {
     padding: 15px 20px;
     border: 2px solid var(--light-gray);
     border-radius: 12px;
     font-size: 15px;
     font-family: 'Inter', sans-serif;
     color: var(--dark);
     transition: all 0.3s ease;
     background: var(--light);
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--primary);
     background: white;
     box-shadow: 0 0 0 4px rgba(51, 16, 66, 0.1);
 }

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

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .submit-btn {
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     padding: 16px 40px;
     border: none;
     border-radius: 12px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 10px;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 30px rgba(51, 16, 66, 0.3);
 }

 .submit-btn i {
     font-size: 18px;
 }

 /* Animations */
 @keyframes fadeInLeft {
     from {
         opacity: 0;
         transform: translateX(-30px);
     }

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

 /* Decorative Elements */
 .contact-info::before {
     content: '';
     position: absolute;
     width: 200px;
     height: 200px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     top: -50px;
     right: -50px;
 }

 .contact-info::after {
     content: '';
     position: absolute;
     width: 150px;
     height: 150px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     bottom: -30px;
     left: -30px;
 }

 .contact-info {
     position: relative;
 }

 /* Responsive Design */
 @media (max-width: 968px) {
     .contact-container {
         grid-template-columns: 1fr;
     }

     .contact-info {
         padding: 30px 20px;
     }

     .contact-form-section {
         padding: 30px 20px;
     }

     .form-row {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 640px) {
     body {
         padding: 20px;
     }

     .contact-container {
         border-radius: 20px;
     }

     .contact-info {
         padding: 40px 30px;
     }

     .contact-form-section {
         padding: 40px 30px;
     }

     .contact-header h1 {
         font-size: 32px;
     }

     .form-header h2 {
         font-size: 26px;
     }

     .info-item {
         gap: 15px;
     }

     .info-icon {
         width: 45px;
         height: 45px;
     }
 }

 /* Success Message */
 .success-message {
     background: var(--secondary);
     color: white;
     padding: 15px 20px;
     border-radius: 12px;
     display: none;
     align-items: center;
     gap: 12px;
     margin-bottom: 20px;
     animation: slideDown 0.4s ease;
 }

 .success-message.show {
     display: flex;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

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