
    @media (min-width: 1024px) {
        .nnope {
            /* padding: 45px 36px 0px 36px !important; */
            padding: 0px 36px 0px 36px !important;
            position: relative;
            z-index: 9999;
        }
    }

    /* Updated for White/Black Theme */
    select.camovers-input {
        appearance: none;
        -webkit-appearance: none;
        /* Black arrow icon */
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        cursor: pointer;
    }

    select.camovers-input option {
        background-color: white;
        color: #000;
        padding: 10px;
    }

    #homeFields select option {
        background-color: white;
        color: #000;
    }

    :root {
        --primary: #b11715;
        --accent-orange: #f97316;
        --glass: #ffffff; /* Solid white inputs */
        --glass-border: #cbd5e1; /* Light gray border */
        --dropdown-bg: #ffffff;
        --label-font: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        --text-main: #1e293b; /* Dark text */
    }

    .camovers-container {
        max-width: 680px;
        /*margin: 30px auto;*/
        margin-bottom: 30px;
        padding: 40px;
        border-radius: 24px;
        /* White Gradient Background */
        background: radial-gradient(circle at top left, #ffffff, #f8fafc);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border: 1px solid #e2e8f0;
        color: var(--text-main);
        font-family: var(--label-font);
    }

    /* Labels Styling */
    .input-label {
        display: block;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-main);
        text-align: left;
    }

    .step-title-main {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #000;
        text-align: center;
    }

    /* Steps Pagination */
    .camovers-steps { display: flex; justify-content: space-between; margin-bottom: 35px; }
    .camovers-step { flex: 1; text-align: center; opacity: 0.4; transition: 0.3s;
     color: #64748b;
         color: #000000;
    font-weight: 500;
     }
    .camovers-step.active { opacity: 1; color: var(--text-main);     font-weight: 700; }
    .camovers-step-circle {
        width: 32px; height: 32px; background: #e2e8f0; 
        border-radius: 50%; margin: 0 auto 8px; line-height: 32px;
        font-weight: bold; color: #475569;
    }
    .camovers-step.active .camovers-step-circle { 
        background: var(--primary); 
        color: white;
        box-shadow: 0 4px 10px rgba(177, 23, 21, 0.3); 
    }

    .camovers-form-step { display: none; animation: fadeIn 0.4s ease; }
    .camovers-form-step.active { display: block; }

    .input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    
    .camovers-input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 10px; 
        border: 2px solid var(--glass-border);
        background: var(--glass); 
        color: #000 !important;
        outline: none;
        box-sizing: border-box;
        font-size: 15px;
        transition: border-color 0.2s;
    }
    
    .camovers-input:focus { border-color: var(--primary); }

    /* Custom Commercial Box */
    .commercial-box-container {
        position: relative;
        display: flex;
        align-items: center;
    }
    .sqft-select {
        position: absolute;
        right: 5px;
        width: 110px;
        background: #f1f5f9;
        border: 1px solid #cbd5e1;
        color: #000;
        border-radius: 6px;
        padding: 5px;
    }

    .camovers-radio-grid { 
        display: grid; 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
        margin: 20px 0; 
    }
    .radio-card {
        background: #f8fafc; 
        padding: 25px 10px; 
        border-radius: 15px;
        text-align: center; 
        cursor: pointer; 
        border: 2px solid #e2e8f0; 
        transition: 0.3s;
        display: flex; flex-direction: column; align-items: center; gap: 10px;
        color: var(--text-main);
    }
    .radio-card i { font-size: 26px; color: var(--accent-orange); }
    .radio-card input { display: none; }
    .radio-card:hover { border-color: #cbd5e1; }
    .radio-card:has(input:checked) { 
        border-color: var(--primary); 
        background: #fff;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    }

    /* Checkboxes Section */
    .we-provide-section { margin-top: 25px; border-top: 1px solid #e2e8f0; padding-top: 20px; }
    .provide-title { color: var(--text-main); font-size: 18px; margin-bottom: 15px; font-weight: 700; }
    .provide-grid { display: flex; flex-wrap: wrap; gap: 15px; }
    .provide-item { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; font-weight: 500; }
    .provide-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); }

    /* Buttons */
    .camovers-btn-group { display: flex; justify-content: space-between; margin-top: 30px; }
    .camovers-btn { 
        padding: 14px 40px; border-radius: 12px; background: var(--primary); 
        border: none; color: #fff; font-weight: 700; cursor: pointer; transition: 0.3s;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .camovers-btn:hover { background: #8e1210; transform: translateY(-1px); }
    .camovers-btn-secondary { background: #f1f5f9; color: #475569; }
    .camovers-btn-secondary:hover { background: #e2e8f0; color: #1e293b; }

    /* Autocomplete Dropdown */
    .autocomplete-list {
        position: absolute; top: 100%; left: 0; right: 0;
        background: white; border: 1px solid #cbd5e1;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        border-radius: 8px; max-height: 180px; overflow-y: auto; z-index: 1000; display: none;
    }
    .autocomplete-item { padding: 12px 15px; cursor: pointer; font-size: 14px; color: #334155; border-bottom: 1px solid #f1f5f9; }
    .autocomplete-item:last-child { border-bottom: none; }
    .autocomplete-item:hover { background: #f8fafc; color: var(--primary); }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    @media (max-width: 600px) {
        .input-grid { grid-template-columns: 1fr; }
        .camovers-step-title { display: none; }
        .camovers-container { padding: 20px; }
    }

    .autocomplete-list {
    position: absolute;
    top: 100%; /* Appears right under the input */
    left: 0;
    width: 100%;
    z-index: 9999; /* Ensure it stays on top */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Thank You Pop-up Styles */
.camovers-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.camovers-modal {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}
.camovers-modal i {
    font-size: 50px;
    color: #22c55e;
    margin-bottom: 20px;
}
.camovers-modal h2 { margin: 0 0 10px; color: #1e293b; }
.camovers-modal p { color: #64748b; font-size: 16px; }

