/* Card wrapper */
.lc-card {
    max-width: 400px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    font-family: 'Arial', sans-serif;
}

/* Top Ribbon Banner */
.lc-card::before {
    content: 'Free Consultation by Expert';
    position: absolute;
    top: -1.5rem;
    left: 0;
    background: #2563eb;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Grid layout */
.lc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Input fields */
.lc-input, .lc-textarea, select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.lc-input:focus, .lc-textarea:focus, select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* Textarea adjustments */
.lc-textarea {
    resize: none;
}

/* Submit button */
.lc-button {
    width: 100%;
    padding: 0.85rem;
    background: #ff6a00;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.lc-button:hover {
    background: #e65c00;
}

/* Optional WhatsApp toggle placeholder */
.lc-whatsapp-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (min-width: 640px) {
    
    .lc-grid .lc-grid {
        grid-column: 1 / -1;
    }
}
