*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f3f3f3;
    color:#333;
}

a{
    text-decoration:none;
}

.header{
    width:100%;
    height:78px;
    background:#e87500;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 60px;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    box-shadow:0 3px 12px rgba(0,0,0,.22);
}

.logo{
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.logo-icon{
    font-size:32px;
}

.logo-text h2{
    font-size:22px;
    line-height:22px;
    font-family:Georgia, serif;
    letter-spacing:.5px;
    white-space:nowrap;
}

.logo-text span{
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    white-space:nowrap;
}

.nav{
    display:flex;
    align-items:center;
    gap:26px;
    flex-wrap:nowrap;
}

.nav a{
    color:#fff;
    font-size:15px;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
}

.nav a:hover{
    color:#ffe4bd;
}

.header-right{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}

.list-link{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
}

.heart-box{
    width:30px;
    height:30px;
    background:#fff;
    color:#e87500;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.heart-box small{
    position:absolute;
    top:-9px;
    right:-8px;
    background:#000;
    color:#fff;
    width:19px;
    height:19px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
}

.top-search{
    width:310px;
    height:50px;
    background:#c76300;
    display:flex;
    align-items:center;
    padding:0 16px;
    gap:10px;
}

.top-search input{
    flex:1;
    background:transparent;
    border:none;
    outline:none;
    color:#fff;
    font-size:17px;
}

.top-search input::placeholder{
    color:#ffd6ad;
}

.top-search i{
    color:#fff;
    font-size:18px;
}

.hero{
    min-height:720px;
    background:
        linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.12)),
        url("assets/images/hero-safari.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 55px;
}

.hero-content{
    width:100%;
    max-width:1250px;
    margin-top:80px;
}

.hero h1{
    font-family:Georgia, serif;
    color:#fff;
    font-size:42px;
    line-height:1.15;
    text-shadow:0 4px 8px rgba(0,0,0,.55);
    margin-bottom:8px;
}

.hero p{
    color:#fff;
    font-family:Georgia, serif;
    font-size:24px;
    text-shadow:0 4px 8px rgba(0,0,0,.55);
    margin-bottom:22px;
}

.search-box-wrap{
    display:inline-flex;
    background:rgba(0,0,0,.55);
    padding:12px;
    border-radius:9px;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.search-form{
    display:flex;
    align-items:center;
}

.search-item{
    width:250px;
    height:60px;
    background:#fff;
    border-right:1px solid #ddd;
    display:flex;
    align-items:center;
    padding:0 18px;
    gap:14px;
    text-align:left;
}

.search-item i{
    font-size:22px;
    color:#e87500;
}

.search-item span{
    font-size:16px;
    color:#999;
    white-space:nowrap;
}

.search-item strong{
    font-size:14px;
    color:#888;
    display:block;
    margin-bottom:2px;
    font-weight:400;
}

.search-item b{
    font-size:17px;
    color:#222;
    font-weight:500;
    white-space:nowrap;
}

.show-btn{
    height:60px;
    border:none;
    background:#f28a00;
    color:#fff;
    padding:0 28px;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    border-radius:7px;
    margin-left:14px;
    box-shadow:inset 0 -4px 0 rgba(0,0,0,.18);
    text-shadow:0 2px 3px rgba(0,0,0,.4);
    transition:.3s;
    white-space:nowrap;
}

.show-btn:hover{
    background:#d97300;
}

.trust-strip{
    background:#fff;
    padding:28px 60px;
    display:flex;
    justify-content:center;
    gap:45px;
    flex-wrap:wrap;
    border-bottom:1px solid #ddd;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    color:#333;
}

.trust-item i{
    width:36px;
    height:36px;
    border:3px solid #e87500;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e87500;
    font-size:17px;
}

.trust-item strong{
    color:#333;
    border-bottom:1px solid #777;
}

.featured{
    padding:70px 60px 45px;
    background:#f3f3f3;
}

.featured-box{
    border:1px solid #ddd;
    background:#f7f7f7;
    padding:32px 40px;
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.featured-title{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    background:#f3f3f3;
    color:#999;
    padding:0 20px;
    font-size:20px;
}

.media-logo{
    font-family:Georgia, serif;
    font-size:28px;
    color:#aaa;
    font-weight:800;
    text-align:center;
}

.section{
    padding:55px 60px;
    background:#f3f3f3;
}

.section h2{
    font-size:32px;
    margin-bottom:28px;
    color:#333;
}

.country-box{
    display:grid;
    grid-template-columns:330px 1fr;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.12);
}

.country-list{
    background:#fff;
}

.country-list a{
    display:block;
    padding:23px 24px;
    color:#007fae;
    font-size:20px;
    font-weight:700;
    border-bottom:1px solid #ddd;
}

.country-list span{
    color:#333;
    margin-right:12px;
    font-weight:400;
}

.country-feature{
    min-height:315px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.55)),
        url("assets/images/tanzania-country.jpg");
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:45px 60px;
    position:relative;
}

.country-feature h3{
    font-family:Georgia, serif;
    font-size:38px;
    text-decoration:underline;
    margin-bottom:12px;
}

.stars{
    color:#f2b233;
    letter-spacing:2px;
    font-size:24px;
}

.country-feature p{
    max-width:900px;
    font-size:19px;
    line-height:1.45;
    margin-top:28px;
}

.badge{
    position:absolute;
    right:45px;
    top:40px;
    width:105px;
    height:105px;
    background:#fff;
    border:5px solid #d7a333;
    border-radius:50%;
    color:#333;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-weight:800;
}

.tour-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.tour-card{
    background:#fff;
    border-radius:7px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,.17);
    position:relative;
}

.tour-img{
    height:270px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.tour-img::after,
.operator-img::after,
.blog-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:60%;
    background:linear-gradient(transparent, rgba(0,0,0,.82));
}

.heart{
    position:absolute;
    top:15px;
    right:15px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    z-index:3;
    box-shadow:0 3px 10px rgba(0,0,0,.25);
}

.tour-img h3{
    position:absolute;
    left:30px;
    bottom:28px;
    z-index:2;
    color:#fff;
    font-family:Georgia, serif;
    font-size:32px;
    line-height:1.2;
    text-shadow:0 3px 4px #000;
}

.tour-body{
    padding:25px 30px;
    min-height:235px;
}

.price{
    color:#188300;
    font-size:30px;
    font-weight:800;
    margin-bottom:18px;
}

.price small{
    font-size:17px;
    font-weight:400;
}

.tour-body p{
    font-size:18px;
    line-height:1.45;
    margin-bottom:12px;
}

.tour-footer{
    display:grid;
    grid-template-columns:170px 1fr;
    border-top:1px solid #ddd;
    min-height:82px;
}

.company-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    border-right:1px solid #ddd;
    padding:12px;
    font-weight:800;
    color:#147c44;
    text-align:center;
}

.review{
    padding:17px 22px;
    font-size:18px;
}

.btn-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    background:#fff;
    color:#0086b8;
    font-size:22px;
    font-weight:800;
    padding:16px 30px;
    box-shadow:0 3px 10px rgba(0,0,0,.17);
}

.operator-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.operator-card{
    background:#fff;
    border-radius:7px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,.17);
    position:relative;
}

.operator-rank{
    position:absolute;
    top:0;
    left:18px;
    background:#ffc84d;
    color:#000;
    font-size:28px;
    font-weight:800;
    padding:12px 18px 26px;
    z-index:5;
    clip-path:polygon(0 0,100% 0,100% 100%,50% 75%,0 100%);
}

.operator-img{
    height:210px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.operator-img h3{
    position:absolute;
    left:20px;
    bottom:20px;
    color:#fff;
    font-family:Georgia, serif;
    font-size:27px;
    line-height:1.1;
    z-index:3;
    text-shadow:0 3px 4px #000;
}

.operator-footer{
    display:grid;
    grid-template-columns:140px 1fr;
    min-height:80px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.blog-card{
    height:270px;
    border-radius:7px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    position:relative;
    box-shadow:0 3px 12px rgba(0,0,0,.17);
}

.blog-card h3{
    position:absolute;
    left:28px;
    bottom:28px;
    color:#fff;
    z-index:3;
    font-family:Georgia, serif;
    font-size:30px;
    line-height:1.25;
    text-shadow:0 3px 4px #000;
}

.experts{
    background:#e9e9e9;
    padding:45px 60px;
    border-top:1px solid #ccc;
}

.experts h2{
    font-size:24px;
    margin-bottom:35px;
}

.expert-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:35px;
}

.expert{
    display:grid;
    grid-template-columns:80px 1fr;
    gap:18px;
}

.expert-img{
    width:75px;
    height:75px;
    border-radius:50%;
    background-size:cover;
    background-position:center;
}

.expert h3{
    color:#007fae;
    font-size:20px;
    margin-bottom:5px;
}

.expert p{
    font-size:16px;
    line-height:1.45;
}

@media(max-width:1200px){
    .header{
        padding:0 25px;
    }

    .nav{
        gap:18px;
    }

    .top-search{
        width:250px;
    }

    .search-item{
        width:220px;
    }

    .tour-grid,
    .blog-grid{
        grid-template-columns:1fr 1fr;
    }

    .operator-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:992px){
    .header{
        height:auto;
        min-height:72px;
        padding:14px 20px;
        flex-wrap:wrap;
        gap:15px;
    }

    .nav{
        order:3;
        width:100%;
        justify-content:center;
        gap:20px;
    }

    .top-search{
        display:none;
    }

    .hero{
        min-height:680px;
        padding-top:150px;
    }

    .hero-content{
        margin-top:40px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:21px;
    }

    .search-box-wrap{
        width:100%;
        max-width:650px;
        display:block;
        margin:auto;
    }

    .search-form{
        flex-direction:column;
        width:100%;
    }

    .search-item{
        width:100%;
        border-right:none;
        border-bottom:1px solid #ddd;
    }

    .show-btn{
        width:100%;
        margin-left:0;
        margin-top:12px;
    }

    .country-box{
        grid-template-columns:1fr;
    }

    .country-feature{
        padding:35px 25px;
    }

    .badge{
        display:none;
    }

    .tour-grid,
    .operator-grid,
    .blog-grid,
    .expert-grid{
        grid-template-columns:1fr;
    }

    .section,
    .featured,
    .experts{
        padding-left:20px;
        padding-right:20px;
    }
}

@media(max-width:600px){
    .logo-text h2{
        font-size:18px;
    }

    .logo-text span{
        font-size:9px;
    }

    .nav{
        overflow-x:auto;
        justify-content:flex-start;
        padding-bottom:5px;
    }

    .nav a{
        font-size:14px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:18px;
    }

    .trust-strip{
        padding:25px 20px;
        justify-content:flex-start;
    }

    .trust-item{
        font-size:17px;
    }

    .tour-img h3,
    .blog-card h3{
        font-size:25px;
    }

    .operator-img h3{
        font-size:23px;
    }
}
.site-footer{
    background:#222;
    color:#fff;
    padding:60px 0 0;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3{
    margin-bottom:18px;
    color:#f28a00;
}

.footer-col p{
    line-height:1.7;
    color:#ccc;
}

.footer-col a{
    display:block;
    color:#ccc;
    margin-bottom:10px;
    text-decoration:none;
}

.footer-col a:hover{
    color:#f28a00;
}

.copyright{
    margin-top:40px;
    padding:20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    color:#aaa;
}

@media(max-width:900px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
    }
} 
.site-footer{
    background:#222;
    color:#fff;
    padding:60px 0 0;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3{
    margin-bottom:18px;
    color:#f28a00;
}

.footer-col p{
    line-height:1.7;
    color:#ccc;
}

.footer-col a{
    display:block;
    color:#ccc;
    margin-bottom:10px;
    text-decoration:none;
}

.footer-col a:hover{
    color:#f28a00;
}

.copyright{
    margin-top:40px;
    padding:20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    color:#aaa;
}

@media(max-width:900px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
    }
}