﻿
/* Reset & Base */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 40px 15px;
    color: #1f2937;
}

/* Header Section */
.header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
}

    .header h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .header p {
        font-size: 15px;
        color: #cbd5f5;
    }

/* Form Container */
.lw-whatsapp-form {
    max-width: 420px;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 15px;
}

    /* Labels */
    .lw-whatsapp-form label {
        display: block;
        margin-bottom: 12px;
        text-align: left;
        font-weight: 500;
        color: #374151;
    }

    /* Inputs */
    .lw-whatsapp-form input,
    .lw-whatsapp-form select,
    .lw-whatsapp-form textarea {
        width: 100%;
        padding: 10px 12px;
        margin-top: 6px;
        border: 1px solid #d1d5db;
        border-radius: 6px;
        font-size: 14px;
        transition: all 0.2s ease;
    }

        /* Input Focus */
        .lw-whatsapp-form input:focus,
        .lw-whatsapp-form select:focus {
            border-color: #2563eb;
            outline: none;
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
        }

        /* Radio Buttons */
        .lw-whatsapp-form input[type="radio"] {
            width: auto;
            margin-right: 6px;
        }

    /* Divider */
    .lw-whatsapp-form hr {
        border: none;
        border-top: 1px solid #e5e7eb;
        margin: 20px 0;
    }

/* Button */
.lw-whatsapp-contact-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #16a34a);
    border: none;
    padding: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

    /* Button Hover */
    .lw-whatsapp-contact-btn:hover {
        background: linear-gradient(135deg, #16a34a, #15803d);
        transform: translateY(-1px);
    }

/* Error */
.error {
    font-size: 13px;
    color: #dc2626;
    margin-top: 5px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .header h1 {
        font-size: 22px;
    }

    .lw-whatsapp-form {
        padding: 20px;
    }
}
