/* JLink India Contact Pro Styles */
.jlink-contact-form-wrapper {
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.jlink-contact-form-container {
    width: 100%;
}

.jlink-contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.jlink-form-title {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.jlink-form-title i {
    margin-right: 10px;
    color: #1E90FF;
}

.jlink-contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.jlink-form-group {
    margin-bottom: 20px;
}

.jlink-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.jlink-input-wrapper i {
    position: absolute;
    left: 15px;
    color: #667eea;
    font-size: 18px;
}

.jlink-input-wrapper input,
.jlink-input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e1e5ee;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.jlink-input-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.jlink-input-wrapper input:focus,
.jlink-input-wrapper textarea:focus {
    outline: none;
    border-color: #1E90FF;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.jlink-otp-section {
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jlink-otp-status {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.jlink-otp-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.jlink-otp-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.jlink-form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.jlink-btn {
    flex: 1;
    min-width: 120px;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.jlink-btn-primary {
    background: #1E90FF;
    color: white;
}

.jlink-btn-primary:hover:not(:disabled) {
    background: #1c86ee;
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.3);
    transform: translateY(-2px);
}

.jlink-btn-secondary {
    background: #6c757d;
    color: white;
}

.jlink-btn-secondary:hover:not(:disabled) {
    background: #5a6268;
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
    transform: translateY(-2px);
}

.jlink-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.jlink-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jlink-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.jlink-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.jlink-otp-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.jlink-otp-verified {
    background: #d4edda;
    color: #155724;
}

.jlink-otp-pending {
    background: #fff3cd;
    color: #856404;
}

/* Responsive */
@media (max-width: 768px) {
    .jlink-contact-card {
        padding: 20px;
    }
    
    .jlink-contact-form {
        padding: 20px;
    }
    
    .jlink-form-actions {
        flex-direction: column;
    }
    
    .jlink-btn {
        width: 100%;
    }
}