/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#4b2805;
    --secondary:#7b5b34;
    --gold:#a8864a;
    --light:#f5f1eb;
    --dark:#111111;
}

body{
    font-family:'Poppins',sans-serif;
}

/* TOP BAR */

.top-bar{

    background:#0d0d0d;

    color:#cfcfcf;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 7%;

    font-size:14px;
}

.top-left,
.top-right{
    display:flex;
    gap:25px;
}

.top-right a{
    color:#cfcfcf;
    text-decoration:none;
}

/* NAVBAR */

/* ==========================
   NAVBAR
========================== */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
    background:#fff;
    position:relative;
    z-index:1000;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.logo img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.logo h2{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#111;
    line-height:1.1;
    white-space:nowrap;
}

.logo p{
    margin:0;
    font-size:13px;
    font-weight:600;
    color:#ff6600;
    letter-spacing:2px;
}

/* DESKTOP MENU */
.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
    margin:0;
    padding:0;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:600;
}

.book-btn{
    background:#ff6600;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

/* HAMBURGER */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ==========================
   MOBILE
========================== */

@media (max-width:992px){

    .navbar{
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    /* Hide menu by default */
    .nav-links{
        display:none;
        width:100%;
        flex-direction:column;
        background:#fff;
        position:absolute;
        top:100%;
        left:0;
        padding:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.1);
        gap:15px;
    }

    /* Hide Book Button */
    .book-btn{
        display:none;
        width:100%;
        text-align:center;
        margin-top:15px;
    }

    /* Show menu after click */
    .nav-links.active{
        display:flex;
    }

    .nav-links.active + .book-btn{
        display:block;
    }

    .logo h2{
        font-size:16px;
    }

    .logo p{
        font-size:12px;
    }
}

header{

    position:absolute;

    width:100%;

    top:42px;

    z-index:1000;
}

header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#6a6565;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.navbar{
    min-height:60px;
}

.navbar{

    padding:20px 7%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(0,0,0,0.35);

    backdrop-filter:blur(10px);
}

/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo img{

    width:65px;

    height:65px;

    border-radius:50%;
}

.logo h2{

    color:white;

    font-size:28px;

    font-weight:700;
}

.logo P{

    color:var(--gold);

    letter-spacing:5px;

    font-size:25px;
}

/* MENU */

.nav-links{

    display:flex;

    list-style:none;

    gap:25px;
}

.nav-links a{

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.3s;
}

.nav-links a:hover{

    color:var(--gold);
}

.active{

    background:rgba(168,134,74,.2);

    padding:12px 20px;

    border-radius:10px;

    color:var(--gold) !important;
}

/* BUTTON */

.book-btn{

    text-decoration:none;

    background:var(--gold);

    color:black;

    padding:10px 25px;

    border-radius:10px;

    font-weight:600;
}

/* HERO */

.hero{

    height:100vh;

    background:url("../images/africantrust-safari.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

    display:flex;

    align-items:center;
}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:750px;
    margin-left:12%;
}

.hero-badge{

    border:1px solid rgba(168,134,74,.4);

    color:var(--gold);

    padding:12px 25px;

    border-radius:30px;

    display:inline-block;

    margin-bottom:30px;

    backdrop-filter:blur(5px);
}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:75px;

    line-height:0.95;

    color:white;

    margin-bottom:25px;
}

.hero h1 span{

    color:var(--gold);
}

.hero p{

    color:#d7d7d7;

    font-size:22px;

    line-height:1.8;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    gap:20px;
}

.primary-btn{

    background:var(--gold);

    color:black;

    text-decoration:none;

    padding:18px 35px;

    border-radius:10px;

    font-weight:600;
}

.secondary-btn{

    color:white;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.5);

    padding:18px 35px;

    border-radius:10px;
}

/* RESPONSIVE */

@media(max-width:991px){

.nav-links{
    display:none;
}

.hero h1{
    font-size:65px;
}

.hero p{
    font-size:18px;
}
}

@media(max-width:768px){

.top-bar{
    display:none;
}

header{
    top:0;
}

.hero h1{
    font-size:50px;
}

.hero-buttons{
    flex-direction:column;
}
}

.stats{
    background:#021d10;
    padding:10px 5%;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;
    text-align:center;
}

.stat-box h2{
    font-size:2rem;
    color:#a8864a;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box p{
    color:#d6d6d6;
    font-size:1.1rem;
}

@media(max-width:991px){

.stats{
    grid-template-columns:repeat(2,1fr);
}

.stat-box h2{
    font-size:3rem;
}

}

@media(max-width:768px){

.stats{
    grid-template-columns:1fr;
    gap:40px;
}

.stat-box h2{
    font-size:2.8rem;
}

}

.menu-toggle{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:991px){

.menu-toggle{
    display:block;
}

.nav-links{
    position:absolute;
    top:100%;
    left:0;

    width:100%;
    background:#111;

    flex-direction:column;
    text-align:center;

    padding:20px 0;

    display:none;
}

.nav-links.active{
    display:flex;
}

}

/* ===== Featured Tours ===== */

.adventures{
    padding:100px 8%;
    background:#f8f5f1;
}

.section-title{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.section-title span{
    color:#8B6B2F;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:58px;
    margin:18px 0;
    color:#1A1714;
    font-family:'Playfair Display',serif;
    line-height:1.1;
}

.section-title p{
    font-size:20px;
    color:#666;
    line-height:1.8;
}

/* Grid */

.adventure-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
    position:relative;
    height:450px;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.4s;
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.card:hover img{
    transform:scale(1.12);
}

.card:hover{
    transform:translateY(-10px);
}

.card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.35),
        rgba(0,0,0,.05)
    );
}

.content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    z-index:5;
    color:white;
}

.content span{
    color:#C89B3C;
    font-size:17px;
    font-weight:600;
    display:inline-block;
    margin-bottom:10px;
}

.content h3{
    font-size:36px;
    line-height:1.15;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.content p{
    color:rgba(255,255,255,.9);
    line-height:1.7;
    font-size:17px;
}

/* Responsive */

@media(max-width:1200px){

    .adventure-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .adventures{
        padding:80px 5%;
    }

    .section-title h2{
        font-size:40px;
    }

    .section-title p{
        font-size:17px;
    }

    .adventure-grid{
        grid-template-columns:1fr;
    }

    .card{
        height:380px;
    }

    .content h3{
        font-size:30px;
    }

}

/* ===================================
   WHY CHOOSE US
=================================== */

.why-us{

    padding:120px 8%;
    background:#ffffff;
}

.section-header{

    max-width:850px;
    margin:auto;
    text-align:center;
    margin-bottom:80px;
}

.section-header span{

    color:#8B6B2F;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-header h2{

    font-family:'Playfair Display',serif;
    font-size:58px;
    color:#1A1714;
    margin:20px 0;
    line-height:1.1;
}

.section-header p{

    font-size:20px;
    color:#666;
    line-height:1.9;
}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{

    background:#fff;
    padding:40px 35px;
    border-radius:22px;

    border:1px solid #eee;

    transition:.4s ease;

    position:relative;

    overflow:hidden;
}

.why-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#8B6B2F;

    transform:scaleX(0);

    transition:.4s;
}

.why-card:hover::before{

    transform:scaleX(1);
}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.icon{

    width:75px;
    height:75px;

    background:rgba(139,107,47,.1);

    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;
}

.icon i{

    font-size:32px;
    color:#8B6B2F;
}

.why-card h3{

    font-size:28px;
    color:#1A1714;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.why-card p{

    color:#666;
    line-height:1.8;
    font-size:16px;
}

@media(max-width:1100px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-us{
        padding:80px 5%;
    }

    .section-header h2{
        font-size:40px;
    }

    .section-header p{
        font-size:17px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        padding:30px;
    }

}

/* ===================================
   TOP TANZANIA DESTINATIONS
=================================== */

.destinations{
    padding:120px 8%;
    background:#f8f5f1;
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.destination-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.destination-card:hover{
    transform:translateY(-10px);
}

.destination-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.destination-content{
    padding:30px;
}

.destination-content span{
    color:#8B6B2F;
    font-weight:600;
}

.destination-content h3{
    margin:15px 0;
    font-size:32px;
    font-family:'Playfair Display',serif;
}

.destination-content p{
    line-height:1.8;
    color:#666;
}

.destination-buttons{
    margin-top:25px;
}

.view-btn{
    display:inline-block;
    padding:14px 26px;
    background:#4B2805;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.view-btn:hover{
    background:#8B6B2F;
}

.contact-strip{
    margin-top:60px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.contact-strip a{
    text-decoration:none;
    background:#fff;
    padding:15px 25px;
    border-radius:50px;
    color:#1A1714;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.testimonials{
    padding:120px 8%;
    background:#ffffff;
}

.review-summary{

    max-width:700px;
    margin:0 auto 80px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;

    padding:40px;

    background:#f8f5f1;

    border-radius:25px;
}

.rating-number{

    font-size:90px;
    font-weight:700;

    color:#8B6B2F;

    line-height:1;
}

.rating-content h3{

    font-size:28px;
    margin:10px 0;
}

.stars{

    color:#D4A017;
    font-size:22px;
}

.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    border:1px solid #eee;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.review-top{

    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:20px;
}

.review-top img{

    width:65px;
    height:65px;

    border-radius:50%;

    object-fit:cover;
}

.review-top h4{

    font-size:20px;
}

.review-top span{

    color:#777;
}

.testimonial-card p{

    line-height:1.9;
    color:#555;

    margin:15px 0;
}

.verified{

    color:#2e8b57;
    font-weight:600;
}

.testimonial-cta{

    text-align:center;

    margin-top:80px;
}

.testimonial-cta h3{

    font-size:38px;
    margin-bottom:25px;

    font-family:'Playfair Display',serif;
}

.cta-btn{

    display:inline-block;

    background:#4B2805;

    color:white;

    text-decoration:none;

    padding:18px 35px;

    border-radius:12px;

    transition:.3s;
}

.cta-btn:hover{

    background:#8B6B2F;
}

@media(max-width:1100px){

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .review-summary{
        flex-direction:column;
        text-align:center;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-cta h3{
        font-size:30px;
    }

}

/* ==========================
   TRAVEL GUIDES / BLOG
========================== */

.travel-guides{
    padding:120px 8%;
    background:#f8f5f1;
}

.featured-article{

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:40px;

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    margin-bottom:70px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.featured-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.featured-content{

    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.category{

    display:inline-block;

    color:#8B6B2F;

    font-weight:600;

    margin-bottom:20px;
}

.featured-content h3{

    font-size:42px;

    line-height:1.3;

    margin-bottom:25px;

    font-family:'Playfair Display',serif;
}

.featured-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;
}

.read-btn{

    display:inline-block;

    width:max-content;

    text-decoration:none;

    background:#4B2805;

    color:white;

    padding:15px 30px;

    border-radius:12px;
}

/* BLOG GRID */

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.blog-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.blog-card:hover{

    transform:translateY(-10px);
}

.blog-card img{

    width:100%;

    height:240px;

    object-fit:cover;
}

.blog-content{

    padding:25px;
}

.blog-content span{

    color:#8B6B2F;

    font-size:14px;

    font-weight:600;
}

.blog-content h3{

    margin:15px 0;

    font-size:24px;

    line-height:1.5;

    color:#1A1714;

    font-family:'Playfair Display',serif;
}

.blog-content a{

    color:#4B2805;

    text-decoration:none;

    font-weight:600;
}

/* ===========================
   FAQ SECTION
=========================== */

.faq-section{

    padding:120px 8%;
    background:#fff;
}

.faq-container{

    max-width:1000px;
    margin:auto;
}

.faq-item{

    margin-bottom:20px;

    border:1px solid #e8e8e8;

    border-radius:18px;

    overflow:hidden;

    background:white;

    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.faq-question{

    width:100%;

    border:none;

    background:white;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 30px;

    font-size:20px;

    font-weight:600;

    color:#1A1714;
}

.faq-question i{

    color:#8B6B2F;

    transition:.3s;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 30px;
}

.faq-answer p{

    padding-top:10px;

    color:#666;

    line-height:1.8;
}

.faq-answer a{

    display:inline-block;

    margin:20px 0;

    color:#8B6B2F;

    font-weight:600;

    text-decoration:none;
}

.faq-item.active .faq-answer{

    max-height:300px;
}

.faq-item.active .faq-question i{

    transform:rotate(45deg);
}

/* ==========================
   CTA SECTION
========================== */

.cta-section{

    padding:120px 8%;

    background:linear-gradient(
        135deg,
        #4B2805,
        #8B6B2F
    );
}

.cta-container{

    display:grid;

    grid-template-columns:1fr 500px;

    gap:60px;

    align-items:center;
}

.cta-content span{

    color:#FFD27A;

    letter-spacing:2px;

    font-weight:600;

    text-transform:uppercase;
}

.cta-content h2{

    font-size:60px;

    color:#fff;

    margin:20px 0;

    line-height:1.2;

    font-family:'Playfair Display', serif;
}

.cta-content p{

    color:rgba(255,255,255,.9);

    line-height:1.9;

    font-size:18px;

    margin-bottom:40px;
}

.contact-boxes{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.contact-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:15px;

    text-decoration:none;

    color:white;

    transition:.3s;
}

.contact-card:hover{

    background:rgba(255,255,255,.15);

    transform:translateX(8px);
}

.contact-card i{

    font-size:28px;

    color:#FFD27A;
}

.contact-card h4{

    margin-bottom:5px;
}

/* FORM */

.quote-form{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.quote-form h3{

    margin-bottom:25px;

    font-size:32px;

    color:#1A1714;

    text-align:center;

    font-family:'Playfair Display', serif;
}

.form-group{

    margin-bottom:18px;
}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:15px;

    outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#8B6B2F;
}

.quote-form button{

    width:100%;

    border:none;

    padding:18px;

    border-radius:12px;

    background:#4B2805;

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.quote-form button:hover{

    background:#8B6B2F;
} 

@media(max-width:1100px){

    .cta-container{

        grid-template-columns:1fr;
    }

    .quote-form{

        max-width:700px;

        margin:auto;

        width:100%;
    }

}

@media(max-width:768px){

    .cta-section{

        padding:80px 5%;
    }

    .cta-content h2{

        font-size:40px;
    }

    .contact-card{

        padding:18px;
    }

    .quote-form{

        padding:30px;
    }

}

/* ===========================
   FOOTER
=========================== */

.footer{

    background:#1A1714;

    color:#fff;

    padding-top:100px;
}

.footer-container{

    width:90%;
    margin:auto;

    display:grid;

    grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr
    1fr
    1.2fr;

    gap:40px;
}

.footer-logo{

    width:180px;

    margin-bottom:20px;
}

.footer-column p{

    color:#bbb;

    line-height:1.9;
}

.footer-column h3{

    margin-bottom:25px;

    font-size:22px;

    color:#C89B3C;

    font-family:'Playfair Display', serif;
}

.footer-column ul{

    list-style:none;
}

.footer-column ul li{

    margin-bottom:14px;
}

.footer-column ul li a{

    text-decoration:none;

    color:#bbb;

    transition:.3s;
}

.footer-column ul li a:hover{

    color:#C89B3C;

    padding-left:5px;
}

.footer-social{

    margin-top:25px;

    display:flex;

    gap:15px;
}

.footer-social a{

    width:42px;
    height:42px;

    border-radius:50%;

    background:#2b2824;

    display:flex;

    justify-content:center;
    align-items:center;

    color:white;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:#C89B3C;

    transform:translateY(-5px);
}

.contact-list li{

    color:#bbb;

    display:flex;

    gap:10px;

    margin-bottom:18px;
}

.contact-list i{

    color:#C89B3C;
}

.trust-bar{

    margin-top:80px;

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);

    padding:25px 5%;

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;
}

.trust-item{

    color:#C89B3C;

    font-weight:600;
}

.footer-bottom{

    padding:30px 5%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;
}

.footer-bottom p{

    color:#999;
}

.footer-bottom-links{

    display:flex;

    gap:25px;
}

.footer-bottom-links a{

    color:#999;

    text-decoration:none;
}

.footer-bottom-links a:hover{

    color:#C89B3C;
}

@media(max-width:1200px){

    .footer-container{

        grid-template-columns:
        repeat(3,1fr);
    }

}

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;
    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;
    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;
    }

}

.footer-seo{
    max-width:1200px;
    margin:40px auto 0;
    padding:0 5%;
    text-align:center;
}

.footer-seo p{
    color:#888;
    font-size:14px;
    line-height:1.8;
}

/* TERMS & CONDITIONS PAGE */

.policy-hero{
    background: linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../images/legal-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 8%;
    text-align: center;
    color: #fff;
}

.policy-hero span{
    color:#C89B3C;
    font-weight:600;
    letter-spacing:2px;
}

.policy-hero h1{
    font-size:65px;
    margin:20px 0;
    font-family:'Playfair Display',serif;
}

.policy-content{
    max-width:1200px;
    margin:auto;
    padding:100px 8%;
}

.last-updated{
    background:#f8f5f1;
    padding:20px;
    border-left:5px solid #8B6B2F;
    margin-bottom:50px;
}

.policy-section{
    margin-bottom:50px;
}

.policy-section h2{
    color:#1A1714;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.related-pages{
    padding:80px 8%;
    text-align:center;
    background:#f8f5f1;
}

.related-pages h2{
    margin-bottom:30px;
}

.related-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.related-links a{
    padding:15px 25px;
    background:#fff;
    border-radius:10px;
    text-decoration:none;
    color:#1A1714;
    transition:.3s;
}

.related-links a:hover{
    background:#8B6B2F;
    color:#fff;
}

/* SEO LANDING PAGES AND TOUR PACKAGES */

.page-hero{
    min-height:82vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:210px 8% 110px;
    color:#fff;
    position:relative;
}

.page-hero-content{
    max-width:850px;
    position:relative;
    z-index:5;
}

.page-hero-content span{
    color:#C89B3C;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.page-hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    line-height:1;
    margin:22px 0;
}

.page-hero-content p{
    color:#eadfce;
    font-size:20px;
    line-height:1.9;
    max-width:760px;
    margin-bottom:34px;
}

.index-hero{
    background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url('../images/africantrust-safari.jpg');

    background-position: center center ;
    background-size:cover;
    background-repeat: no-repeat;
}
.safari-hero{
    background:linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url('../images/hero-safari.jpg');

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.day-trips-hero{
    background:linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.58)),
    url('../images/tanzania-day-trips.jpg');
}

.zanzibar-hero{
    background:linear-gradient(rgba(0,0,0,.54),rgba(0,0,0,.54)),
    url('../images/stone-town-and-spice-tour.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-hero{
    background:linear-gradient(rgba(0,0,0,.62),rgba(0,0,0,.62)),
    url('../images/africantrust-safari.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.guides-hero{
    background:linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.58)),
    url('../images/tanzania-guide.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-hero{
    background:linear-gradient(rgba(0,0,0,.62),rgba(0,0,0,.62)),
    url('../images/contact-africantrust-safari.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.seo-text-section{
    padding:90px 8%;
    background:#fff;
}

.seo-text-inner{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:55px;
    align-items:start;
}

.seo-text-inner h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    line-height:1.18;
    color:#1A1714;
    margin-bottom:22px;
}

.seo-text-inner p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.keyword-box{
    background:#f8f5f1;
    border-left:5px solid #8B6B2F;
    padding:28px;
    border-radius:8px;
}

.keyword-box h3{
    font-family:'Playfair Display',serif;
    font-size:28px;
    margin-bottom:16px;
}

.keyword-box ul{
    list-style:none;
    display:grid;
    gap:12px;
}

.keyword-box li{
    color:#555;
    line-height:1.6;
}

.keyword-box i{
    color:#2e8b57;
    margin-right:8px;
}

.packages-section{
    padding:120px 8%;
    background:#f8f5f1;
}

.packages-section.white{
    background:#fff;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.package-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    border:1px solid #ebe3d8;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.package-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.11);
}

.package-card img{
    width:100%;
    height:245px;
    object-fit:cover;
}

.package-body{
    padding:28px;
}

.package-body span{
    color:#8B6B2F;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.package-body h3{
    font-family:'Playfair Display',serif;
    font-size:29px;
    color:#1A1714;
    margin:12px 0 14px;
    line-height:1.2;
}

.image-description{
    color:#244b36;
    background:#eef5ef;
    padding:12px 14px;
    border-radius:8px;
    line-height:1.6;
    font-size:14px;
    margin-bottom:16px;
}

.package-body p{
    color:#666;
    line-height:1.8;
    margin-bottom:18px;
}

.package-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.package-meta small{
    padding:8px 12px;
    border-radius:50px;
    background:#f3eadf;
    color:#4B2805;
    font-weight:600;
}

.difficulty-easy{
    background:#e8f5eb !important;
    color:#246b39 !important;
}

.difficulty-moderate{
    background:#fff3d9 !important;
    color:#805900 !important;
}

.difficulty-hard{
    background:#fbe3dc !important;
    color:#8a2e17 !important;
}

.contact-mini{
    margin-top:26px;
    padding:18px;
    background:#1A1714;
    color:#fff;
    border-radius:8px;
    display:grid;
    gap:8px;
}

.contact-mini a{
    color:#C89B3C;
    text-decoration:none;
    font-weight:600;
}

.seo-contact-strip{
    padding:45px 8%;
    background:#10291d;
    color:#fff;
}

.seo-contact-inner{
    max-width:1180px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:24px;
    align-items:center;
    flex-wrap:wrap;
}

.seo-contact-inner h2{
    font-family:'Playfair Display',serif;
    font-size:34px;
}

.seo-contact-links{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.seo-contact-links a{
    color:#1A1714;
    background:#C89B3C;
    text-decoration:none;
    padding:14px 22px;
    border-radius:8px;
    font-weight:600;
}

/* DETAILED KILIMANJARO ROUTE PAGES */

.route-facts-strip{
    padding:34px 8%;
    background:#10291d;
}

.route-facts-grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.route-fact{
    border:1px solid rgba(255,255,255,.14);
    border-radius:8px;
    padding:22px;
    color:#fff;
    background:rgba(255,255,255,.04);
}

.route-fact i{
    color:#C89B3C;
    font-size:26px;
    margin-bottom:14px;
}

.route-fact span{
    display:block;
    color:#dbc9ad;
    font-size:12px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.route-fact strong{
    font-size:18px;
    line-height:1.45;
}

.route-detail-section{
    padding:100px 8%;
    background:#fff;
}

.route-detail-inner{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:52px;
    align-items:start;
}

.route-detail-copy h2,
.route-aside h3,
.route-itinerary h2,
.route-links h2{
    font-family:'Playfair Display',serif;
    color:#1A1714;
    line-height:1.18;
}

.route-detail-copy h2,
.route-itinerary h2,
.route-links h2{
    font-size:46px;
    margin-bottom:22px;
}

.route-detail-copy p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.route-aside{
    background:#f8f5f1;
    border-left:5px solid #8B6B2F;
    border-radius:8px;
    padding:30px;
}

.route-aside h3{
    font-size:30px;
    margin-bottom:18px;
}

.route-aside ul{
    list-style:none;
    display:grid;
    gap:14px;
}

.route-aside li{
    display:flex;
    gap:10px;
    color:#555;
    line-height:1.65;
}

.route-aside i{
    color:#2e8b57;
    margin-top:4px;
}

.route-itinerary{
    padding:110px 8%;
    background:#f8f5f1;
}

.route-itinerary-header{
    max-width:900px;
    margin:0 auto 48px;
    text-align:center;
}

.route-itinerary-header span,
.route-links span{
    color:#8B6B2F;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.route-itinerary-header p{
    color:#666;
    line-height:1.8;
}

.itinerary-grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.itinerary-day{
    position:relative;
    background:#fff;
    border:1px solid #ebe3d8;
    border-radius:8px;
    padding:26px 26px 26px 86px;
    box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.itinerary-day strong{
    position:absolute;
    left:24px;
    top:26px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#10291d;
    color:#C89B3C;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
}

.itinerary-day h3{
    font-family:'Playfair Display',serif;
    font-size:25px;
    color:#1A1714;
    line-height:1.25;
    margin-bottom:12px;
}

.itinerary-day p{
    color:#666;
    line-height:1.8;
}

.itinerary-meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:16px;
}

.itinerary-meta small{
    padding:7px 11px;
    border-radius:50px;
    background:#eef5ef;
    color:#244b36;
    font-weight:600;
}

.route-links{
    padding:100px 8%;
    background:#fff;
}

.route-links-header{
    max-width:900px;
    margin:0 auto 42px;
    text-align:center;
}

.route-links-header p{
    color:#666;
    line-height:1.8;
}

@media(max-width:1100px){
    .route-facts-grid,
    .route-detail-inner,
    .itinerary-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .route-facts-strip,
    .route-detail-section,
    .route-itinerary,
    .route-links{
        padding-left:5%;
        padding-right:5%;
    }

    .route-facts-grid,
    .route-detail-inner,
    .itinerary-grid{
        grid-template-columns:1fr;
    }

    .route-detail-copy h2,
    .route-itinerary h2,
    .route-links h2{
        font-size:36px;
    }

    .itinerary-day{
        padding:24px;
    }

    .itinerary-day strong{
        position:static;
        margin-bottom:16px;
    }
}

.guide-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.guide-card{
    background:#fff;
    border:1px solid #ece4d9;
    border-radius:8px;
    overflow:hidden;
    transition:.3s;
}

.guide-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.1);
}

.guide-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.guide-card div{
    padding:26px;
}

.guide-card span{
    color:#8B6B2F;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.guide-card h3{
    font-family:'Playfair Display',serif;
    font-size:27px;
    margin:12px 0;
}

.guide-card p{
    color:#666;
    line-height:1.8;
}

.contact-page-grid{
    padding:110px 8%;
    background:#fff;
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:50px;
    align-items:start;
}

.contact-panel{
    background:#f8f5f1;
    border-radius:8px;
    padding:35px;
}

.contact-panel h2{
    font-family:'Playfair Display',serif;
    font-size:40px;
    margin-bottom:20px;
}

.contact-panel p,
.contact-panel li{
    color:#666;
    line-height:1.8;
}

.contact-panel ul{
    list-style:none;
    display:grid;
    gap:14px;
    margin-top:24px;
}

.contact-panel a{
    color:#4B2805;
    font-weight:600;
    text-decoration:none;
}

@media(max-width:1100px){
    .package-grid,
    .guide-list{
        grid-template-columns:repeat(2,1fr);
    }

    .seo-text-inner,
    .contact-page-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .page-hero{
        min-height:auto;
        padding:150px 5% 85px;
    }

    .page-hero-content h1{
        font-size:46px;
    }

    .page-hero-content p{
        font-size:17px;
    }

    .seo-text-section,
    .packages-section,
    .contact-page-grid{
        padding:80px 5%;
    }

    .package-grid,
    .guide-list{
        grid-template-columns:1fr;
    }

    .seo-text-inner h2{
        font-size:36px;
    }

    .seo-contact-inner{
        align-items:flex-start;
    }
}

/* KILIMANJARO PAGE */

.kilimanjaro-hero{
    min-height:88vh;
    background:linear-gradient(rgba(0,0,0,.62),rgba(0,0,0,.62)),
    url('../images/mount-kilimanjaro.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    padding:220px 8% 120px;
    color:#fff;
}

.kilimanjaro-hero-content{
    position:relative;
    z-index:5;
    max-width:820px;
}

.kilimanjaro-hero-content span{
    color:#C89B3C;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.kilimanjaro-hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:76px;
    line-height:1;
    margin:24px 0;
}

.kilimanjaro-hero-content h1 strong{
    color:#C89B3C;
    font-weight:700;
}

.kilimanjaro-hero-content p{
    max-width:720px;
    color:#e7e0d6;
    font-size:20px;
    line-height:1.9;
    margin-bottom:36px;
}

.kilimanjaro-stats{
    background:#10291d;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
}

.kili-stat{
    padding:34px 24px;
    text-align:center;
    background:rgba(255,255,255,.04);
}

.kili-stat h2{
    color:#C89B3C;
    font-size:34px;
    margin-bottom:8px;
}

.kili-stat p{
    color:#d9d0c2;
}

.kilimanjaro-intro{
    padding:120px 8%;
    background:#fff;
}

.kili-split{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.kili-copy span,
.route-card span,
.include-item span{
    color:#8B6B2F;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

.kili-copy h2{
    font-family:'Playfair Display',serif;
    font-size:52px;
    line-height:1.15;
    color:#1A1714;
    margin:18px 0 24px;
}

.kili-copy p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:18px;
}

.kili-list{
    list-style:none;
    margin-top:28px;
    display:grid;
    gap:14px;
}

.kili-list li{
    display:flex;
    gap:12px;
    color:#1A1714;
    line-height:1.7;
}

.kili-list i{
    color:#2e8b57;
    margin-top:5px;
}

.kili-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:8px;
    box-shadow:0 20px 50px rgba(0,0,0,.14);
}

.kilimanjaro-routes{
    padding:120px 8%;
    background:#f8f5f1;
}

.route-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.route-card{
    background:#fff;
    border:1px solid #ece4d9;
    border-radius:8px;
    padding:32px;
    transition:.3s;
}

.route-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.1);
}

.route-card h3{
    font-family:'Playfair Display',serif;
    font-size:30px;
    color:#1A1714;
    margin:12px 0 16px;
}

.route-card p{
    color:#666;
    line-height:1.8;
}

.route-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:22px 0;
}

.route-meta small{
    background:#eef5ef;
    color:#244b36;
    padding:8px 12px;
    border-radius:50px;
    font-weight:600;
}

.kilimanjaro-included{
    padding:120px 8%;
    background:#fff;
}

.include-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.include-item{
    border:1px solid #eee;
    border-radius:8px;
    padding:28px;
    background:#fff;
}

.include-item i{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    background:rgba(46,139,87,.1);
    color:#2e8b57;
    font-size:26px;
    margin-bottom:22px;
}

.include-item h3{
    font-family:'Playfair Display',serif;
    font-size:25px;
    margin:12px 0;
}

.include-item p{
    color:#666;
    line-height:1.8;
}

.kili-banner{
    padding:100px 8%;
    background:linear-gradient(rgba(16,41,29,.86),rgba(16,41,29,.86)),
    url('../images/tanzania-kilimanjaro.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
}

.kili-banner-inner{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.kili-banner h2{
    font-family:'Playfair Display',serif;
    font-size:52px;
    margin-bottom:22px;
}

.kili-banner p{
    color:#eadfce;
    line-height:1.9;
    font-size:18px;
}

@media(max-width:1100px){
    .kili-split,
    .route-grid{
        grid-template-columns:1fr 1fr;
    }

    .include-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .kilimanjaro-hero{
        min-height:auto;
        padding:150px 5% 90px;
    }

    .kilimanjaro-hero-content h1{
        font-size:48px;
    }

    .kilimanjaro-hero-content p{
        font-size:17px;
    }

    .kilimanjaro-stats,
    .kili-split,
    .route-grid,
    .include-grid{
        grid-template-columns:1fr;
    }

    .kilimanjaro-intro,
    .kilimanjaro-routes,
    .kilimanjaro-included{
        padding:80px 5%;
    }

    .kili-copy h2,
    .kili-banner h2{
        font-size:38px;
    }

    .kili-image img{
        height:420px;
    }
}

/* ===================================
   GLOBAL RESPONSIVE FIXES
=================================== */

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
    padding:0 15px;
}

.section-header h2{
    line-height:1.3;
}

/* ===================================
   DESTINATIONS
=================================== */

.destination-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.destination-card{
    width:100%;
    overflow:hidden;
    border-radius:15px;
}

.destination-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.destination-content{
    padding:20px;
}

/* ===================================
   TESTIMONIALS
=================================== */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    height:100%;
}

/* ===================================
   BLOGS
=================================== */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    width:100%;
}

.blog-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* ===================================
   FEATURED ARTICLE
=================================== */

.featured-article{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.featured-image img{
    width:100%;
    border-radius:15px;
}

/* ===================================
   TABLET
=================================== */

@media (max-width:991px){

    .destination-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .featured-article{
        grid-template-columns:1fr;
        gap:25px;
    }

    .section-header h2{
        font-size:32px;
    }

}

/* ===================================
   MOBILE
=================================== */

@media (max-width:768px){

    section{
        padding-left:15px;
        padding-right:15px;
    }

    .destination-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .blog-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .featured-article{
        grid-template-columns:1fr;
    }

    .destination-card img{
        height:220px;
    }

    .blog-card img{
        height:220px;
    }

    .section-header span{
        font-size:12px;
    }

    .section-header h2{
        font-size:28px;
        line-height:1.3;
    }

    .section-header p{
        font-size:15px;
        line-height:1.7;
    }

    .destination-content,
    .blog-content{
        padding:18px;
    }

    .review-summary{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .review-top{
        flex-direction:column;
        text-align:center;
    }

}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width:480px){

    .section-header h2{
        font-size:24px;
    }

    .destination-card img{
        height:200px;
    }

    .blog-card img{
        height:200px;
    }

    .destination-content h3,
    .blog-content h3{
        font-size:20px;
        line-height:1.4;
    }

}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:9999;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

/* ===================================
   PERFORMANCE AND ACCESSIBILITY
=================================== */

html{
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

a,
button{
    touch-action:manipulation;
}

@supports (content-visibility:auto){
    section,
    .package-card,
    .destination-card,
    .blog-card,
    .guide-card,
    .testimonial-card,
    .footer{
        content-visibility:auto;
        contain-intrinsic-size:1px 720px;
    }
}

@media (prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
    }
}

