/* =================================================================
   Contact Form Component — nal-form
   Used on homepage and consultation pages (CF7 output classes)
   ================================================================= */

.nal-form {
    background: linear-gradient(180deg, rgba(10, 38, 71, .95) 0%, rgba(10, 38, 71, .85) 100%);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .08);
}

/* Grid 2 columns */
.nal-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Field */
.nal-field {
    margin-bottom: 16px;
}

/* Label */
.nal-field label {
    display: block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 8px;
}

/* Input + textarea */
.nal-form input[type="text"],
.nal-form input[type="tel"],
.nal-form input[type="email"],
.nal-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

/* Placeholder */
.nal-form ::placeholder {
    color: rgba(255, 255, 255, .45);
}

/* Focus */
.nal-form input:focus,
.nal-form textarea:focus {
    border-color: rgba(255, 204, 51, .55);
    box-shadow: 0 0 0 4px rgba(255, 204, 51, .12);
}

/* Textarea height */
.nal-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit button full width */
.nal-submit .wpcf7-submit {
    width: 100%;
    background: #F5C542;
    border: none;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
    color: #0A2647;
    cursor: pointer;
    transition: transform .12s ease, filter .12s ease;
}

/* Hover */
.nal-submit .wpcf7-submit:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
}

/* Note */
.nal-note {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .nal-grid-2 {
        grid-template-columns: 1fr;
    }

    .nal-form {
        padding: 20px;
    }
}