/* =====================================================
   ECOQUEST SAFARIS
   PREMIUM RESPONSIVE STYLESHEET
   PART 1
===================================================== */


/* =====================================================
   GOOGLE FONT
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =====================================================
   CSS VARIABLES
===================================================== */

:root{

    --primary:#1d6b52;
    --primary-dark:#144c3a;
    --primary-light:#2d8d6b;

    --accent:#d8b64b;
    --accent-hover:#c7a53e;

    --white:#ffffff;
    --black:#111111;

    --text:#444;
    --heading:#143524;

    --light:#f7faf8;
    --section:#eef5ef;

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

    --shadow-hover:
    0 20px 50px rgba(0,0,0,.15);

    --radius:22px;

    --transition:.35s ease;

}


/* =====================================================
   RESET
===================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.8;

}


/* =====================================================
   GLOBAL
===================================================== */

img{

    width:100%;

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    font-family:inherit;

}

section{

    position:relative;

}

.container{

    width:min(92%,1300px);

    margin:auto;

}

.section{

    padding:100px 0;

}

.section-heading{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.section-tag{

    display:inline-block;

    padding:8px 22px;

    background:#d9f5e7;

    color:var(--primary);

    border-radius:40px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;

}

.section-heading h2{

    color:var(--heading);

    font-size:clamp(2rem,5vw,3rem);

    margin-bottom:20px;

    line-height:1.2;

}

.section-heading p{

    color:#666;

    font-size:1.05rem;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 32px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

}

.btn-primary{

    background:var(--accent);

    color:#222;

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    background:var(--accent-hover);

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid white;

    color:white;

}

.btn-outline:hover{

    background:white;

    color:var(--primary);

}

.btn-secondary{

    background:white;

    color:var(--primary);

}

.btn-secondary:hover{

    transform:translateY(-3px);

}


/* =====================================================
   HEADER
===================================================== */

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(16,55,42,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.nav{

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.brand{

    font-size:1.8rem;

    font-weight:700;

    color:white;

}

.brand span{

    color:var(--accent);

}


/* =====================================================
   NAVIGATION
===================================================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links a,
.dropdown-btn{
    display:flex;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover,
.dropdown-btn:hover{
    color:#fff;
}

.nav-links a::after,
.dropdown-btn::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#d8b64b;
    transition:.3s;
}

.nav-links a:hover::after,
.dropdown-btn:hover::after{
    width:100%;
}


/* =====================================================
   DROPDOWN
===================================================== */

.dropdown{

    position:relative;

}

.dropdown-btn{

    background:none;

    border:none;

    color:white;

    cursor:pointer;

    font-size:15px;

    font-weight:500;

}

.arrow{

    font-size:12px;

    margin-left:5px;

}

/* =====================================================
   MEGA MENU
===================================================== */

.dropdown{

    position:relative;

}

/* Main Button */

.dropdown-btn{

    display:flex;
    align-items:center;
    gap:8px;

    color:#fff;

    cursor:pointer;

    font-weight:600;

    padding:10px 15px;

    transition:.3s;

}

.dropdown-btn:hover{

    color:#FFD54A;

}

/* =====================================================
   MEGA MENU CONTAINER
===================================================== */

.mega-menu{

    position:absolute;

    top:100%;

    left:50%;

    transform:translateX(-50%) translateY(20px);

    width:700px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    display:flex;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.35s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

    z-index:9999;

}

/* Show Menu */

.dropdown:hover .mega-menu{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:translateX(-50%) translateY(0);

}

/* =====================================================
   LEFT COLUMN
===================================================== */

.mega-links{

    width:40%;

    background:#1d6b52;

    display:flex;

    flex-direction:column;

}

.mega-links button{

    background:none;

    border:none;

    color:#fff;

    text-align:left;

    padding:18px 22px;

    font-size:15px;

    cursor:pointer;

    transition:.3s;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.mega-links button:hover{

    background:#15503d;

    padding-left:30px;

}

/* =====================================================
   RIGHT COLUMN
===================================================== */

.mega-info{

    width:60%;

    padding:35px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.mega-info h3{

    color:#1d6b52;

    font-size:28px;

    margin-bottom:15px;

}

.mega-info p{

    color:#555;

    line-height:1.8;

    font-size:15px;

}

/* Optional Image */

.mega-info img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:15px;

    margin-bottom:20px;

}

/* =====================================================
   ANIMATION
===================================================== */

.mega-links button:hover{

    transform:translateX(5px);

}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:992px){

.mega-menu{

    width:600px;

}

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

.mega-menu{

    position:static;

    transform:none;

    width:100%;

    display:block;

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    box-shadow:none;

    border-radius:12px;

    margin-top:10px;

}

.mega-links{

    width:100%;

}

.mega-info{

    width:100%;

    padding:25px;

}

}


/* =====================================================
   HERO
===================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    color:white;

}

.hero-slideshow{

    position:absolute;

    inset:0;

}

.slide{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1.3s ease;

}

.slide.active{

    opacity:1;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

    rgba(0,0,0,.35),

    rgba(0,0,0,.65)

    );

}

.hero-content{

    position:relative;

    z-index:10;

    max-width:760px;

    padding-top:90px;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.18);

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:25px;

    backdrop-filter:blur(8px);

}

.hero h1{

    font-size:clamp(2.7rem,6vw,5rem);

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;

}

.hero p{

    font-size:1.1rem;

    margin-bottom:35px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;

}


/* =====================================================
   HERO STATS
===================================================== */

.hero-stats{

    display:flex;

    gap:50px;

    flex-wrap:wrap;

}

.stat h2{

    font-size:2rem;

    color:var(--accent);

}

.stat p{

    margin-top:8px;

    font-size:.95rem;

}


/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.nav-toggle{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}


/* =====================================================
   RESPONSIVE
===================================================== */

/* Laptop */

@media(max-width:1200px){

.hero-content{

max-width:650px;

}

}


/* Tablet */

@media(max-width:992px){

.nav-links{

position:fixed;

top:85px;

left:-100%;

width:100%;

background:var(--primary);

flex-direction:column;

padding:40px;

gap:25px;

transition:.4s;

}

.nav-links.active{

left:0;

}

.nav-toggle{

display:block;

}

.nav-actions{
    display:flex;
    gap:10px;
}

.hero{

text-align:center;

}

.hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

}


/* Phone */

@media(max-width:768px){

.section{

padding:80px 0;

}

.hero h1{

font-size:2.5rem;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.hero-stats{

gap:25px;

}

}


/* Small Phones */

@media(max-width:480px){

.hero h1{

font-size:2rem;

}

.hero p{

font-size:1rem;

}

.brand{

font-size:1.5rem;

}

}

/* =====================================================
   SECTION BACKGROUNDS
===================================================== */

.packages-section{
    background:#ffffff;
}

.destinations-section{
    background:#f7faf8;
}

.why-section{
    background:linear-gradient(135deg,#1d6b52,#2b8b67);
    color:#fff;
}

.gallery-section{
    background:#ffffff;
}

/* Nice separation */

.packages-section,
.destinations-section,
.why-section,
.gallery-section{

    position:relative;

}

.packages-section::after,
.destinations-section::after,
.why-section::after{

    content:"";

    position:absolute;

    bottom:0;
    left:50%;

    transform:translateX(-50%);

    width:120px;
    height:5px;

    border-radius:50px;

    background:var(--accent);

}

/* =====================================================
   SAFARI PACKAGES
===================================================== */

.safari-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.safari-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.4s;

}

.safari-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.card-image{

    position:relative;

    overflow:hidden;

}

.card-image img{

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.safari-card:hover img{

    transform:scale(1.08);

}

.card-days{

    position:absolute;

    top:20px;
    right:20px;

    background:var(--accent);

    color:#222;

    padding:8px 18px;

    border-radius:30px;

    font-size:.85rem;

    font-weight:600;

}

.card-content{

    padding:28px;

}

.card-content h3{

    color:var(--heading);

    margin-bottom:15px;

    font-size:1.4rem;

}

.card-content p{

    margin-bottom:25px;

}

.card-btn{

    color:var(--primary);

    font-weight:600;

}

.card-btn:hover{

    color:var(--accent);

}

/* =====================================================
   DESTINATIONS
===================================================== */

.destinations-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.destination-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.destination-card:hover{

    transform:translateY(-8px);

}

.destination-card img{

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.destination-card:hover img{

    transform:scale(1.05);

}

.destination-info{

    padding:25px;

}

.destination-info h3{

    color:var(--heading);

    margin-bottom:10px;

}

.destination-info p{

    color:#666;

}

/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-section .section-heading h2,
.why-section .section-heading p{

    color:white;

}

.choose-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.choose-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(8px);

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

}

.choose-card:hover{

    background:rgba(255,255,255,.16);

    transform:translateY(-8px);

}

.choose-icon{

    width:80px;
    height:80px;

    margin:auto auto 25px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:white;

    font-size:2rem;

}

.choose-card h3{

    margin-bottom:15px;

    font-size:1.4rem;

}

.choose-card p{

    color:#f2f2f2;

}

/* =====================================================
   GALLERY
===================================================== */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.gallery-grid img{

    height:260px;

    object-fit:cover;

    border-radius:22px;

    cursor:pointer;

    transition:.45s;

    box-shadow:var(--shadow);

}

.gallery-grid img:hover{

    transform:translateY(-8px) scale(1.03);

    box-shadow:var(--shadow-hover);

}

.gallery-button{

    margin-top:50px;

    text-align:center;

}

/* =====================================================
   RESPONSIVE
===================================================== */

/* Laptop */

@media(max-width:1200px){

.gallery-grid{

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

}

}

/* Tablet */

@media(max-width:992px){

.safari-grid{

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

}

.destinations-grid{

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

}

.gallery-grid{

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

}

.choose-grid{

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

}

}

/* Phone */

@media(max-width:768px){

.safari-grid,
.destinations-grid,
.gallery-grid,
.choose-grid{

grid-template-columns:1fr;

}

.card-image img{

height:220px;

}

.destination-card img{

height:220px;

}

.gallery-grid img{

height:220px;

}

.section-heading{

margin-bottom:50px;

}

}

/* Small Phones */

@media(max-width:480px){

.card-content{

padding:22px;

}

.choose-card{

padding:30px 20px;

}

.section-heading h2{

font-size:2rem;

}

}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section{
    background:#f8f6f1;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:30px;

    box-shadow:var(--shadow);

}

.about-image img{

    height:650px;

    object-fit:cover;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-content h2{

    color:var(--heading);

    font-size:clamp(2rem,5vw,3rem);

    margin:20px 0;

    line-height:1.2;

}

.about-content p{

    margin-bottom:25px;

}

.about-features{

    display:grid;

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

    gap:20px;

    margin-top:40px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    background:white;

    padding:18px;

    border-radius:15px;

    box-shadow:var(--shadow);

}

.feature span{

    color:var(--primary);

    font-size:22px;

    font-weight:bold;

}

/* =====================================================
   BOOKING SECTION
===================================================== */

.booking-section{

    background:linear-gradient(180deg,#edf7ef,#ffffff);

    padding:120px 0;

}

.booking-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    overflow:hidden;

    border-radius:30px;

    background:white;

    box-shadow:var(--shadow-hover);

}

.booking-image{

    position:relative;

}

.booking-image img{

    width:100%;

    height:100%;

    min-height:750px;

    object-fit:cover;

}

.booking-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:50px;

    color:white;

    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.7)
    );

}

.booking-overlay h2{

    font-size:3rem;

    margin:20px 0;

}

.booking-card{

    padding:50px;

}

.booking-card h2{

    color:var(--heading);

    margin-bottom:10px;

}

.booking-card p{

    margin-bottom:30px;

}

.booking-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.booking-grid input,
.booking-grid select,
.booking-grid textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:14px;

    font-size:15px;

    transition:.3s;

}

.booking-grid textarea{

    grid-column:1/-1;

    min-height:120px;

    resize:vertical;

}

.booking-grid input:focus,
.booking-grid select:focus,
.booking-grid textarea:focus{

    border-color:var(--primary);

    outline:none;

}

.booking-grid button{

    grid-column:1/-1;

    padding:18px;

    border:none;

    border-radius:15px;

    background:var(--primary);

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.booking-grid button:hover{

    background:var(--primary-dark);

}

.booking-features{

    display:flex;

    justify-content:space-between;

    margin-top:35px;

    color:var(--primary);

    font-weight:600;

}

/* =====================================================
   REVIEWS
===================================================== */

.reviews-section{

    background:#f8fcfb;

}

.review-summary{

    display:flex;

    justify-content:center;

    margin-bottom:50px;

}

.summary-card{

    width:250px;

    text-align:center;

    background:white;

    padding:30px;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.summary-card h1{

    font-size:4rem;

    color:var(--primary);

}

.summary-stars{

    margin:15px 0;

    font-size:24px;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.review-card{

    background:white;

    border-radius:20px;

    padding:25px;

    box-shadow:var(--shadow);

}

.review-form-card{

    margin:70px auto 0;

    max-width:750px;

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.form-row{

    display:grid;

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

    gap:20px;

}

.input-group{

    display:flex;

    flex-direction:column;

    margin-bottom:20px;

}

.input-group label{

    margin-bottom:8px;

    font-weight:600;

    color:var(--heading);

}

.input-group input,
.input-group textarea{

    padding:15px;

    border-radius:14px;

    border:1px solid #ddd;

}

.input-group textarea{

    min-height:140px;

}

.rating-select{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.rating-select input{

    display:none;

}

.submit-review-btn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:15px;

    background:var(--primary);

    color:white;

    font-size:16px;

    cursor:pointer;

}

/* =====================================================
   CONTACT
===================================================== */

.contact-section{

    background:white;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-details{

    margin-top:40px;

}

.contact-item{

    display:flex;

    gap:20px;

    margin-bottom:25px;

}

.contact-icon{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--primary);

    color:white;

    border-radius:50%;

    font-size:24px;

}

.contact-card{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.contact-card input,
.contact-card textarea{

    width:100%;

    padding:15px;

    margin-bottom:18px;

    border-radius:15px;

    border:1px solid #ddd;

}

.contact-card textarea{

    min-height:180px;

    resize:vertical;

}

/* =====================================================
   FOOTER
===================================================== */

.site-footer{

    background:#10372a;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-column h3,
.footer-column h4{

    margin-bottom:25px;

}

.footer-column span{

    color:var(--accent);

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a:hover{

    color:var(--accent);

}

.payment-icons{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.payment-icons img{

    width:70px;

    border-radius:10px;

    background:white;

    padding:6px;

}

.footer-bottom{

    margin-top:60px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:30px;

}

/* =====================================================
   WHATSAPP BUTTON
===================================================== */

.wa-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    z-index:999;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    transition:.3s;

}

.wa-float:hover{

    transform:scale(1.1);

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px){

.about-grid,
.booking-wrapper,
.contact-wrapper{

    grid-template-columns:1fr;

}

.booking-image img{

    min-height:420px;

}

.footer-grid{

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

}

}

@media(max-width:768px){

.booking-grid,
.form-row{

    grid-template-columns:1fr;

}

.about-features{

    grid-template-columns:1fr;

}

.booking-card{

    padding:30px;

}

.booking-features{

    flex-direction:column;

    gap:15px;

    text-align:center;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.payment-icons{

    justify-content:center;

}

}

@media(max-width:480px){

.booking-overlay{

    padding:30px;

}

.booking-overlay h2{

    font-size:2rem;

}

.contact-card{

    padding:25px;

}

.review-form-card{

    padding:25px;

}

.wa-float{

    width:60px;

    height:60px;

    font-size:30px;

}

}

/* =====================================================
   FINAL POLISH & ANIMATIONS
===================================================== */

/* Smooth transitions */

*{
    transition:
        background-color .35s ease,
        color .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

/* Prevent horizontal scrolling */

html,
body{
    overflow-x:hidden;
}

/* Better section spacing */

section{

    position:relative;

}

section + section{

    margin-top:40px;

}

/* Decorative divider */

.section-divider{

    width:120px;

    height:5px;

    margin:25px auto 0;

    border-radius:50px;

    background:var(--accent);

}

/* =====================================================
   CARD EFFECTS
===================================================== */

.safari-card,
.destination-card,
.choose-card,
.review-card,
.summary-card,
.contact-card,
.booking-wrapper{

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.safari-card:hover,
.destination-card:hover,
.review-card:hover,
.summary-card:hover,
.contact-card:hover{

    transform:translateY(-8px);

}

/* =====================================================
   IMAGE HOVER EFFECTS
===================================================== */

.gallery-grid img,
.destination-card img,
.safari-card img,
.booking-image img,
.about-image img{

    transition:
        transform .5s ease,
        filter .5s ease;

}

.gallery-grid img:hover{

    transform:scale(1.04);

    filter:brightness(.95);

}

/* =====================================================
   SCROLL ANIMATION
===================================================== */

.fade-in{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-in.show{

    opacity:1;

    transform:translateY(0);

}

.fade-in-up{

    opacity:0;

    transform:translateY(60px);

    transition:1s;

}

.fade-in-up.show{

    opacity:1;

    transform:translateY(0);

}

/* =====================================================
   BUTTON EFFECTS
===================================================== */

.btn,
button{

    transition:.3s;

}

.btn:hover,
button:hover{

    transform:translateY(-3px);

}

.btn:active,
button:active{

    transform:scale(.98);

}

/* =====================================================
   FORM EFFECTS
===================================================== */

input,
textarea,
select{

    transition:
        border-color .3s,
        box-shadow .3s;

}

input:focus,
textarea:focus,
select:focus{

    box-shadow:
    0 0 0 4px rgba(29,107,82,.12);

}

/* =====================================================
   LOADING EFFECT
===================================================== */

img{

    animation:fadeImage .8s ease;

}

@keyframes fadeImage{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/* =====================================================
   HERO PARALLAX SUPPORT
===================================================== */

.parallax{

    background-attachment:fixed;

}

@media(max-width:992px){

.parallax{

background-attachment:scroll;

}

}

/* =====================================================
   DARK MODE
===================================================== */

body.dark{

    background:#111;

    color:#ddd;

}

body.dark .section{

    background:#181818;

}

body.dark .site-header{

    background:#111;

}

body.dark .booking-card,
body.dark .contact-card,
body.dark .summary-card,
body.dark .review-card,
body.dark .review-form-card,
body.dark .safari-card,
body.dark .destination-card{

    background:#222;

    color:#eee;

}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4{

    color:white;

}

body.dark p{

    color:#cfcfcf;

}

body.dark input,
body.dark textarea,
body.dark select{

    background:#2d2d2d;

    color:white;

    border:1px solid #444;

}

body.dark .dropdown-menu{

    background:#222;

}

body.dark .dropdown-menu button{

    color:white;

}

body.dark .footer-column a{

    color:#ddd;

}

/* =====================================================
   CUSTOM SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/* =====================================================
   RESPONSIVE IMPROVEMENTS
===================================================== */

@media(max-width:1200px){

.container{

    width:94%;

}

}

@media(max-width:992px){

.hero{

    text-align:center;

}

.hero-content{

    margin:auto;

}

.destination-popup{

    display:none !important;

}

}

@media(max-width:768px){

.site-header{

    padding:0;

}

.nav{

    height:75px;

}

.hero{

    min-height:90vh;

}

.hero-content{

    padding-top:70px;

}

.hero h1{

    line-height:1.2;

}

.section{

    padding:70px 0;

}

.gallery-grid{

    gap:18px;

}

.booking-wrapper{

    border-radius:20px;

}

}

@media(max-width:576px){

.container{

    width:92%;

}

.brand{

    font-size:1.4rem;

}

.hero h1{

    font-size:2rem;

}

.hero p{

    font-size:.95rem;

}

.btn{

    width:100%;

}

.booking-card{

    padding:25px;

}

.contact-card{

    padding:20px;

}

.review-form-card{

    padding:20px;

}

.summary-card{

    width:100%;

}

}

/* =====================================================
   LARGE DESKTOPS
===================================================== */

@media(min-width:1600px){

.container{

    max-width:1450px;

}

.hero h1{

    font-size:5.5rem;

}

.section{

    padding:120px 0;

}

}

/* =====================================================
   NAVBAR ACTIONS (BOOK BUTTON + DARK MODE)
===================================================== */

.nav-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

/* Book Button */

.nav-actions .btn,
.book-btn{
    padding:12px 24px;
    font-size:16px;
    font-weight:600;
    border-radius:40px;
    white-space:nowrap;
    min-width:170px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Dark Mode Toggle */

.dark-toggle{
    width:48px;
    height:48px;
    border-radius:50%;
    border:none;
    cursor:pointer;
    background:#fff;
    color:#1d6b52;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;
}

.dark-toggle:hover{
    transform:translateY(-2px);
    background:#FFD54A;
    color:#000;
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{

    outline:3px solid rgba(216,182,75,.5);

    outline-offset:3px;

}

/* =====================================================
   REDUCE MOTION
===================================================== */

@media(prefers-reduced-motion:reduce){

*{

    animation:none !important;

    transition:none !important;

    scroll-behavior:auto !important;

}

}
