body{
    margin:0;
    font-family:Arial;
    background:#f5f5f5;
}

/* CONTAINER */
.vaa-serv-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:40px 0;
}

/* TITLE */
.vaa-title{
    text-align:center;
    margin-bottom:40px;
}

.vaa-title h1{
    color:#0a3d62;
}

.vaa-title p{
    color:#555;
}

/* ===== SERVICES ===== */
.vaa-serv-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.vaa-serv-card{
    position:relative;
    flex:1;
    min-width:280px;
    height:260px;
    border-radius:15px;
    overflow:hidden;
}

.vaa-serv-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.vaa-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color:#fff;
}

.vaa-serv-card:hover img{
    transform:scale(1.1);
}

/* ===== EXTRA INFO SECTION ===== */
.vaa-extra{
    display:flex;
    flex-wrap:wrap;
    margin-top:60px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
}

.vaa-extra img{
    width:100%;
    max-width:500px;
    object-fit:cover;
}

.vaa-extra-text{
    flex:1;
    padding:30px;
}

.vaa-extra-text h2{
    color:#0a3d62;
}

/* ===== TIMELINE ===== */
.vaa-timeline{
    margin-top:60px;
}

.vaa-timeline h2{
    text-align:center;
    color:#0a3d62;
    margin-bottom:40px;
}

.vaa-timeline-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.vaa-step{
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

/* ===== WHY ===== */
.vaa-why{
    margin-top:20px;
    background:#0a3d62;
    padding:40px 20px;
    border-radius:15px;
    color:#fff;
}

.vaa-why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.vaa-why-card{
    background:rgba(255,255,255,0.1);
    padding:25px;
    border-radius:10px;
    text-align:center;
    backdrop-filter:blur(5px);
}

/* ===== GALLERY ===== */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
}

.gallery-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
    cursor:pointer;
}

.gallery-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

.gallery-image{
    display:block;
    width:100%;
    height:240px;
    object-fit:cover;
    transition:transform 0.3s ease;
}

.gallery-card:hover .gallery-image{
    transform:scale(1.04);
}

.gallery-card-content{
    padding:16px 18px 20px;
}

.gallery-card-content h3{
    margin:0;
    color:#0a3d62;
    font-size:1rem;
}

.gallery-empty{
    text-align:center;
    padding:40px 20px;
    background:#fff;
    border-radius:16px;
    color:#555;
}

.gallery-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.9);
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:9999;
}

.gallery-modal.active{
    display:flex;
}

.gallery-modal img{
    max-width:100%;
    max-height:90vh;
    object-fit:contain;
    border-radius:12px;
    box-shadow:0 16px 40px rgba(0,0,0,0.35);
}

.gallery-modal-close{
    position:absolute;
    top:20px;
    right:24px;
    color:#fff;
    font-size:36px;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

    .vaa-extra{
        flex-direction:column;
    }

    .vaa-extra img{
        max-width:100%;
    }

    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:480px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}