/*=========================
RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#071421;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

/*=========================
HEADER
=========================*/

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    padding:22px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:1000;

    background:rgba(0,0,0,.30);
    backdrop-filter:blur(10px);

}

.logo h2{

    color:#fff;
    font-size:48px;

    font-family:'Cinzel',serif;
    font-weight:700;

    letter-spacing:2px;

}

.logo span{

    display:block;

    color:#d4af37;

    letter-spacing:8px;

    font-size:14px;

}

nav{

    display:flex;
    gap:45px;

}

nav a{

    color:#fff;

    font-size:18px;

    transition:.3s;

    font-weight:500;

}

nav a:hover{

    color:#d4af37;

}

.book-btn{

    background:#d4af37;

    color:#fff;

    padding:16px 38px;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}

.book-btn:hover{

    background:#fff;
    color:#111;

}

/*=========================
HERO
=========================*/

.hero{

    width:100%;
    height:100vh;

    position:relative;

    overflow:hidden;

}

.heroSlider{

    width:100%;
    height:100%;

}

.swiper-slide{

    width:100%;
    height:100vh;

}

.swiper-slide img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.heroSlider{
    width:100%;
    height:100%;
}

.swiper{
    height:100%;
}

.swiper-wrapper{
    height:100%;
}

.swiper-slide{
    height:100%;
}

.swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.heroSlider,
.swiper,
.swiper-wrapper{
    width:100%;
    height:100%;
}

/*=========================
OVERLAY
=========================*/

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    z-index:2;

}/*=========================
HERO CONTENT
=========================*/

.hero-content{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:90%;
    max-width:1100px;

    text-align:center;

    color:#fff;

    z-index:100;

}

.hero-content h4{

    color:#d4af37;

    font-size:22px;

    letter-spacing:5px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.hero-content h1{

    font-family:'Cinzel',serif;

    font-size:75px;

    line-height:1.1;

    margin-bottom:25px;

    text-shadow:0 5px 20px rgba(0,0,0,.5);

}

.hero-content p{

    width:75%;

    margin:auto;

    font-size:21px;

    line-height:1.8;

    margin-bottom:45px;

    text-shadow:0 3px 10px rgba(0,0,0,.5);

}

/*=========================
BUTTONS
=========================*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#d4af37;

    color:#fff;

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.btn-primary:hover{

    background:#ffffff;

    color:#111;

    transform:translateY(-5px);

}

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

    transform:translateY(-5px);

}
/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    header{

        padding:20px 5%;

        flex-direction:column;

        gap:20px;

    }

    nav{

        gap:20px;

        flex-wrap:wrap;

        justify-content:center;

    }

    .hero-content h1{

        font-size:48px;

    }

    .hero-content p{

        width:100%;

        font-size:18px;

    }

}

@media(max-width:768px){

    .logo h2{

        font-size:34px;

    }

    .hero-content h4{

        font-size:18px;

    }

    .hero-content h1{

        font-size:36px;

    }

    .hero-content p{

        font-size:16px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

}

/*===========================
WHY US
============================*/

.why-us{

    padding:100px 8%;
    background:#081623;

}

.section-title{

    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;

}

.section-title h4{

    color:#d4af37;
    letter-spacing:3px;
    font-size:18px;
    margin-bottom:15px;

}

.section-title h2{

    color:white;
    font-size:48px;
    margin-bottom:25px;

}

.section-title p{

    color:#c9c9c9;
    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.why-card{

    background:#0d2134;

    padding:40px;

    border-radius:15px;

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(212,175,55,.25);

}

.why-card i{

    font-size:45px;

    color:#d4af37;

    margin-bottom:25px;

}

.why-card h3{

    color:white;

    margin-bottom:20px;

}

.why-card p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:25px;

}

.why-card a{

    color:#d4af37;

    text-decoration:none;

    font-weight:bold;

}

.why-card a:hover{

    letter-spacing:1px;

}

/*=========================
DESTINATIONS
=========================*/

.destinations{

    padding:110px 8%;

    background:#07111d;

}

.destination-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.destination-card{

    background:#0d2134;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

}

.destination-card:hover{

    transform:translateY(-12px);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.destination-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.destination-card:hover img{

    transform:scale(1.08);

}

.destination-content{

    padding:30px;

}

.destination-content h3{

    color:white;

    margin-bottom:15px;

}

.destination-content p{

    color:#d8d8d8;

    line-height:1.8;

}

.destination-content span{

    display:block;

    margin:20px 0;

    color:#d4af37;

    font-weight:bold;

    font-size:18px;

}

.destination-content a{

    display:inline-block;

    padding:12px 28px;

    border:2px solid #d4af37;

    border-radius:40px;

    color:#d4af37;

    text-decoration:none;

    transition:.3s;

}

.destination-content a:hover{

    background:#d4af37;

    color:#07111d;

}

/*=========================
PACKAGES
=========================*/

.packages{

    padding:110px 8%;

    background:#081623;

}

.package-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}

.package-card{

    background:#0d2134;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

}

.package-card:hover{

    transform:translateY(-10px);

}

.package-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.package-content{

    padding:30px;

}

.days{

    background:#d4af37;

    color:#07111d;

    padding:8px 18px;

    border-radius:40px;

    font-weight:bold;

}

.package-content h3{

    color:white;

    margin:20px 0;

}

.package-content p{

    color:#d0d0d0;

    line-height:1.8;

}

.package-info{

    display:flex;

    justify-content:space-between;

    margin:25px 0;

    color:#d4af37;

}

.package-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.package-bottom h4{

    color:white;

    font-size:28px;

}

.package-bottom a{

    padding:12px 25px;

    background:#d4af37;

    color:#07111d;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

}

.package-bottom a:hover{

    background:white;

}

/*=========================
EXPERIENCES
=========================*/

.experiences{

    padding:110px 8%;

    background:#07111d;

}

.experience-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.experience-card{

    background:#0d2134;

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    text-decoration:none;

    transition:.4s;

    color:white;

}

.experience-card:hover{

    transform:translateY(-10px);

    background:#102842;

    box-shadow:0 15px 35px rgba(212,175,55,.25);

}

.experience-card i{

    font-size:55px;

    color:#d4af37;

    margin-bottom:25px;

}

.experience-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.experience-card p{

    color:#d8d8d8;

    line-height:1.8;

}

/*=========================
TESTIMONIALS
=========================*/

.testimonials{

    padding:110px 8%;

    background:#081623;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.testimonial-card{

    background:#0d2134;

    padding:40px;

    border-radius:18px;

    text-align:center;

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(212,175,55,.20);

}

.testimonial-card img{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    margin:auto;

    border:4px solid #d4af37;

    margin-bottom:20px;

}

.testimonial-card h3{

    color:white;

    margin-bottom:8px;

}

.testimonial-card span{

    color:#d4af37;

}

.stars{

    color:#FFD700;

    font-size:22px;

    margin:20px 0;

}

.testimonial-card p{

    color:#d0d0d0;

    line-height:1.8;

}

/*=========================
GALLERY
=========================*/

.gallery{

    padding:120px 8%;

    background:#07111d;

}

.gallery-grid{

    columns:4 250px;

    column-gap:18px;

}

.gallery-grid img{

    width:100%;

    margin-bottom:18px;

    border-radius:20px;

    cursor:pointer;

    transition:.4s;

}

.gallery-grid img:hover{

    transform:scale(1.03);

    filter:brightness(110%);

}

/*=========================
STATISTICS
=========================*/

.stats{

    position:relative;

    padding:120px 8%;

    background:url("images/stats-bg.jpg") center center/cover no-repeat;

}

.stats-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.stats-container{

    position:relative;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:40px;

    z-index:2;

}

.stat-box{

    text-align:center;

    color:white;

}

.stat-box i{

    font-size:55px;

    color:#d4af37;

    margin-bottom:25px;

}

.stat-box h2{

    font-size:60px;

    margin-bottom:15px;

    font-family:'Cinzel',serif;

}

.stat-box p{

    font-size:20px;

    color:#ddd;

}
/*=========================
STICKY NAVBAR
=========================*/

header{

    transition:0.4s ease;

}

header.sticky{

    background:rgba(4,18,32,.96);

    padding:15px 8%;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    backdrop-filter:blur(18px);

}

header.sticky .logo h2{

    font-size:42px;

}

header.sticky nav a{

    color:#ffffff;

}

header.sticky .book-btn{

    background:#d4af37;

    color:#07111d;

}

header.sticky .book-btn:hover{

    background:#fff;

}

/*=========================
PACKAGES
=========================*/

.packages{

    padding:100px 8%;

    background:#07111d;

}

.packages-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

    margin-top:60px;

}

.package-card{

    background:#0f1d2d;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

}

.package-card:hover{

    transform:translateY(-12px);

    box-shadow:0 15px 40px rgba(0,0,0,.4);

}

.package-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.package-info{

    padding:25px;

}

.package-info h3{

    color:white;

    margin-bottom:12px;

    font-size:28px;

}

.package-info p{

    color:#cccccc;

    margin-bottom:25px;

}

.package-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.price{

    color:#d4af37;

    font-size:24px;

    font-weight:bold;

}

.package-bottom a{

    text-decoration:none;

    background:#d4af37;

    color:#07111d;

    padding:12px 22px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.package-bottom a:hover{

    background:white;

}

/*=========================
TESTIMONIALS
=========================*/

.testimonials{

    padding:110px 8%;

    background:#091421;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:60px;

}

.testimonial-card{

    background:#122133;

    padding:40px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-12px);

}

.testimonial-card img{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

    border:4px solid #d4af37;

}

.testimonial-card h3{

    color:white;

    margin-bottom:8px;

}

.testimonial-card h5{

    color:#d4af37;

    margin-bottom:18px;

}

.stars{

    color:#FFD700;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#ddd;

    line-height:1.8;

}

/*=========================
CALL TO ACTION
=========================*/

.cta{

    position:relative;

    padding:140px 8%;

    background:url("images/cta-bg.jpg") center center/cover no-repeat;

    text-align:center;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.cta-content h4{

    color:#d4af37;

    letter-spacing:3px;

    margin-bottom:20px;

}

.cta-content h2{

    color:white;

    font-size:55px;

    margin-bottom:25px;

    line-height:1.2;

}

.cta-content p{

    color:#eeeeee;

    line-height:1.9;

    margin-bottom:40px;

    font-size:18px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#d4af37;

    color:#07111d;

    padding:18px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.btn-primary:hover{

    background:white;

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:18px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#07111d;

}

/*=========================
FOOTER
=========================*/

.footer{

    background:#050b14;

    padding:90px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:45px;

}

.footer-box h2{

    color:#d4af37;

    font-size:38px;

}

.footer-box h3{

    color:white;

    margin-bottom:20px;

}

.footer-box p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:12px;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#d4af37;

    padding-left:8px;

}

.footer-box form{

    margin-top:20px;

}

.footer-box input{

    width:100%;

    padding:15px;

    border:none;

    border-radius:8px;

    margin-bottom:15px;

}

.footer-box button{

    width:100%;

    padding:15px;

    background:#d4af37;

    border:none;

    border-radius:8px;

    font-weight:bold;

    cursor:pointer;

}

.footer-box button:hover{

    background:white;

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    color:#999;

}

/*=========================
ZANZIBAR HERO
=========================*/

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    background: rgba(4,12,24,.75);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.hero{
    .hero{
    position: relative;
    height: 100vh;
    background: url(images/zanzibar-hero.jpg) center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
}

.hero::before
  .hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
}

.hero-content
    .hero-content{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:20px;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:16px 38px;
    border-radius:40px;
    text-decoration:none;
    transition:.4s;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

/* ================= WHY ZANZIBAR ================= */

.why-zanzibar{

    background:#081521;

    padding:120px 8%;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-image img{

    width:100%;

    border-radius:25px;

    display:block;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.why-content span{

    color:#d4af37;

    letter-spacing:4px;

    font-weight:600;

}

.why-content h2{

    color:#fff;

    font-size:52px;

    margin:20px 0;

    line-height:1.2;

}

.why-content p{

    color:#c6d3df;

    line-height:1.9;

    margin-bottom:20px;

}

.why-features{

    margin-top:45px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.feature-card{

    background:#102131;

    padding:30px;

    border-radius:18px;

    transition:.4s;

}

.feature-card:hover{

    transform:translateY(-8px);

    background:#13283c;

}

.feature-card i{

    font-size:38px;

    color:#d4af37;

    margin-bottom:20px;

}

.feature-card h4{

    color:#fff;

    margin-bottom:12px;

}

.feature-card p{

    margin:0;

    font-size:15px;

}

/* ================= BEACHES ================= */

.beaches{

    padding:120px 8%;

    background:#07131d;

}

.beach-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.beach-card{

    background:#0e2132;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

}

.beach-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.beach-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.beach-content{

    padding:30px;

}

.beach-content h3{

    color:#fff;

    margin-bottom:15px;

    font-size:28px;

}

.beach-content p{

    color:#c7d1dc;

    line-height:1.8;

}

.stars{

    color:#d4af37;

    font-size:22px;

    margin:18px 0;

}

.beach-content a{

    color:#d4af37;

    font-weight:600;

    text-decoration:none;

}

.beach-content a:hover{

    letter-spacing:1px;

}

/*====================================
TOP BEACHES
====================================*/

.beaches{
    padding:120px 8%;
    background:#07131d;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-title span{
    color:#d4af37;
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
}

.section-title h2{
    color:#fff;
    font-size:48px;
    margin:15px 0;
}

.section-title p{
    color:#c7d3df;
    line-height:1.8;
}

.beach-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.beach-card{
    background:#102131;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.beach-card:hover{
    transform:translateY(-10px);
}

.beach-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.beach-content{
    padding:25px;
}

.beach-content h3{
    color:#fff;
    margin-bottom:12px;
    font-size:28px;
}

.beach-content p{
    color:#c7d3df;
    line-height:1.8;
    margin-bottom:20px;
}

.stars{
    color:#d4af37;
    font-size:20px;
    margin-bottom:20px;
}

.beach-content a{
    display:inline-block;
    color:#d4af37;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.beach-content a:hover{
    color:#fff;
    letter-spacing:1px;
}

/* Responsive */

@media(max-width:992px){

.beach-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.beach-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:38px;

}

}

/*==============================
        ZANZIBAR BEACHES
==============================*/

.beaches{
    padding:120px 0;
    background:#071421;
}

.beaches .section-title{
    text-align:center;
    max-width:760px;
    margin:auto auto 70px;
}

.beaches .section-title span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:4px;
    font-weight:600;
    font-size:14px;
}

.beaches .section-title h2{
    color:#fff;
    font-size:48px;
    margin:18px 0;
    font-family:'Cinzel',serif;
}

.beaches .section-title p{
    color:#c7d1db;
    font-size:18px;
    line-height:1.8;
}

.beach-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.beach-card{
    background:#0d1d2e;
    border-radius:20px;
    overflow:hidden;
    transition:.45s;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.beach-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.45);
}

.beach-card img{
    width:100%;
    height:270px;
    object-fit:cover;
    transition:.6s;
    display:block;
}

.beach-card:hover img{
    transform:scale(1.08);
}

.beach-content{
    padding:30px;
}

.location{
    display:inline-block;
    background:rgba(212,175,55,.15);
    color:#d4af37;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    margin-bottom:18px;
}

.location i{
    margin-right:6px;
}

.beach-content h3{
    color:#fff;
    font-size:32px;
    margin-bottom:18px;
    font-family:'Cinzel',serif;
}

.beach-content p{
    color:#c5ced8;
    line-height:1.9;
    margin-bottom:25px;
}

.beach-details{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    color:#d4af37;
    font-weight:600;
}

.beach-content a{
    display:inline-block;
    text-decoration:none;
    color:#d4af37;
    font-weight:700;
    transition:.3s;
}

.beach-content a:hover{
    color:#fff;
    letter-spacing:1px;
}

/* Responsive */

@media(max-width:991px){

.beaches{
    padding:90px 0;
}

.beaches .section-title h2{
    font-size:38px;
}

}

@media(max-width:768px){

.beach-grid{
    grid-template-columns:1fr;
}

.beach-card img{
    height:240px;
}

.beaches .section-title h2{
    font-size:32px;
}

.beach-content h3{
    font-size:28px;
}

}

/*======================================
        LUXURY EXPERIENCES
======================================*/

.experiences{
    padding:120px 0;
    background:#08131f;
}

.experiences .section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.experiences .section-title span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:4px;
    font-weight:600;
    font-size:14px;
}

.experiences .section-title h2{
    font-size:48px;
    color:#fff;
    margin:20px 0;
    font-family:'Cinzel',serif;
}

.experiences .section-title p{
    color:#bfc9d4;
    line-height:1.9;
    font-size:18px;
}

.experience-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;

}

.experience-card{

    background:#0d1d2e;
    border-radius:20px;
    overflow:hidden;
    transition:.45s;
    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.experience-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.experience-card img{

    width:100%;
    height:250px;
    object-fit:cover;
    transition:.6s;

}

.experience-card:hover img{

    transform:scale(1.08);

}

.experience-content{

    padding:30px;

}

.experience-content h3{

    color:#fff;
    font-size:30px;
    margin-bottom:18px;
    font-family:'Cinzel',serif;

}

.experience-content p{

    color:#c7d1db;
    line-height:1.8;
    margin-bottom:25px;

}

.experience-content span{

    display:inline-block;
    background:#d4af37;
    color:#08131f;
    padding:10px 20px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;

}

.experience-content a{

    display:inline-block;
    color:#d4af37;
    font-weight:700;
    text-decoration:none;
    transition:.3s;

}

.experience-content a:hover{

    color:#fff;
    letter-spacing:1px;

}

/* Hover line */

.experience-card::after{

    content:'';
    display:block;
    width:0;
    height:4px;
    background:#d4af37;
    transition:.4s;

}

.experience-card:hover::after{

    width:100%;

}

/* Responsive */

@media(max-width:991px){

.experiences{

padding:90px 0;

}

.experiences .section-title h2{

font-size:38px;

}

}

@media(max-width:768px){

.experience-grid{

grid-template-columns:1fr;

}

.experience-card img{

height:230px;

}

.experience-content h3{

font-size:26px;

}

.experiences .section-title h2{

font-size:32px;

}

}

/*====================================
        LUXURY RESORTS
====================================*/

.luxury-resorts{
    padding:120px 0;
    background:#071421;
}

.resort-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.resort-card{
    background:#0d1d2e;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.resort-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.45);
}

.resort-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.resort-content{
    padding:28px;
}

.resort-location{
    color:#d4af37;
    font-size:14px;
    margin-bottom:12px;
}

.resort-location i{
    margin-right:6px;
}

.resort-content h3{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.resort-content p{
    color:#c7d1db;
    line-height:1.8;
}

.resort-footer{
    margin-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.price{
    color:#d4af37;
    font-weight:600;
}

.price strong{
    font-size:22px;
}

.resort-footer a{
    text-decoration:none;
    color:#fff;
    background:#d4af37;
    padding:10px 20px;
    border-radius:30px;
    transition:.3s;
}

.resort-footer a:hover{
    background:#fff;
    color:#111;
}

/*====================================
        ZANZIBAR PACKAGES
====================================*/

.packages{
    padding:120px 0;
    background:#08131f;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:35px;
}

.package-card{
    background:#102131;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.package-card:hover{
    transform:translateY(-10px);
}

.package-image{
    position:relative;
}

.package-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.days{
    position:absolute;
    top:20px;
    right:20px;
    background:#d4af37;
    color:#08131f;
    padding:8px 18px;
    border-radius:30px;
    font-weight:700;
}

.package-content{
    padding:30px;
}

.package-content h3{
    color:#fff;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.package-content p{
    color:#c7d1db;
    line-height:1.8;
    margin-bottom:20px;
}

.package-content ul{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.package-content ul li{
    color:#d7dfe8;
    margin-bottom:12px;
}

.package-content ul i{
    color:#d4af37;
    margin-right:8px;
}

.package-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.package-footer .price{
    color:#d4af37;
    font-size:18px;
}

.package-footer strong{
    font-size:26px;
}

.package-footer a{
    background:#d4af37;
    color:#08131f;
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.package-footer a:hover{
    background:#fff;
}

/*====================================
        TESTIMONIALS
====================================*/

.testimonials{
    padding:120px 0;
    background:#071421;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:35px;
}

.testimonial-card{
    background:#102131;
    padding:35px;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card .stars{
    color:#d4af37;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#d7dfe8;
    line-height:1.9;
    margin-bottom:30px;
}

.guest{
    display:flex;
    align-items:center;
    gap:15px;
}

.guest img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.guest h4{
    color:#fff;
    margin-bottom:5px;
}

.guest span{
    color:#d4af37;
    font-size:14px;
}

/*====================================
              FAQ
====================================*/

.faq{

    padding:120px 0;

    background:#08131f;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#102131;

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:#fff;

    font-size:20px;

    font-weight:600;

    padding:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

}

.faq-question i{

    color:#d4af37;

}

.faq-answer{

    display:none;

    padding:0 25px 25px;

}

.faq-answer p{

    color:#c7d1db;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    display:block;

}

/*====================================
          PHOTO GALLERY
====================================*/

.gallery{

    padding:120px 0;

    background:#071421;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    transition:.5s;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/*====================================
          BOOKING CTA
====================================*/

.booking-cta{

    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url("images/zanzibar-cta.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    padding:140px 0;

    text-align:center;

}

.cta-content{

    max-width:800px;

    margin:auto;

}

.cta-content span{

    color:#d4af37;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

}

.cta-content h2{

    color:#fff;

    font-size:56px;

    margin:25px 0;

    font-family:'Cinzel',serif;

}

.cta-content p{

    color:#e2e8ef;

    line-height:2;

    font-size:18px;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-book{

    background:#d4af37;

    color:#08131f;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}

.btn-book:hover{

    background:#fff;

}

.btn-contact{

    border:2px solid #fff;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.4s;

}

.btn-contact:hover{

    background:#fff;

    color:#08131f;

}

@media(max-width:768px){

.cta-content h2{

font-size:38px;

}

.cta-content p{

font-size:16px;

}

}

/*====================================
              FOOTER
====================================*/

.footer{

    background:#04101a;

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:45px;

}

.footer-box h2{

    color:#d4af37;

    margin-bottom:20px;

    font-family:'Cinzel',serif;

}

.footer-box h3{

    color:#fff;

    margin-bottom:20px;

}

.footer-box p{

    color:#c7d1db;

    line-height:1.9;

    margin-bottom:12px;

}

.footer-box ul{

    list-style:none;

    padding:0;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:#c7d1db;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#d4af37;

    padding-left:5px;

}

.social-links{

    margin-top:20px;

}

.social-links a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    background:#102131;

    color:#fff;

    border-radius:50%;

    margin-right:10px;

    text-decoration:none;

    transition:.3s;

}

.social-links a:hover{

    background:#d4af37;

    color:#08131f;

}

.footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.1);

    margin:50px 0 25px;

}

.copyright{

    text-align:center;

    color:#bfc9d4;

    font-size:15px;

}

/*====================================
        BOOKING PAGE
====================================*/

.booking-hero{

padding:150px 0 100px;

background:
linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url(images/booking-hero.jpg);

background-size:cover;

background-position:center;

text-align:center;

}

.booking-hero h1{

color:#fff;

font-size:60px;

font-family:'Cinzel',serif;

margin-bottom:20px;

}

.booking-hero p{

color:#f1f1f1;

max-width:700px;

margin:auto;

font-size:18px;

line-height:1.8;

}

.booking-section{

padding:100px 0;

background:#071421;

}

.booking-card{

background:#0d1d2e;

padding:50px;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.booking-card h2{

color:#fff;

margin-bottom:35px;

font-family:'Cinzel',serif;

}

.booking-card label{

color:#d4af37;

margin-bottom:10px;

display:block;

font-weight:600;

}

.booking-card .form-control{

height:55px;

background:#13263b;

border:none;

color:#fff;

}

.booking-card .form-control:focus{

background:#13263b;

color:#fff;

box-shadow:0 0 0 2px rgba(212,175,55,.4);

}

.booking-buttons{

margin-top:40px;

text-align:right;

}

.next-btn{

background:#d4af37;

color:#08131f;

padding:15px 35px;

border:none;

border-radius:50px;

font-weight:700;

transition:.3s;

}

.next-btn:hover{

background:#fff;

}

.prev-btn{

background:#444;

color:#fff;

padding:15px 35px;

border:none;

border-radius:50px;

margin-right:15px;

transition:.3s;

}

.prev-btn:hover{

background:#222;

}

.booking-buttons{

display:flex;

justify-content:flex-end;

gap:15px;

flex-wrap:wrap;

}

/*==============================
BOOKING SECTION
==============================*/

.booking-section{
    padding:100px 8%;
    background:#07121f;
}

.booking-section .section-title{
    text-align:center;
    margin-bottom:60px;
}

.booking-section .section-title span{
    color:#d4af37;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;
}

.booking-section .section-title h2{
    font-size:50px;
    color:#fff;
    margin:15px 0;
}

.booking-section .section-title p{
    color:#b9c2cf;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.booking-form{
    background:#0d1c2d;
    padding:50px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.input-box{
    display:flex;
    flex-direction:column;
}

.input-box label{
    color:#fff;
    margin-bottom:10px;
    font-weight:600;
}

.input-box input,
.input-box select,
.input-box textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid rgba(255,255,255,.1);
    background:#12253b;
    color:#fff;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
    border-color:#d4af37;
    box-shadow:0 0 15px rgba(212,175,55,.35);
}

.input-box textarea{
    resize:none;
}

.full-width{
    margin-top:25px;
}

.book-btn{
    margin-top:35px;
    width:100%;
    padding:18px;
    background:#d4af37;
    color:#07121f;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.4s;
}

.book-btn:hover{
    background:#fff;
    transform:translateY(-3px);
}

.booking-form option{
    background:#12253b;
    color:#fff;
}

@media(max-width:900px){

.form-grid{
    grid-template-columns:1fr;
}

.booking-form{
    padding:30px;
}

.booking-section .section-title h2{
    font-size:38px;
}

}

@media(max-width:600px){

.booking-section{
    padding:70px 5%;
}

.booking-form{
    padding:20px;
}

.booking-section .section-title h2{
    font-size:30px;
}

.book-btn{
    font-size:16px;
}

}

/*==================================================
           BOOKING PAGE
==================================================*/

.booking-hero{

position:relative;

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url(images/booking-hero.jpg);

background-size:cover;

background-position:center;

height:70vh;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

.booking-hero .overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.35);

}

.hero-content{

position:relative;

z-index:2;

max-width:850px;

}

.hero-content span{

display:inline-block;

letter-spacing:4px;

color:#d4af37;

font-weight:600;

margin-bottom:15px;

}

.hero-content h1{

font-family:'Cinzel',serif;

font-size:64px;

color:#fff;

margin-bottom:25px;

}

.hero-content p{

font-size:19px;

color:#f1f1f1;

line-height:1.9;

}

.booking-section{

padding:110px 0;

background:#08131f;

}

.booking-wrapper{

max-width:1050px;

margin:auto;

background:#0f2032;

border-radius:25px;

padding:60px;

box-shadow:0 25px 60px rgba(0,0,0,.45);

}

/*==================================================
             PROGRESS BAR
==================================================*/

.progress-area{

margin-bottom:60px;

}

.progress-bar{

height:8px;

background:#22384d;

border-radius:50px;

overflow:hidden;

}

.progress-fill{

height:100%;

width:20%;

background:#d4af37;

transition:.4s;

}

.progress-steps{

display:flex;

justify-content:space-between;

margin-top:25px;

}

.step{

text-align:center;

flex:1;

}

.step span{

width:45px;

height:45px;

display:inline-flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#22384d;

color:#fff;

font-weight:700;

margin-bottom:10px;

transition:.3s;

}

.step.active span{

background:#d4af37;

color:#08131f;

}

.step p{

color:#cfd9e5;

font-size:15px;

}

/*==================================================
                FORM STEPS
==================================================*/

.form-step{
    display:none;
    animation:fadeIn .5s ease;
}

.form-step.active{
    display:block;
}

.form-step h2{
    color:#fff;
    font-family:'Cinzel',serif;
    margin-bottom:40px;
    font-size:34px;
}

.form-step h2 i{
    color:#d4af37;
    margin-right:12px;
}

/*==================================================
                  LABELS
==================================================*/

.form-step label{
    display:block;
    color:#d4af37;
    margin-bottom:10px;
    font-weight:600;
    font-size:15px;
}

/*==================================================
                  INPUTS
==================================================*/

.form-control{

    background:#16293f !important;

    border:1px solid rgba(255,255,255,.08);

    color:#fff !important;

    border-radius:12px;

    height:56px;

    padding:15px 18px;

    transition:.35s;

    box-shadow:none;

}

.form-control::placeholder{

    color:#aeb8c4;

}

.form-control:focus{

    border-color:#d4af37;

    background:#1b314b !important;

    box-shadow:0 0 15px rgba(212,175,55,.25);

}

textarea.form-control{

    min-height:170px;

    resize:none;

    padding-top:18px;

}

select.form-control{

    cursor:pointer;

}

select.form-control option{

    background:#16293f;

    color:#fff;

}

/*==================================================
                    BUTTONS
==================================================*/

.buttons{

    margin-top:45px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.next-btn,
.prev-btn,
.submit-btn{

    border:none;

    padding:16px 38px;

    border-radius:50px;

    font-size:16px;

    font-weight:700;

    transition:.35s;

}

.next-btn{

    background:#d4af37;

    color:#08131f;

}

.next-btn:hover{

    background:#f2c94c;

    transform:translateY(-3px);

}

.prev-btn{

    background:#2b3f54;

    color:#fff;

}

.prev-btn:hover{

    background:#405a74;

}

.submit-btn{

    background:#1fb86a;

    color:#fff;

}

.submit-btn:hover{

    background:#16a05c;

    transform:translateY(-3px);

}

/*==================================================
                  ANIMATION
==================================================*/

@keyframes fadeIn{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* HERO */
.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.heroSlider{
    width: 100%;
    height: 100%;
}

.heroSlider .swiper-wrapper{
    height: 100%;
}

.heroSlider .swiper-slide{
    height: 100%;
}

.heroSlider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT OVER IMAGE */
.hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;

    width: 90%;
    max-width: 900px;
    text-align: center;
    color: #fff;
}

.cards{
display:flex;
gap:25px;
margin-bottom:40px;
flex-wrap:wrap;
}

.card{

background:#13263d;
padding:30px;
border-radius:15px;
flex:1;
min-width:220px;
text-align:center;
border-left:5px solid #d4af37;

}

.card h2{

margin:0;
font-size:42px;
color:#d4af37;

}

.card p{

margin-top:10px;
font-size:18px;

}

.search-box{

display:flex;
gap:15px;
margin-bottom:30px;

}

.search-box input{

flex:1;
padding:14px;
border:none;
border-radius:8px;
font-size:16px;
background:#fff;

}

.search-box button{

background:#d4af37;
border:none;
padding:14px 25px;
border-radius:8px;
font-weight:bold;
cursor:pointer;

}

.search-box button:hover{

background:#c49b1f;

}

.btn-view{

display:inline-block;
padding:8px 16px;
background:#d4af37;
color:#08131f;
text-decoration:none;
font-weight:bold;
border-radius:6px;

}

.btn-view:hover{

background:#c79c22;

}

.btn-edit{

display:inline-block;
padding:8px 16px;
margin-left:8px;
background:#1e88e5;
color:#fff;
text-decoration:none;
font-weight:bold;
border-radius:6px;

}

.btn-edit:hover{

background:#1565c0;

}

.btn-delete{

display:inline-block;
padding:8px 16px;
margin-left:8px;
background:#c62828;
color:white;
text-decoration:none;
font-weight:bold;
border-radius:6px;

}

.btn-delete:hover{

background:#a31515;

}