*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
    background:#fff;
    color:#222;
}

/* HEADER */

header{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 8%;

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);

    border-bottom:1px solid #eee;

    box-shadow:0 3px 15px rgba(0,0,0,.04);
}

.logo{
    flex-shrink:0;
}


.logo img{
    height:90px;
    width:auto;
}

nav{
    display:flex;
    justify-content:center;
    align-items:center;

    flex:1;

    gap:20px;
}

nav a{
    text-decoration:none;
    color:#163A8A;
    font-weight:600;
    transition:.25s;
}

nav a:hover{
    color:#16A34A;
}
.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.call-btn{
    display:flex;
    align-items:center;
    gap:6px;
    white-space:nowrap;

    text-decoration:none;
    color:#163A8A;
    font-weight:600;
}

.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#25D366;
    color:white;
    text-decoration:none;

    padding:12px 18px;
    border-radius:10px;

    font-weight:600;

    transition:.25s ease;
}

.book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#163A8A;
    color:white;
    text-decoration:none;

    padding:12px 22px;
    border-radius:10px;

    font-weight:600;

    transition:.25s ease;
}

.book-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-2px);
}

.book-btn:hover{
    background:#16A34A;
}

/* HERO */

.hero{

    max-width:1400px;
    margin:auto;

    padding:80px 8%;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    object-fit:contain;
}

.hero-content{

    flex:1;

}

.hero-tag{

    display:inline-block;
    background:#EAF6FF;
    color:#0D6EFD;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    color:#163A8A;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    line-height:1.8;

    color:#555;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:35px;

}

.primary-btn{

    background:#16A34A;

    color:white;

    padding:16px 30px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

}

.secondary-btn{

    border:2px solid #163A8A;

    color:#163A8A;

    padding:16px 30px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

}

.primary-btn:hover{

    background:#12813a;

}

.secondary-btn:hover{

    background:#163A8A;

    color:white;

}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:10px;
}

.feature-pill{
    background:#F5F8FC;
    color:#163A8A;
    padding:12px 18px;
    border-radius:999px;
    font-weight:600;
    border:1px solid #E6EEF8;
    transition:.25s ease;
}

.feature-pill:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(22,58,138,.08);
}

/* STATS */

.stats{

    display:flex;

    justify-content:center;

    gap:90px;

    padding:70px 20px;

    background:#F8FBFF;

    flex-wrap:wrap;

}

.stat{

    text-align:center;

}

.stat h2{

    font-size:42px;

    color:#163A8A;

    margin-bottom:8px;

}

.stat p{

    color:#555;

}

/* MOBILE */

@media(max-width:900px){

header{
    flex-direction:column;
    gap:20px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.header-actions{
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-buttons{
    flex-direction:column;
}

.hero-features{
    justify-content:center;
}

.feature-pill{
    width:100%;
}

}
/*================ SEARCH SECTION ================*/

.search-section{

    padding:100px 8%;
    background:white;

}

.search-container{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.section-tag{

    display:inline-block;

    background:#EAF6FF;

    color:#0D6EFD;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.search-container h2{

    font-size:42px;

    color:#163A8A;

    margin-bottom:20px;

}

.search-container p{

    font-size:18px;

    color:#666;

    margin-bottom:40px;

}

.search-box{

    display:flex;

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.search-box input{

    flex:1;

    padding:22px;

    border:none;

    outline:none;

    font-size:18px;

}

.search-box button{

    background:#16A34A;

    color:white;

    border:none;

    padding:0 40px;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.search-box button:hover{

    background:#12813a;

}

.popular-searches{

    margin-top:30px;

}

.popular-searches span{

    font-weight:600;

    margin-right:10px;

}

.popular-searches a{

    display:inline-block;

    text-decoration:none;

    color:#163A8A;

    background:#F5F8FC;

    padding:10px 18px;

    border-radius:30px;

    margin:8px;

    transition:.3s;

}

.popular-searches a:hover{

    background:#163A8A;

    color:white;

}

@media(max-width:768px){

.search-box{

    flex-direction:column;

}

.search-box button{

    padding:20px;

}
}
/*================ PACKAGES ================*/

.packages{
    padding:120px 8%;
    background:#F8FBFF;
}

.packages-header{
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
}

.packages-header h2{
    font-size:52px;
    color:#163A8A;
    margin:20px 0;
}

.packages-header p{
    font-size:20px;
    color:#666;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.package-card{
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.package-card:hover{
    transform:translateY(-10px);
}

.package-card h3{
    color:#163A8A;
    font-size:28px;
    margin-bottom:15px;
}

.price{
    font-size:48px;
    color:#16A34A;
    font-weight:700;
    margin-bottom:20px;
}

.package-desc{
    color:#666;
    margin-bottom:30px;
}

.package-card ul{
    list-style:none;
    margin-bottom:35px;
}

.package-card li{
    padding:10px 0;
    color:#555;
    border-bottom:1px solid #eee;
}

.package-btn{
    display:block;
    text-align:center;
    background:#163A8A;
    color:#fff;
    padding:18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.package-btn:hover{
    background:#16A34A;
}

.featured{
    transform:scale(1.05);
    border:3px solid #16A34A;
}

.badge{
    position:absolute;
    top:-15px;
    right:30px;
    background:#16A34A;
    color:white;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

/* Responsive Packages */

@media(max-width:1000px){

    .package-grid{
        grid-template-columns:1fr;
    }

    .featured{
        transform:none;
    }
    }


@media(max-width:768px){
    .search-result{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }
}

/* WHY US */

.why-us{
    padding:80px 8%;
    background:#fff;
}

.why-header{
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
}

.why-header h2{
    font-size:52px;
    color:#163A8A;
    margin:20px 0;
}

.why-header p{
    font-size:20px;
    color:#666;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.why-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}
.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(22,58,138,.12);

}



.why-card h3{
    color:#163A8A;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:1000px){

    .why-grid{
        grid-template-columns:1fr;
    }
}
/*================ HOME COLLECTION ================*/

.home-collection{

    padding:120px 8%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    background:white;

}

.home-left h2{

    font-size:54px;

    color:#163A8A;

    margin:20px 0;

}

.home-left p{

    font-size:20px;

    color:#666;

    line-height:1.8;

    margin-bottom:40px;

}

.home-points{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.point{

    background:#F8FBFF;

    padding:18px;

    border-radius:14px;

    font-weight:600;

    color:#163A8A;

}

.home-right img{
    width:100%;
    max-width:520px;
    margin:0 auto;
    display:block;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

@media(max-width:1000px){

.home-collection{

    grid-template-columns:1fr;

    text-align:center;

}

.home-points{

    grid-template-columns:1fr;

}

.hero-buttons{

    justify-content:center;

}

}


/* FOOTER */
.footer{
    background:#163A8A;
    color:#fff;
    text-align:center;
    padding:50px 20px;
    margin-top:80px;
}

.footer h3{
    font-size:28px;
    margin-bottom:15px;
}

.footer p{
    margin:10px 0;
    color:rgba(255,255,255,.9);
}
section{
    opacity:0;
    transform:translateY(30px);
    transition:.6s ease;
}

section.show{
    opacity:1;
    transform:translateY(0);
}
/* ==============================
   FLOATING ACTION BUTTONS
============================== */

.floating-actions{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.25s ease;
}

.floating-btn:hover{
    transform:translateY(-4px) scale(1.05);
}

.floating-btn.call{
    background:#163A8A;
}

.floating-btn.whatsapp{
    background:#25D366;
}

/* ==============================
   GOOGLE MAP
============================== */

.map-section{
    padding:80px 8%;
    background:#F8FBFF;
}

.map-section iframe{
    width:100%;
    border:none;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* ==============================
   TESTIMONIALS
============================== */

.testimonials{
    padding:100px 8%;
    background:#fff;
}

.testimonials .why-card{
    text-align:center;
}

.testimonials strong{
    display:block;
    margin-top:18px;
    color:#163A8A;
}

/* ==============================
   SMALL POLISH
============================== */

html{
    scroll-behavior:smooth;
}

img{
    max-width:100%;
    height:auto;
}

::selection{
    background:#163A8A;
    color:#fff;
}
/* SEARCH RESULTS */

#results{
    margin-top:30px;
    display:grid;
    gap:18px;
}

.search-result{
    background:#fff;
    border-radius:16px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-left:5px solid #18a84a;
    transition:.25s;
}

.search-result:hover{
    transform:translateY(-3px);
}

.search-result strong{
    font-size:22px;
    color:#123c91;
    display:block;
    margin-bottom:8px;
}

.search-result .price{
    color:#18a84a;
    font-size:28px;
    font-weight:700;
}

.search-result a{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#18a84a;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
}
/* ===========================
   MOBILE RESPONSIVE
=========================== */

.menu-toggle{
    display:none;
}

@media (max-width:768px){

    header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    padding:15px 20px;
}

    .logo img{
    height:90px;
    width:auto;
}

    nav{
    width:100%;
    display:none;
    flex-direction:column;
    gap:12px;
    margin-top:15px;
    padding:15px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

    nav.open{
        display:flex;
    }

    nav a{
        padding:10px 0;
        font-size:17px;
    }

   .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    margin-left:auto;
    border:none;
    border-radius:10px;
    background:#163A8A;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

    .header-actions{
        display:none;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:60px 20px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.15;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .hero-image img{
        max-width:260px;
        margin-top:25px;
    }

    .stats{
        grid-template-columns:1fr;
        gap:25px;
    }

    .package-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .home-collection{
        flex-direction:column;
    }

    .search-box{
        flex-direction:column;
    }

    .search-box input,
    .search-box button{
        width:100%;
    }

    .floating-actions{
        right:15px;
        bottom:15px;
    }

}