/*==================================================
AFRIQUEST LUXURY SAFARIS
PAGES.CSS
==================================================*/

:root{
    --primary:#0A3D62;
    --secondary:#D4AF37;
    --white:#ffffff;
    --dark:#111111;
    --text:#666666;
    --light:#f8f9fb;
    --transition:.4s ease;
}

/*==============================
ABOUT HERO
==============================*/

.about-hero{

    height:75vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/about-banner.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.hero-content{

    width:min(900px,90%);

    color:#fff;

}

.hero-content h1{

    font-family:'Cinzel',serif;

    font-size:64px;

    margin-bottom:25px;

}

.hero-content p{

    font-size:21px;

    line-height:1.9;

    margin-bottom:40px;

}

.hero-btn{

    display:inline-block;

    background:var(--secondary);

    color:#111;

    padding:16px 45px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.hero-btn:hover{

    transform:translateY(-5px);

    background:#f2ca52;

}

/*==============================
ABOUT STORY
==============================*/

.about-story{

    padding:110px 0;

    background:#071A2F;

}

.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.story-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.small-title{

    display:inline-block;

    color:var(--primary);

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

    font-weight:600;

}

.story-content h2{

    font-family:'Cinzel',serif;

    font-size:48px;

    color:var(--primary);

    margin-bottom:30px;

}

.story-content p{

    color:var(--text);

    font-size:18px;

    line-height:2;

    margin-bottom:20px;

}

/*==================================
SECTION HEADING
==================================*/

.section-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-heading span{
    display:inline-block;
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-heading h2{
    font-family:'Cinzel',serif;
    font-size:48px;
    color:var(--primary);
    margin-bottom:20px;
}

.section-heading p{
    color:var(--text);
    font-size:18px;
    line-height:1.8;
}

/*==================================
MISSION
==================================*/

.mission-section{
    padding:110px 0;
    background:#071A2F;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.mission-card{
    background:#fff;
    border-radius:20px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:var(--transition);
}

.mission-card:hover{
    transform:translateY(-10px);
}

.mission-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:var(--primary);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
}

.mission-card h3{
    color:var(--primary);
    font-size:28px;
    margin-bottom:18px;
}

.mission-card p{
    color:var(--text);
    line-height:1.9;
}

/*==================================
WHY CHOOSE
==================================*/
/*==================================================
WHY SECTION
==================================================*/
/*==================================
WHY CHOOSE US
==================================*/

.why-section{
    background:#0A3D62;
    padding:100px 0;
}

.why-section .container{
    max-width:1200px;
    margin:auto;
}

.why-section .section-heading{
    text-align:center;
    margin-bottom:60px;
}

.why-section .section-heading span{
    color:#D4AF37;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
}

.why-section .section-heading h2{
    font-size:52px;
    color:#fff;
    margin:20px 0;
    font-family:'Cinzel',serif;
}

.why-section .section-heading p{
    color:#ddd;
    max-width:700px;
    margin:auto;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    font-size:50px;
    color:#D4AF37;
    margin-bottom:20px;
}

.why-card h3{
    color:#0A3D62;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.why-card p{
    color:#555;
    line-height:1.8;
}

@media(max-width:992px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .why-grid{
        grid-template-columns:1fr;
    }

    .why-section .section-heading h2{
        font-size:36px;
    }
}

/*==================================
STATISTICS
==================================*/

.stats-section{
    background:#071AF;
    padding:110px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    background:#fff;
    padding:45px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:var(--transition);
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box h2{
    font-family:'Cinzel',serif;
    color:var(--secondary);
    font-size:55px;
    margin-bottom:15px;
}

.stat-box p{
    color:var(--text);
    font-size:18px;
}


.why-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:30px !important;
    margin-top:60px !important;
    
}

.why-card{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    min-height:220px !important;
    background:#ffffff !important;
    color:#000 !important;
    padding:30px !important;
    border:2px solid #D4AF37 !important;
}

.why-card *{
    color:#000 !important;
}

/*==================================
MEET OUR TEAM
==================================*/

.team-section{
    padding:120px 0;
    background:#071AF;
}

.team-section .container{
    max-width:1200px;
    margin:auto;
}

.team-section .section-title{
    text-align:center;
    margin-bottom:70px;
}

.team-section .section-title h2{
    font-family:'Cinzel',serif;
    font-size:50px;
    color:#0A3D62;
    margin-bottom:20px;
}

.team-section .section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.team-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.team-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.team-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.team-card:hover img{
    transform:scale(1.08);
}

.team-card h3{
    margin-top:30px;
    font-size:30px;
    color:#0A3D62;
    font-family:'Cinzel',serif;
}

.team-card span{
    display:block;
    margin:12px 0 30px;
    color:#D4AF37;
    font-size:16px;
    font-weight:600;
    letter-spacing:1px;
}

@media(max-width:992px){

.team-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.team-grid{

grid-template-columns:1fr;

}

.team-card img{

height:380px;

}

.team-section .section-title h2{

font-size:36px;

}

}

/*==================================================
LUXURY CTA
==================================================*/

.about-cta{

    position:relative;

    padding:140px 0;

    background:

    linear-gradient(rgba(5,20,38,.75),rgba(5,20,38,.75)),

    url("../images/about-banner.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,
    rgba(11,61,46,.35),
    rgba(0,0,0,.25));

}

.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:900px;

    margin:auto;

    color:#fff;

}

.cta-small{

    display:inline-block;

    color:#D4AF37;

    letter-spacing:4px;

    font-size:15px;

    font-weight:600;

    margin-bottom:20px;

}

.cta-content h2{

    font-family:'Cinzel',serif;

    font-size:58px;

    margin-bottom:30px;

    line-height:1.3;

}

.cta-content p{

    font-size:20px;

    line-height:1.9;

    color:#ededed;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

/* BOOK BUTTON */

.cta-book{

    background:#D4AF37;

    color:#111;

    padding:18px 40px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.4s;

}

.cta-book:hover{

    transform:translateY(-6px);

    background:#f4c842;

}

/* WHATSAPP */

.cta-whatsapp{

    background:#25D366;

    color:#fff;

    padding:18px 40px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.4s;

}

.cta-whatsapp:hover{

    background:#128C7E;

    transform:translateY(-6px);

}

.cta-book i,
.cta-whatsapp i{

    margin-right:10px;

}

@media(max-width:768px){

.cta-content h2{

font-size:38px;

}

.cta-content p{

font-size:17px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

.cta-book,
.cta-whatsapp{

width:100%;

max-width:340px;

text-align:center;

}

}

/*==================================================
SERENGETI HERO
==================================================*/

.destination-hero{

    position:relative;
    height:100vh;
    overflow:hidden;

    display:flex;
    align-items:center;

}

/* SERENGETI HERO VIDEO */


.hero-video{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;

}


.destination-hero .hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(7,26,47,.70),
        rgba(7,26,47,.25)
    );

    z-index:1;

}


.hero-text{

    position:relative;
    z-index:2;

}

.hero-text span{

    display:inline-block;

    color:#D4AF37;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:20px;

}

.hero-text h1{

    font-family:'Cinzel',serif;

    font-size:72px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-text p{

    font-size:21px;

    line-height:1.9;

    margin-bottom:40px;

    color:#f5f5f5;

}

.hero-btn{

    display:inline-block;

    background:#D4AF37;

    color:#111;

    padding:18px 45px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.4s;

}

.hero-btn:hover{

    background:#f3c548;

    transform:translateY(-6px);

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:768px){

.hero-text{

text-align:center;

}

.hero-text h1{

font-size:42px;

}

.hero-text p{

font-size:18px;

}

.destination-hero{

justify-content:center;

}

}

/*=========================================
DESTINATION ABOUT
=========================================*/

.destination-about{

    padding:120px 0;

    background:#071A2F;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.small-title{

    color:#D4AF37;

    letter-spacing:3px;

    font-weight:600;

    text-transform:uppercase;

}

.about-content h2{

    font-family:'Cinzel',serif;

    font-size:48px;

    color:#0A3D62;

    margin:20px 0;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.facts-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:40px;

}

.fact{

    background:#f8f8f8;

    padding:30px;

    border-radius:15px;

    text-align:center;

    transition:.3s;

}

.fact:hover{

    background:#D4AF37;

    transform:translateY(-8px);

}

.fact h3{

    font-size:36px;

    color:#0A3D62;

    margin-bottom:10px;

}

.fact span{

    color:#555;

    font-size:15px;

}

@media(max-width:991px){

.about-grid{

    grid-template-columns:1fr;

}

.about-content{

    text-align:center;

}

.facts-grid{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:576px){

.facts-grid{

    grid-template-columns:1fr;

}

.about-content h2{

    font-size:36px;

}

}

/*====================================
WILDLIFE SECTION
====================================*/

.wildlife-section{

    padding:120px 0;

    background:#f8f9fb;

}

.wildlife-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.wildlife-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.wildlife-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.wildlife-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.wildlife-card:hover img{

    transform:scale(1.08);

}

.wildlife-content{

    padding:30px;

}

.wildlife-content h3{

    font-family:'Cinzel',serif;

    color:#0A3D62;

    margin-bottom:15px;

    font-size:28px;

}

.wildlife-content p{

    color:#666;

    line-height:1.8;

}

/*====================================
SERENGETI INTRO
====================================*/

.serengeti-intro{

padding:110px 0;
background:#fff;

}

.intro-header{

text-align:center;
max-width:850px;
margin:auto auto 70px;

}

.intro-header span{

color:#C9A227;
font-weight:700;
letter-spacing:3px;
text-transform:uppercase;

}

.intro-header h2{

font-size:52px;
margin:20px 0;
font-family:'Cinzel',serif;
color:#0A3D62;

}

.intro-header p{

font-size:19px;
line-height:1.9;
color:#666;

}

.intro-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;

}

.intro-card{

background:#fff;
padding:45px 35px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
text-align:center;

}

.intro-card:hover{

transform:translateY(-10px);

}

.intro-card i{

font-size:55px;
color:#C9A227;
margin-bottom:25px;

}

.intro-card h3{

color:#0A3D62;
margin-bottom:15px;
font-size:28px;

}

.intro-card p{

color:#666;
line-height:1.8;

}

/*=====================================
GREAT MIGRATION
======================================*/

.migration-section{

    padding:120px 0;

    background:#f8f9fb;

}

.migration-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.migration-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.timeline-item{

    background:#fff;

    padding:30px;

    border-left:5px solid #D4AF37;

    margin-bottom:25px;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.timeline-item:hover{

    transform:translateX(10px);

}

.timeline-item h3{

    color:#0A3D62;

    margin-bottom:12px;

    font-size:26px;

}

.timeline-item p{

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.migration-wrapper{

grid-template-columns:1fr;

}

}

/* INFO SECTION */

.info-section{

padding:100px 0;
background:#fff;

}

.info-section.light{

background:#f8f9fb;

}

.info-content{

max-width:950px;
margin:auto;

}

.info-content p{

font-size:18px;
line-height:2;
color:#555;
margin-bottom:25px;

}

/* CTA */

.destination-cta{

padding:120px 0;
text-align:center;
background:#0A3D62;
color:#fff;

}

.destination-cta h2{

font-family:'Cinzel',serif;
font-size:48px;
margin-bottom:25px;

}

.destination-cta p{

max-width:850px;
margin:auto auto 40px;
line-height:2;
font-size:18px;
color:#ddd;

}

.destination-cta .cta-buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

/*=========================================
LUXURY CTA BUTTONS
=========================================*/

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    margin-top:50px;

    flex-wrap:wrap;

}

.btn-luxury{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 42px;

    min-width:250px;

    border-radius:60px;

    font-size:17px;

    font-weight:600;

    letter-spacing:.5px;

    text-decoration:none;

    transition:all .4s ease;

}

/* GOLD BUTTON */

.btn-book{

    background:linear-gradient(135deg,#D4AF37,#F4D160);

    color:#0A3D62;

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.btn-book:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 45px rgba(212,175,55,.45);

}

/* WHATSAPP BUTTON */

.btn-whatsapp{

    background:#25D366;

    color:#fff;

    box-shadow:0 15px 35px rgba(37,211,102,.30);

}

.btn-whatsapp:hover{

    background:#1EBE5B;

    transform:translateY(-6px);

    box-shadow:0 25px 45px rgba(37,211,102,.40);

}

/* ICONS */

.btn-luxury i{

    font-size:22px;

}

/* MOBILE */

@media(max-width:768px){

.btn-luxury{

    width:100%;

    max-width:360px;

}

}

/*====================================
ZANZIBAR HERO
====================================*/

.zanzibar-hero{

position:relative;
height:100vh;

background:
linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
url("../images/zanzibar-banner.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

display:flex;
align-items:center;

}

.zanzibar-hero .hero-text{

max-width:700px;
color:#fff;

}

.zanzibar-hero span{

display:inline-block;
color:#D4AF37;
font-weight:600;
letter-spacing:3px;
margin-bottom:20px;
text-transform:uppercase;

}

.zanzibar-hero h1{

font-size:72px;
font-family:'Cinzel',serif;
line-height:1.2;
margin-bottom:25px;

}

.zanzibar-hero p{

font-size:21px;
line-height:1.9;
margin-bottom:40px;

}

@media(max-width:768px){

.zanzibar-hero h1{

font-size:44px;

}

.zanzibar-hero p{

font-size:18px;

}

}

.zanzibar-about{

padding:120px 0;
background:#fff;

}

.about-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:70px;
align-items:center;

}

.about-image img{

width:100%;
border-radius:25px;
display:block;

}

.about-content span{

color:#D4AF37;
letter-spacing:3px;
font-weight:600;
text-transform:uppercase;

}

.about-content h2{

font-family:'Cinzel',serif;
font-size:50px;
margin:20px 0;
color:#0A3D62;

}

.about-content p{

line-height:1.9;
font-size:18px;
color:#666;
margin-bottom:20px;

}

.about-stats{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;

}

.about-stats div{

background:#f7f9fc;
padding:25px;
border-radius:18px;
text-align:center;
transition:.4s;

}

.about-stats div:hover{

background:#0A3D62;
transform:translateY(-10px);

}

.about-stats h3{

color:#D4AF37;
font-size:32px;

}

.about-stats div:hover p{

color:#fff;

}

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

}

.about-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.about-stats{

grid-template-columns:1fr;

}

.about-content h2{

font-size:36px;

}

}

/*====================================
WHY ZANZIBAR
====================================*/

.why-zanzibar{

padding:120px 0;
background:#071A2F;

}

.why-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
gap:35px;
margin-top:60px;

}

.why-card{

background:#fff;
padding:45px 35px;
border-radius:22px;
text-align:center;
transition:.4s;
box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.why-card:hover{

transform:translateY(-12px);

}

.why-icon{

width:90px;
height:90px;
margin:auto;
border-radius:50%;
background:#D4AF37;
display:flex;
justify-content:center;
align-items:center;
margin-bottom:30px;

}

.why-icon i{

font-size:38px;
color:#fff;

}

.why-card h3{

font-family:'Cinzel',serif;
font-size:28px;
color:#0A3D62;
margin-bottom:18px;

}

.why-card p{

color:#666;
line-height:1.9;
font-size:17px;

}

.zanzibar-seo{
padding:120px 0;
background:#ffffff;
text-align:center;
}

.zanzibar-seo span{
color:#D4AF37;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
}

.zanzibar-seo h2{
font-size:50px;
font-family:'Cinzel',serif;
color:#0A2740;
margin:25px 0;
}

.zanzibar-seo p{
max-width:900px;
margin:0 auto 25px;
line-height:1.9;
font-size:18px;
color:#666;
}

/*==========================
DISCOVER ZANZIBAR
===========================*/

.zanzibar-about{

padding:120px 0;
background:#071A2F;

}

.zanzibar-about .section-title{

text-align:center;
max-width:850px;
margin:0 auto 70px;

}

.zanzibar-about .section-title span{

color:#D4AF37;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;

}

.zanzibar-about .section-title h2{

font-size:56px;
font-family:'Cinzel',serif;
color:#ffffff;
line-height:1.2;
margin:20px 0 30px;

}

.zanzibar-about .section-title p{

max-width:900px;
margin:auto;
font-size:20px;
line-height:2;
color:#d9e6f2;

}

.about-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.about-image img{

width:100%;
border-radius:25px;
display:block;
box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.about-content h3{

font-size:42px;
font-family:'Cinzel',serif;
color:#ffffff;
margin-bottom:25px;
line-height:1.3;

}

.about-content p{

font-size:18px;
line-height:2;
color:#d9e6f2;
margin-bottom:22px;

}

.about-content ul{

list-style:none;
padding:0;
margin:35px 0;

}

.about-content ul li{

padding:15px 0;
font-size:18px;
color:#ffffff;
border-bottom:1px solid rgba(255,255,255,.08);

}

.about-content ul li i{

color:#D4AF37;
margin-right:12px;
font-size:18px;

}

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

}

.zanzibar-about .section-title h2{

font-size:40px;

}

}

/*=================================
TOP BEACHES
==================================*/

.zanzibar-beaches{

padding:120px 0;
background:#071A2F;

}

.zanzibar-beaches .section-title{

text-align:center;
margin-bottom:70px;

}

.zanzibar-beaches .section-title span{

display:block;
color:#D4AF37;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:20px;

}

.zanzibar-beaches .section-title h2{

font-family:'Cinzel',serif;
font-size:52px;
color:#ffffff;
margin-bottom:25px;

}

.zanzibar-beaches .section-title p{

max-width:850px;
margin:auto;
font-size:18px;
line-height:1.9;
color:#f5f5f5;

}

/*==============================
BEACH GRID
==============================*/

.beach-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
gap:35px;
margin-top:70px;

}

/*==============================
BEACH CARD
==============================*/

.beach-card{

background:#ffffff;
border-radius:22px;
overflow:hidden;
box-shadow:0 18px 45px rgba(0,0,0,.18);
transition:.45s;

}

.beach-card:hover{

transform:translateY(-10px);

}

/*==============================
BEACH IMAGE
==============================*/

.beach-card img{

width:100%;
height:260px;
object-fit:cover;
display:block;
transition:.6s;

}

.beach-card:hover img{

transform:scale(1.08);

}

/*==============================
CONTENT
==============================*/

.beach-content{

padding:30px;

}

.beach-content h3{

font-family:'Cinzel',serif;
font-size:30px;
color:#0A3D62;
margin-bottom:18px;

}

.beach-content p{

color:#666;
line-height:1.9;
margin-bottom:25px;
font-size:17px;

}

/*==============================
BUTTON
==============================*/

.beach-btn{

display:inline-block;
padding:14px 34px;
background:#D4AF37;
color:#fff;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:.35s;

}

.beach-btn:hover{

background:#0A3D62;
transform:translateY(-3px);

}

/*=================================
WHY CHOOSE AFRIQUEST
=================================*/

.zanzibar-why{

padding:120px 0;
background:#ffffff;

}

.zanzibar-why .section-title{

text-align:center;
margin-bottom:70px;

}

.zanzibar-why span{

color:#D4AF37;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;

}

.zanzibar-why h2{

font-size:52px;
font-family:'Cinzel',serif;
color:#0A2A43;
margin:20px 0;

}

.zanzibar-why .section-title p{

max-width:900px;
margin:auto;
line-height:1.9;
color:#666;

}

.why-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;

}

.why-box{

background:#f8fbfd;
padding:40px;
border-radius:22px;
text-align:center;
transition:.4s;
border-top:5px solid #D4AF37;

}

.why-box:hover{

transform:translateY(-10px);
box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.why-box i{

font-size:52px;
color:#D4AF37;
margin-bottom:25px;

}

.why-box h3{

font-family:'Cinzel',serif;
font-size:28px;
color:#0A2A43;
margin-bottom:20px;

}

.why-box p{

line-height:1.9;
color:#666;

}

/*=================================
BEST TIME TO VISIT
==================================*/

.best-time{

padding:120px 0;
background:#071A2F;

}

.best-time .section-title{

text-align:center;
margin-bottom:70px;

}

.best-time .section-title span{

display:block;
color:#D4AF37;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:20px;

}

.best-time .section-title h2{

font-family:'Cinzel',serif;
font-size:52px;
color:#ffffff;
margin-bottom:25px;

}

.best-time .section-title p{

max-width:850px;
margin:auto;
color:#f3f3f3;
font-size:18px;
line-height:1.9;

}

.season-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;

}

.season-card{

background:#ffffff;
padding:40px;
border-radius:20px;
border-left:6px solid #D4AF37;
transition:.4s;
box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.season-card:hover{

transform:translateY(-10px);
box-shadow:0 25px 55px rgba(0,0,0,.25);

}

.season-card h3{

font-family:'Cinzel',serif;
font-size:30px;
color:#0A2948;
margin-bottom:10px;

}

.season-card h4{

color:#D4AF37;
font-size:20px;
margin-bottom:18px;

}

.season-card p{

line-height:1.9;
color:#555;

}

/*=================================
FAQ SECTION
==================================*/

.zanzibar-faq{

padding:120px 0;
background:#071A2F;

}

.faq-container{

max-width:950px;
margin:auto;

}

.faq-item{

background:#f8fafc;
padding:35px;
border-radius:18px;
margin-bottom:25px;
border-left:6px solid #D4AF37;
transition:.4s;

}

.faq-item:hover{

transform:translateX(8px);
box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.faq-item h3{

font-family:'Cinzel',serif;
font-size:28px;
color:#0A2948;
margin-bottom:18px;

}

.faq-item p{

color:#666;
line-height:1.9;
font-size:17px;

}

/*=================================
LUXURY CTA
==================================*/

.zanzibar-cta{

position:relative;
padding:140px 0;

background:
linear-gradient(rgba(7,26,47,.75),rgba(7,26,47,.75)),
url("../assets/images/zanzibar-cta.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;

text-align:center;
color:#fff;

}

.cta-content{

max-width:950px;
margin:auto;
position:relative;
z-index:2;

}

.cta-content span{

display:inline-block;
color:#D4AF37;
letter-spacing:3px;
font-weight:600;
text-transform:uppercase;
margin-bottom:20px;

}

.cta-content h2{

font-family:'Cinzel',serif;
font-size:58px;
line-height:1.2;
margin-bottom:30px;

}

.cta-content p{

font-size:19px;
line-height:1.9;
color:#e5e5e5;
margin-bottom:45px;

}

.cta-buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:60px;

}

.btn-book,
.btn-whatsapp{

padding:18px 42px;
border-radius:50px;
font-size:17px;
font-weight:600;
text-decoration:none;
transition:.4s;

}

.btn-book{

background:#D4AF37;
color:#fff;

}

.btn-book:hover{

background:#fff;
color:#0A2948;

}

.btn-whatsapp{

background:#25D366;
color:#fff;

}

.btn-whatsapp:hover{

background:#1faa52;

}

.related-links{

border-top:1px solid rgba(255,255,255,.2);
padding-top:40px;

}

.related-links h3{

font-family:'Cinzel',serif;
margin-bottom:25px;
color:#fff;

}

.related-links a{

display:inline-block;
margin:10px 15px;
color:#D4AF37;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.related-links a:hover{

color:#fff;

}

@media(max-width:768px){

.cta-content h2{

font-size:40px;

}

.cta-content p{

font-size:17px;

}

}

/*=================================
ZANZIBAR FAQ
==================================*/

.zanzibar-faq{

padding:120px 0;
background:#071A2F;

}

.zanzibar-faq .section-title{

text-align:center;
margin-bottom:70px;

}

.zanzibar-faq .section-title span{

display:block;
color:#D4AF37 !important;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:20px;

}

.zanzibar-faq .section-title h2{

font-family:'Cinzel',serif;
font-size:52px;
color:#ffffff !important;
margin-bottom:25px;

}

.zanzibar-faq .section-title p{

max-width:850px;
margin:auto;
font-size:18px;
line-height:1.9;
color:#f5f5f5 !important;

}

