﻿.post-property-section {
    padding: 70px 0;
    background: linear-gradient(135deg,#f8fbff,#eef4ff);
}

/* TITLE */
.main-title {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
}

    .main-title span {
        color: #473d27; /* blue */
    }

    .main-title strong {
        color: #dc2626; /* red accent */
    }

/* FEATURES */
.feature-list {
    margin-top: 25px;
    padding-left: 0;
}

    .feature-list li {
        list-style: none;
        margin-bottom: 12px;
        font-size: 16px;
        color: #334155;
        position: relative;
        padding-left: 28px;
    }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #9e7830;
            font-weight: 700;
        }

/* FORM CARD */
.form-card {
    background: #fff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

    .form-card h5 {
        font-weight: 700;
        margin-bottom: 16px;
    }

/* LABEL */
.label {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

/* PILLS */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #c7d2fe;
    background: #fff;
    color: #473d27;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

    .pill.active,
    .pill:hover {
        background: #9e7830;
        color: #fff;
        border-color: #9e7830;
    }

/* RADIO */
.radio-group {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #334155;
}

    .radio-group input {
        margin-right: 6px;
    }

/* INPUT */
.form-control {
    border-radius: 10px;
    padding: 12px;
}

/* BUTTON */
.btn-start {
    margin-top: 20px;
    width: 100%;
    /* background: #2563eb; */
    color: #000000;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: .3s;
    border: 1px Solid #8f8a8a;
}

    .btn-start:hover {
        background: #9f7931;
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .main-title {
        font-size: 30px;
    }

    .post-property-section {
        padding: 40px 0;
    }
}

@media(max-width:480px) {
    .main-title {
        font-size: 26px;
    }
}

input.form-control::placeholder {
    color: #645d5d !important;
}

.auth-card {
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,.2);
}

.otp-input {
    font-size: 22px;
    letter-spacing: 6px;
    font-weight: 600;
}

.modal-content h5 {
    font-weight: 700;
    color: #0f172a;
}

.btn-primary {
    background: #0a5fd8;
    border: none;
    border-radius: 10px;
}

.btn-outline-primary.active {
    background: #0a5fd8;
    color: #fff;
}
.by-modal {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
    .by-modal.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
.by-modal-box {
    background: #fff;
    width: 420px;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 40px 90px rgba(0,0,0,.25);
    animation: fadeUp .3s ease;
}

    .by-modal-box h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .by-modal-box .sub {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 22px;
    }

.by-input {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
}

    .by-input span {
        margin-right: 10px;
        font-weight: 600;
    }

    .by-input input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 16px;
    }

.by-btn {
    width: 100%;
    background: #473d27;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

    .by-btn:hover {
        background: #473d27;
    }

.otp-box {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 22px;
}

    .otp-box input {
        width: 48px;
        height: 52px;
        text-align: center;
        font-size: 20px;
        border-radius: 10px;
        border: 1px solid #cbd5f5;
    }



.full-input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}






.form-card-99 {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 16px 50px rgba(0,0,0,.08);
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0f172a;
}

.pill-99 .pill {
    border-radius: 999px;
    font-weight: 500;
    font-size: 13px;
}

.radio-99 {
    font-size: 13px;
}

.form-control-99 {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #dbeafe;
}

.btn-99 {
    height: 48px;
    background: #473d27;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 18px;
}

    .btn-99:hover {
        background: #91681e;
    }




.type-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

    .type-switch button {
        flex: 1;
        height: 40px;
        border-radius: 999px;
        border: 1px solid #c7d2fe;
        background: #fff;
        font-weight: 600;
        transition: .25s;
    }

        .type-switch button.active {
            background: #2563eb;
            color: #fff;
            box-shadow: 0 8px 20px rgba(37,99,235,.35);
        }
/* Placeholder color like 99acres */


input#txtMobile::placeholder {
    color: #000 !important;
}
.search-panel__input::placeholder {
    color: #6b7280;
}

.pill {
    transition: all .25s ease;
}

    .pill:not(.active):hover {
        background: #eef2ff;
    }


.more-toggle {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #473d27;
    font-weight: 500;
    cursor: pointer;
}

    .more-toggle:hover {
        text-decoration: underline;
    }

/* CLOSE BUTTON */
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    z-index: 5;
}

    .modal-close:hover {
        background: #e2e8f0;
        color: #0f172a;
    }
body.modal-open {
    overflow: hidden;
}

.by-modal-box {
    position: relative; /* 🔥 VERY IMPORTANT */
}
