/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

:root{
    --primary:#0B1F3A;
    --accent:#F4B400;
    --secondary:#FF8C00;
    --light:#F5F5F5;
    --text:#222;
}

html{
    scroll-behavior:smooth;
}

body{
    color:var(--text);
    line-height:1.6;
    background:#fff;
}

/* ================= NAVBAR ================= */

nav{
    width:100%;
    height:75px;

    background:var(--primary);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 40px;

    position:sticky;
    top:0;
    z-index:1000;
}

/* LOGO */

/* ================= LOGO ================= */

.logo-container{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-placeholder{
    width:55px;
    height:55px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
    flex-shrink:0;
}

.nav-logo{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.logo-container h2{
    color:white;
    font-size:22px;
    margin:0;
}

/* NAV LINKS */

.nav-links{
    display:flex;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--accent);
}

.menu-toggle{
    display:none;
    font-size:24px;
    color:white;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    min-height:70vh;

    background:
    linear-gradient(rgba(11,31,58,.7),
    rgba(11,31,58,.7)),
    url('../images/hero1.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
    padding:20px;
}

/* ================= BUTTON ================= */

.btn{
    display:inline-block;
    padding:12px 25px;

    background:var(--accent);
    color:white;

    text-decoration:none;
    border:none;
    border-radius:6px;

    cursor:pointer;
    transition:.3s;
}

.btn:hover{
    background:var(--secondary);
}

/* ================= SECTION ================= */

.section{
    padding:60px 40px;
}

.light{
    background:var(--light);
}

.section-title{
    text-align:center;
    margin-bottom:15px;
}

.section-intro{
    max-width:700px;
    margin:auto;
    text-align:center;
    color:#666;
}

/* ================= GRID ================= */

.grid,
.pricing-grid,
.branch-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit, minmax(280px,1fr));

    gap:25px;
    margin-top:30px;
}

/* ================= IMAGE CARDS ================= */

.image-card,
.pricing-card,
.branch-card{
    background:white;
    border-radius:12px;
    overflow:hidden;

    transition:.3s ease;

    box-shadow:
    0 5px 20px rgba(0,0,0,.08);
}

.image-card:hover,
.pricing-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 12px 25px rgba(0,0,0,.1);
}

/* IMAGE PLACEHOLDER */

.image-box{
    width:100%;
    height:220px;
    overflow:hidden;
}

.image-box img{
    width:100%;
    height:100%;

    object-fit:cover;
    transition:.4s ease;
}

.image-card:hover img,
.pricing-card:hover img{
    transform:scale(1.05);
}

/* CONTENT */

.overlay,
.pricing-card{
    text-align:center;
}

.overlay{
    padding:20px;
}

.overlay h3,
.pricing-card h3{
    color:var(--primary);
    margin-bottom:10px;
}

.overlay p{
    color:#555;
}

/* ================= PRICING ================= */

.pricing-card{
    padding:20px;
}

.price{
    font-size:24px;
    font-weight:bold;
    color:var(--accent);
    margin-bottom:10px;
}

.pricing-card p{
    font-size:15px;
    font-weight:normal;
    color:#555;
    margin-bottom:15px;
}

.addon{
    font-size:14px;
}

/* ================= FORM ================= */

.contact-form{
    max-width:500px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;

    border:1px solid #ddd;
    border-radius:6px;
}

.contact-form textarea{
    resize:none;
    height:150px;
}

/* ================= FOOTER ================= */

footer{
    background:#000;
    color:#ccc;
    padding:30px;
    text-align:center;
}

/* ================= WHATSAPP ================= */

.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;

    width:60px;
    height:60px;

    background:#25D366;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    font-size:30px;

    text-decoration:none;
    z-index:1000;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    nav{
        padding:0 20px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;

        position:absolute;
        top:75px;
        right:0;

        width:220px;
        background:var(--primary);

        flex-direction:column;
        padding:20px;
    }

    .nav-links.show{
        display:flex;
    }

    .hero{
        min-height:60vh;
    }

    .logo-container h2{
        font-size:18px;
    }

    .section{
        padding:50px 20px;
    }
    
}

/* ================= FEATURED PACKAGES ================= */

.featured-gallery{
    display:grid;
    grid-template-columns:
    repeat(auto-fit, minmax(220px,1fr));

    gap:18px;
    margin-top:25px;
}

.featured-item{
    display:block;
    overflow:hidden;

    border-radius:12px;

    box-shadow:
    0 4px 12px rgba(0,0,0,.08);

    transition:.3s ease;
}

/* IMAGE SIZE CONTROL */

.featured-item img{
    width:100%;
    height:180px; /* reduced size */

    object-fit:cover;
    display:block;

    transition:.4s ease;
}

.featured-item:hover{
    transform:translateY(-4px);

    box-shadow:
    0 8px 20px rgba(0,0,0,.12);
}

.featured-item:hover img{
    transform:scale(1.05);
}

/* ================= FLOATING WHATSAPP ================= */

.whatsapp-float{
    position:fixed;

    width:65px;
    height:65px;

    bottom:25px;
    right:25px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:34px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    background:#20ba5a;
}

/* MOBILE */

@media(max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;

        bottom:20px;
        right:20px;

        font-size:30px;
    }

}

/* ================= GALLERY ================= */

.gallery-heading{
    text-align:center;
    margin:60px 0 30px;
}

.gallery-heading h2{
    color:#0B1F3A;
    font-size:32px;
    font-weight:700;
}

/* GRID */

.gallery-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit, minmax(300px,1fr));

    gap:25px;

    margin-bottom:50px;
}

/* CARD */

.gallery-item{
    overflow:hidden;

    border-radius:14px;

    background:#fff;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);

    transition:.3s ease;
}

/* HOVER */

.gallery-item:hover{
    transform:translateY(-6px);

    box-shadow:
    0 10px 25px rgba(0,0,0,.12);
}

/* IMAGE + VIDEO SAME SIZE */

.gallery-item img,
.gallery-item video{
    width:100%;
    height:300px;

    object-fit:cover;
    display:block;
}

/* VIDEO FIX */

.gallery-item video{
    background:#000;
}

/* MOBILE */

@media(max-width:768px){

    .gallery-heading h2{
        font-size:26px;
    }

    .gallery-grid{
        gap:20px;
    }

    .gallery-item img,
    .gallery-item video{
        height:240px;
    }

}