        .contact-section { padding: 100px 0; background-color: #f8f9fa; }
        .contact-layout { display: flex; justify-content: space-between; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 0 30px; }
        .contact-heading-side { flex: 0 0 40%; max-width: 450px; }
        .contact-heading { font-size: 40px; font-weight: 700; color: #2c3e50; margin-bottom: 20px; }
        .contact-form-side { flex: 1; background: white; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); padding: 40px; }
        .form-title { font-size: 28px; font-weight: 700; color: #2c3e50; text-align: center; margin-bottom: 30px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { font-weight: 600; color: #2c3e50; display: block; margin-bottom: 8px; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 15px; border: 2px solid #e9ecef; border-radius: 8px; font-size: 16px; background: #f8f9fa; transition: all 0.3s; }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #ff9600; background: white; box-shadow: 0 0 0 3px rgba(255,150,0,0.1); }
        .form-row { display: flex; gap: 20px; }
        .form-row .form-group { flex: 1; }

        .captcha-box { background: #f8f9fa; padding: 20px; border-radius: 12px; border: 2px solid #ff9600; text-align: center; margin: 25px 0; }
        .captcha-box label { font-weight: 700; color: #2c3e50; font-size: 18px; margin-bottom: 10px; display: block; }
        .captcha-box input { width: 120px; text-align: center; font-size: 18px; padding: 12px; }

        .success-message, .error-message { padding: 15px; border-radius: 8px; margin: 20px 0; text-align: center; display: none; font-weight: 600; }
        .success-message { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
        .error-message { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
        .success-message.show, .error-message.show { display: block; animation: fadeIn 0.5s; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        @media (max-width: 992px) { .contact-layout { flex-direction: column; } .contact-heading-side, .contact-form-side { max-width: 100%; } }
        @media (max-width: 768px) { .hero-title { font-size: 50px; } .form-row { flex-direction: column; } }