body{
    font-family:sans-serif;
    background:#0f172a;
    margin:0;
    color:#fff;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    background: #ffffff;
    color: #111;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero{
    text-align:center;
    padding:25px;
}

.hero h1{
    font-size:28px;
    margin-bottom:10px;
}

.subtext{
    color:#f59e0b;
    font-weight:bold;
}

.trust-strip{
    background:#f8fafc;
    color:#000;
    padding:15px;
    margin:20px auto;
    max-width:900px;
    border-radius:10px;
    font-size:14px;
}

input,textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:8px;
    border:1px solid #ccc;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

button{
    width:100%;
    padding:14px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transition: 0.3s;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

button:hover {
    transform: translateY(-2px);
}
/*
.popup{
    padding:20px;
    border-radius:10px;
    width:300px;
}
*/

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: #ffffff;
    color: #0f172a;

    padding: 25px;
    border-radius: 16px;

    width: 320px;
    max-width: 100%;

    box-shadow: 0 20px 50px rgba(0,0,0,0.25);

    z-index: 1000;
    display: none;
    text-align: center;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6); /* dark blur feel */
    backdrop-filter: blur(4px);
    display: none;
    z-index: 999;
}

.floating-wa{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:#fff;
    padding:12px 15px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
}

.grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.grid input[type="checkbox"] {
    transform: scale(1.2);
}

.section {
    margin-bottom: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 10px;
}

.gallery-img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.img-modal {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
}

.img-modal img {
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.testimonials {
    display:grid;
    gap:15px;
}

.testimonial-card {
    background:#f8fafc;
    padding:15px;
    border-radius:10px;
    font-size:14px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:10px;
}

.gallery-grid img{
    width:100%;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

.gallery-modal{
    display:none;
    position:fixed;
    z-index:999;
    left:0; top:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
}

.gallery-modal img{
    max-width:90%;
    max-height:80%;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

.type-select{
padding:8px 12px;
border-radius:6px;
border:1px solid #ccc;
font-size:14px;
background:#fff;
cursor:pointer;
transition:0.3s;
}

.type-select:focus{
outline:none;
border-color:#007bff;
box-shadow:0 0 4px rgba(0,123,255,0.4);
}