﻿:root {
    --brand: #d85a30;
    --brand-light: #faeee7;
    --brand-dark: #a83e1c;
    --surface: #f4f4fb;
    --card-bg: #ffffff;
    --text-main: #1a1a2e;
    --text-muted: #000000;
    --border: #e2e2ef;
    --radius: 12px;
    --radius-pill: 999px;
}




/* ── Card ── */
.form-card {
    background: #efeded;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
    max-width: 100%;
    margin: 0 auto;
}

/* ── Header ── */
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

    .form-header .icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--brand-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 24px;
        color: var(--brand);
    }

    .form-header h1 {
        font-family: 'DM Serif Display', serif;
        font-size: 1.9rem;
        color: var(--text-main);
        margin-bottom: .5rem;
    }

    .form-header p {
        color: var(--text-muted);
        font-size: .95rem;
        margin: 0;
    }

/* ── Section label ── */
.section-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin: 10px 0px;
    padding-bottom: .4rem;
    border-bottom: 1.5px solid var(--brand-light);
}

/* ── Inputs ── */
.form-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: .35rem;
}

.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .65rem 1rem;
    font-size: .92rem;
    color: var(--text-main);
    background: #fafafa;
    transition: border-color .2s, box-shadow .2s;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(216,90,48,.15);
        background: #fff;
    }

    .form-control::placeholder {
        color: #b0b0c0;
    }

    .form-select:disabled {
        opacity: .5;
        cursor: not-allowed;
    }

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

/* ── Service pill checkboxes ── */
.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .service-pills .form-check {
        margin: 0;
        padding: 0;
    }

    .service-pills .form-check-input {
        display: none;
    }

    .service-pills .form-check-label {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
        font-size: .83rem;
        color: var(--text-muted);
        background: #fafafa;
        cursor: pointer;
        transition: all .18s;
        user-select: none;
    }

        .service-pills .form-check-label i {
            font-size: 14px;
        }

    .service-pills .form-check-input:checked + .form-check-label {
        background: var(--brand-light);
        border-color: var(--brand);
        color: var(--brand-dark);
        font-weight: 500;
    }

/* ── Submit button ── */
.btn-submit {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: .85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}

    .btn-submit:hover {
        background: var(--brand-dark);
        transform: translateY(-1px);
        color: #fff;
    }

    .btn-submit:active {
        transform: translateY(0);
    }

/* ── Privacy checkbox ── */
.privacy-check .form-check-input:checked {
    background-color: var(--brand);
    border-color: var(--brand);
}

/* ── Toast ── */
#toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s;
}

    #toast.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

/* ── Responsive tweaks ── */
@media (max-width: 576px) {
    .form-card {
        padding: 2rem 1.25rem;
    }
}


.nice-select {
    width: 100%;
     height: auto; 
    line-height: 21px;
    color: #AAAAAA;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 500;
    background: var(--white-color);
    border-color: var(--borders-color);
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
}


* ─── MODAL ─── */
#successModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

#successModal.show {
    display: flex !important;
}

.modal-box {
    background: #1E293B;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .modal-close:hover {
        background: rgba(255,255,255,0.15);
    }

.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8521A, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    box-shadow: 0 0 0 12px rgba(232,82,26,0.12);
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.modal-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 24px;
}

.btn-whatsapp {
    display: block;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.25s;
}

    .btn-whatsapp:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(37,211,102,0.35);
        color: #fff;
    }

.btn-modal-close {
    display: block;
    width: 100%;
    background: transparent;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-modal-close:hover {
        border-color: rgba(255,255,255,0.3);
        color: rgba(255,255,255,0.7);
    }

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 576px) {
    .price-bar-right .btn-ask {
        display: none;
    }

    .hero-img-wrap {
        height: 240px;
    }
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: 300px;
    overflow: scroll;
}