:root {
    --primary: #1976D2;
    --primary-dark: #0D47A1;
    --accent: #4FC3F7;
    /* Aliases */
    --color-primary: var(--primary);
    --color-primary-dark: var(--primary-dark);
    --color-accent: var(--accent);
    --dark: #071B2F;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --text: #334155;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 5px 15px rgba(0,0,0,.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 15px 50px rgba(0,0,0,.12);
    --container-max: 1320px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

    .custom-navbar.scrolled {
        background: rgba(255,255,255,.80);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        padding: 6px 0;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }

.site-logo {
    /*height: 70px;*/
    height: 60px;
    width: auto;
    transition: height .35s ease;
}

.custom-navbar.scrolled .site-logo {
    /*height: 55px;*/
    height: 48px;
}

.custom-navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
}

.custom-navbar.scrolled .nav-link {
    color: #1f2937 !important;
}

    .custom-navbar .nav-link:hover {
        color: var(--accent) !important;
    }

.btn-book {
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}

.custom-navbar.scrolled .btn-book {
    box-shadow: 0 10px 25px rgba(13,110,253,.25);
}

    .btn-book:hover {
        color: #fff;
        background: var(--primary-dark);
    }

/* ========================================
   ACTIVE NAVIGATION
======================================== */

.nav-link {
    position: relative;
    font-weight: 500;
    transition: .3s ease;
}

    .nav-link:hover {
        color: var(--color-primary) !important;
    }

    .nav-link.active {
        color: var(--color-primary) !important;
        font-weight: 600;
    }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 3px;
            border-radius: 999px;
            background: var(--color-primary);
        }

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: .5rem;
}

/* ==========================================
   PREMIUM HERO
========================================== */

.hero-section {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    /*background-image: url('https://images.unsplash.com/photo-1573843981267-be1999ff37cd');*/
    /*background-image: url('/images/road.gif');*/
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(.75);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(3,15,32,.85) 0%, rgba(3,15,32,.70) 40%, rgba(3,15,32,.35) 100% );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 78vh;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: .85rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-title {
    color: #fff;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

    .hero-title span {
        display: block;
        color: var(--primary-color);
    }

.hero-description {
    color: rgba(255,255,255,.85);
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-btn {
    padding: 14px 32px;
}

.hero-btn-secondary {
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,.35);
    color: white;
}

    .hero-btn-secondary:hover {
        background: white;
        color: #0f172a;
    }

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 18px;
    color: white;
}

.hero-floating-card {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0,0,0,.20);
}

.card-label {
    color: var(--primary-color);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-floating-card h3 {
    margin: 15px 0 25px;
    font-size: 2rem;
    font-weight: 700;
}

.features-floating {
    position: relative;
    margin-top: -90px;
    z-index: 20;
}

.hero-floating-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.hero-floating-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
}

.features-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
}

    .feature-item:not(:last-child) {
        border-right: 1px solid #eef2f7;
    }

.feature-content i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.feature-content h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-description {
    color: #64748b;
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0ea5e9;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
}

.destination-featured {
    position: relative;
    display: block;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 30px;
}

    .destination-featured img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .destination-featured:hover img {
        transform: scale(1.08);
    }

.destination-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 40px;
    background: linear-gradient( transparent, rgba(0,0,0,.75) );
}

    .destination-overlay span {
        color: white;
        opacity: .85;
    }

.destination-small {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    height: 280px;
}

    .destination-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .destination-small:hover img {
        transform: scale(1.08);
    }

.destination-small-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 20px;
    background: linear-gradient( transparent, rgba(0,0,0,.7) );
}

    .destination-small-overlay h5 {
        color: white;
        margin: 0;
        font-weight: 600;
    }

/* =========================
   SHARED PAGE HERO
========================= */
.page-hero {
    position: relative;
    min-height: 58vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34)), linear-gradient(to top, rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.05));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 70px;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(14,165,233,.15);
    color: #ffffff;
    border: 1px solid rgba(56,189,248,.35);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    max-width: 850px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.page-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.90);
    max-width: 650px;
    line-height: 1.9;
}

.min-vh-50 {
    min-height: 50vh;
}

page-breadcrumb-wrap {
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

    .page-breadcrumb .breadcrumb-item,
    .page-breadcrumb .breadcrumb-item.active {
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.82);
    }

        .page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.55);
            content: "›";
            padding-right: 0.65rem;
        }

        .page-breadcrumb .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: 0.25s ease;
        }

            .page-breadcrumb .breadcrumb-item a:hover {
                color: var(--color-accent);
            }

.hero-quick-stats {
    display: flex;
    gap: 25px;
    margin: 25px 0 35px;
}

    .hero-quick-stats span {
        color: white;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .95rem;
    }

/* ========================================
   WHY CHOOSE US
======================================== */

.why-us-section {
    background: linear-gradient( to bottom, #ffffff, #f8fbff);
}

.why-us-image {
    position: relative;
}

    .why-us-image img {
        width: 100%;
        border-radius: 30px;
        height: 650px;
        object-fit: cover;
    }

.experience-badge {
    position: absolute;
    bottom: 50px;
    right: -40px;
    background: #fff;
    border-radius: 24px;
    padding: 25px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    text-align: center;
    min-width: 180px;
}

    .experience-badge strong {
        display: block;
        font-size: 3rem;
        color: var(--primary);
        line-height: 1;
        font-weight: 800;
    }

    .experience-badge span {
        color: #64748b;
        font-size: .95rem;
    }

.why-us-text {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 35px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 18px;
}

    .why-item i {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        background: rgba(25,118,210,.08);
        color: var(--primary);
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .why-item h5 {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
    }

    .why-item p {
        margin: 0;
        color: #64748b;
    }

/* ========================================
   DESTINATIONS
======================================== */

.destinations-section {
    padding: 120px 0;
    background: #f8fbff;
}

.destination-masonry {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1.2fr;
    grid-template-rows: 260px 260px;
    gap: 20px;
}

/* shared */

.destination-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    display: block;
}

    .destination-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s ease;
    }

    .destination-item:hover img {
        transform: scale(1.08);
    }

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( transparent 25%, rgba(0,0,0,.78) );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

    .destination-overlay span {
        color: #9bdfff;
        font-size: .9rem;
        margin-bottom: 8px;
    }

    .destination-overlay h3 {
        color: #fff;
        font-size: 1.8rem;
        margin: 0;
    }

/* layout positions */

.destination-item--tall {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.destination-item--featured {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.destination-item--top {
    grid-column: 3;
    grid-row: 1;
}

.destination-item--bottom {
    grid-column: 3;
    grid-row: 2;
}

/* ========================================
   SIGNATURE EXPERIENCES
======================================== */

.experience-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .35s;
    position: relative;
}

    .experience-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, var(--primary), #4FC3F7 );
        transform: scaleX(0);
        transform-origin: left;
        transition: .35s;
        z-index: 20;
    }

    .experience-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
        /*box-shadow: 0 25px 60px rgba(25,118,210,.15);*/
    }

        .experience-card:hover .experience-image {
            border-bottom: 3px solid var(--primary);
        }

        .experience-card:hover::before {
            transform: scaleX(1);
        }

.experience-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .experience-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
        filter: saturate(1.08) contrast(1.02);
    }

.experience-card:hover img {
    transform: scale(1.08);
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(7,27,47,.88) 5%, rgba(7,27,47,.35) 45%, rgba(7,27,47,.08) 100% );
    /*background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.05));*/
}

.experience-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.experience-rating {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
}

    .experience-rating i {
        color: #FFD54F;
    }

    .experience-rating i {
        color: #fbbf24;
    }

.experience-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .experience-content h4 {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #0f172a;
        transition: .3s;
    }

.experience-card:hover h4 {
    color: var(--primary);
}

.experience-summary {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.experience-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.experience-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #f8fafc;
    font-size: .9rem;
    color: #334155;
}

    .experience-chip i {
        color: var(--primary);
    }

.experience-footer {
    margin-top: auto;
    border-top: 1px solid #edf2f7;
    padding-top: 18px;
}

/*.experience-link {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}*/

.experience-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    transition: .3s;
}

.experience-card:hover .experience-link {
    letter-spacing: .3px;
}

    .experience-link i {
        transition: .3s;
    }

.experience-card:hover .experience-link i {
    transform: translateX(5px);
}

/* ========================================
   COMBO BANNER
======================================== */
.combo-banner {
    position: relative;
    padding: 90px 0;
    background-image: linear-gradient( rgba(0,0,0,.45), rgba(0,0,0,.45) ), url('/images/combo.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.combo-content {
    max-width: 700px;
    color: white;
    position: relative;
    z-index: 2;
}

.combo-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(12px);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.combo-content h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.combo-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 600px;
    margin-bottom: 35px;
    opacity: .95;
}

/* ========================================
   TESTIMONIALS
======================================== */

.testimonials-section {
    background: #f8fbff;
}

.testimonial-card {
    max-width: 1000px;
    margin: auto;
    background: white;
    border-radius: 40px;
    padding: 70px 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.testimonial-stars {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-author h5 {
    margin: 0;
    font-weight: 700;
}

.testimonial-author span {
    color: #64748b;
}

.testimonial-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testimonial-arrow {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: #0f172a;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.footer {
    margin-top: 0px;
    padding-top: 40px;
    background: linear-gradient( 135deg, #031f35, #0a4e82 );
    color: white;
    position: relative;
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255,255,255,.15);
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 45px 0;
}

.footer-logo {
    width: 220px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li,
    .footer-contact li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: rgba(255,255,255,.75);
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

    .footer-contact li {
        display: flex;
        gap: 12px;
        color: rgba(255,255,255,.75);
    }

.footer-socials {
    display: flex;
    gap: 12px;
}

    .footer-socials a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        color: white;
        text-decoration: none;
        transition: .3s;
    }

        .footer-socials a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,.7);
}

.footer-top-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 25px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

    .footer-top-cta h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .footer-top-cta p {
        margin: 0;
        line-height: 1.6;
        max-width: 600px;
        color: rgba(255,255,255,.75);
    }

.footer-top-actions {
    display: flex;
    gap: 12px;
}

    .footer-top-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
    }

    .footer-top-actions .btn-primary,
    .footer-top-actions .btn-outline-light {
        padding: 12px 24px;
    }

 /*ABOUT-PAGE*/
.about-story {
    background: #f8fbff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

    .about-story-image img {
        width: 100%;
        border-radius: 30px;
        display: block;
    }

.story-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

    .story-badge h3 {
        color: var(--primary);
        font-size: 2rem;
        margin: 0;
    }

.about-story-content h2 {
    margin: 20px 0;
    font-size: 3rem;
}

.about-story-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-top: 30px;
}

.story-feature {
    padding: 16px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.why-us-section {
    background: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    padding: 35px 30px;
    text-align: center;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,.06);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

    .why-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, var(--primary), #49c4ff );
        transform: scaleX(0);
        transition: .35s ease;
    }

    .why-card:hover::before {
        transform: scaleX(1);
    }

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(13,110,253,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

.promise-section {
    background: #f8fbff;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.promise-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

    .promise-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

    .promise-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, var(--primary), #4ec6ff );
    }

    .promise-card i {
        font-size: 2.8rem;
        color: var(--primary);
        margin-bottom: 25px;
        display: inline-block;
    }

    .promise-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: #0b2239;
    }

    .promise-card p {
        color: #6c757d;
        line-height: 1.8;
        margin-bottom: 0;
    }

.about-stats {
    padding: 100px 0;
    background: linear-gradient( 135deg, #031f35, #0a4e82 );
    position: relative;
    overflow: hidden;
}

    .about-stats::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        top: -120px;
        right: -120px;
    }

    .about-stats::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        bottom: -80px;
        left: -80px;
    }

.about-stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.about-stat-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
}

    .about-stat-card h3 {
        color: white;
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .about-stat-card span {
        color: rgba(255,255,255,.8);
    }

.tour-search-section {
    position: relative;
    margin-top: -60px;
    z-index: 20;
}

.tour-search-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.tour-search-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.search-group {
    display: flex;
    flex-direction: column;
}

    .search-group label {
        font-size: .85rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #666;
    }

    .search-group input,
    .search-group select {
        height: 55px;
        border: 1px solid #e5e5e5;
        border-radius: 14px;
        padding: 0 18px;
        outline: none;
        transition: .3s;
    }

        .search-group input:focus,
        .search-group select:focus {
            border-color: var(--primary);
        }

.tour-search-btn {
    height: 55px;
    border: none;
    padding: 0 30px;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    transition: .3s;
}

    .tour-search-btn:hover {
        background: var(--primary-dark);
    }

/* ========================================
   FEATURED EXPERIENCES
======================================== */

.featured-experiences {
    padding: 100px 0 80px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.featured-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

    .featured-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.8), rgba(0,0,0,.15) );
}

.featured-card:hover img {
    transform: scale(1.08);
}

.featured-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: white;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,.95);
    color: var(--primary);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    z-index: 3;
    width: 80px
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.featured-content p {
    margin-bottom: 15px;
    opacity: .85;
}

.featured-price {
    color: #6ec1ff;
    font-size: 1.1rem;
    font-weight: 700;
}

 /*========================================
   ALL TOURS
========================================*/ 

.all-tours-section {
    padding: 100px 0 120px;
}

.all-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 30px;
}

.tour-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.tour-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
}

    .tour-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }

.tour-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .tour-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s ease;
    }

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(7,27,47,.55), rgba(7,27,47,.08), transparent );
    opacity: .85;
    transition: .35s;
    pointer-events: none;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.08);
}

.tour-card:hover .tour-card-overlay {
    opacity: 1;
}

.tour-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(14px);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.25);
    z-index: 5;
    transition: .35s;
}

.tour-card:hover .tour-card-badge {
    transform: translateY(-2px);
}

.tour-rating-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 40px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    font-size: .8rem;
    font-weight: 700;
    color: #111827;
    z-index: 5;
    min-width: auto;
}

    .tour-rating-badge i {
        color: #fbbf24;
    }

.tour-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .tour-card-body h3 {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 18px;
        color: #1a1a1a;
    }

.tour-card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -8px 0 18px;
}

.tour-stars {
    display: flex;
    gap: 2px;
}

    .tour-stars i {
        color: #fbbf24;
        font-size: .82rem;
    }

.tour-rating-text {
    font-size: .82rem;
    color: #64748b;
    font-weight: 600;
}

.tour-summary {
    color: #6b7280;
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.tour-meta-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 50px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    transition: .3s;
}

    .tour-meta-chip i {
        color: var(--primary);
        font-size: .9rem;
    }

    .tour-meta-chip span {
        font-size: .84rem;
        font-weight: 600;
        color: #475569;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 170px;
    }

.tour-card:hover .tour-meta-chip {
    background: #eef6ff;
    border-color: #dbeafe;
}

.tour-card-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.tour-price {
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    border-radius: 40px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

    .tour-price span {
        font-size: .68rem;
        letter-spacing: 2px;
        opacity: .8;
    }

    .tour-price strong {
        color: #fff;
        font-size: 1.6rem;
        line-height: 1;
    }

    .tour-price small {
        color: rgba(255,255,255,.85);
        font-size: .78rem;
    }

.tour-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    transition: .3s;
}

    .tour-link a {
        text-decoration: none;
    }

    .tour-link i {
        transition: .3s;
    }

.tour-card:hover .tour-link i {
    transform: translateX(6px);
}

/* ========================================
   TOURS TOOLBAR
======================================== */
    .tours-toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        gap: 20px;
    }

.tours-count {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

    .tours-count i {
        color: var(--primary);
        font-size: 1.1rem;
    }

    .tours-count strong {
        color: var(--primary);
        font-weight: 700;
    }

.tours-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .tours-filters button {
        border: none;
        background: #f4f7fb;
        color: #555;
        padding: 10px 18px;
        border-radius: 50px;
        font-size: .9rem;
        font-weight: 600;
        transition: .3s;
    }

        .tours-filters button.active {
            background: var(--primary);
            color: white;
        }

        .tours-filters button:hover {
            background: var(--primary);
            color: white;
        }

/* ========================================
   TOUR GALLERY
======================================== */

.tour-gallery-section {
    padding: 80px 0 40px;
}

.tour-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.gallery-main {
    height: 620px;
    overflow: hidden;
    border-radius: 24px;
}

    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

    .gallery-main:hover img {
        transform: scale(1.05);
    }

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

    .gallery-side img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 20px;
        transition: .4s;
        cursor: pointer;
    }

        .gallery-side img:hover {
            transform: translateY(-5px);
        }

/* ========================================
   TOUR OVERVIEW
======================================== */

.tour-overview-section {
    padding: 100px 0;
}

.tour-overview-grid {
    display: grid;
    grid-template-columns: 2fr 420px;
    gap: 60px;
    align-items: start;
}

.tour-description {
    color: #667085;
    line-height: 1.9;
    margin: 30px 0;
}

.tour-highlights {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.highlight-item {
    background: #f8fafc;
    padding: 18px 20px;
    border-radius: 14px;
    font-weight: 500;
}

.tour-includes {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.includes-box {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 25px;
}

    .includes-box h4 {
        margin-bottom: 20px;
        color: var(--primary);
    }

    .includes-box ul {
        padding-left: 20px;
        margin: 0;
    }

    .includes-box li {
        margin-bottom: 12px;
        color: #667085;
    }

/* BOOKING CARD */

.tour-booking-card {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.booking-label {
    font-size: .85rem;
    letter-spacing: 2px;
    color: #94a3b8;
}

.booking-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0 25px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

    .booking-info div {
        display: flex;
        gap: 12px;
        align-items: center;
        color: #475467;
    }

.booking-btn {
    width: 100%;
    margin-bottom: 12px;
}

.inquiry-btn {
    width: 100%;
}

/* ========================================
   RELATED TOURS
======================================== */

.related-tours-section {
    padding: 100px 0;
    background: #f8fafc;
}

.related-tour-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    transition: all .35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

    .related-tour-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

    .related-tour-card .tour-image {
        height: 220px;
        overflow: hidden;
    }

        .related-tour-card .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

    .related-tour-card:hover .tour-image img {
        transform: scale(1.08);
    }

    .related-tour-card .card-body {
        padding: 1.5rem;
    }

    .related-tour-card .tour-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--color-heading);
        margin-bottom: .75rem;
    }

    .related-tour-card .tour-price {
        color: var(--primary);
        font-size: 1.2rem;
        font-weight: 700;
    }

    .related-tour-card .tour-link {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

        .related-tour-card .tour-link:hover {
            color: var(--primary-dark);
        }

    .related-tour-card .featured-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 2;
        background: rgba(255,255,255,.95);
        color: var(--primary);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: .75rem;
        font-weight: 700;
    }

/* ========================================
   TOUR REVIEWS
======================================== */

.tour-reviews {
    padding: 100px 0;
    background: #f8fbff;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid #edf1f7;
    transition: .35s;
}

    .review-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

.review-stars {
    display: flex;
    gap: 4px;
    color: #ffc107;
    margin-bottom: 18px;
    font-size: 15px;
}

.review-comment {
    color: #5f6b7a;
    line-height: 1.8;
    min-height: 90px;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.review-author h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.review-author span {
    display: block;
    font-size: 13px;
    color: #3b82f6;
}

.review-date {
    display: block;
    color: #94a3b8;
    margin-top: 4px;
    font-size: 12px;
}

/* ========================================
   TOUR RATING SUMMARY
======================================== */
.tour-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

    .rating-stars i {
        color: #ffc107;
        font-size: 1rem;
    }

.rating-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d2b4d;
}

.rating-count {
    color: #6c757d;
    font-size: .95rem;
}

.tour-rating-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    transition: .3s;
}

    .tour-rating-link:hover {
        color: var(--color-primary);
        transform: translateX(3px);
    }

        .tour-rating-link:hover .tour-stars {
            color: #ffb400;
        }

.tour-stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 13px;
}

.tour-rating-value {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.tour-review-count {
    font-size: 14px;
    color: #6b7280;
}

.tour-rating-dot {
    color: #b8b8b8;
    font-weight: 700;
}

#reviews {
    scroll-margin-top: 120px;
}

/* ========================================
   FEATURED DESTINATIONS
======================================== */

.featured-destinations {
    padding: 100px 0;
}

.featured-destination-card {
    position: relative;
    display: block;
    height: 450px;
    border-radius: 28px;
    overflow: hidden;
}

    .featured-destination-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s ease;
    }

    .featured-destination-card:hover img {
        transform: scale(1.08);
    }

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.85), rgba(0,0,0,.15) );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

    .destination-overlay h3 {
        color: #fff;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: .5rem;
    }

    .destination-overlay span {
        color: #fff;
        opacity: .9;
    }

/* ========================================
   ALL DESTINATIONS
======================================== */

.all-destinations-section {
    padding: 100px 0 120px;
}

.destinations-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.destinations-count {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667085;
}

    .destinations-count strong {
        color: var(--primary);
    }

    .destinations-count i {
        color: var(--primary);
    }

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(340px,1fr));
    gap: 30px;
    justify-content: center !important;
}

.destination-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .destination-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,.10);
    }

.destination-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

    .destination-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s ease;
    }

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-card-body {
    padding: 25px;
}

    .destination-card-body h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #111827;
    }

    .destination-card-body p {
        color: #6b7280;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.destination-card-footer {
    border-top: 1px solid #eef2f7;
    padding-top: 18px;
}

.destination-link {
    color: var(--primary);
    font-weight: 600;
}

/* ========================================
   WHY VISIT TANZANIA
======================================== */

.why-visit-section {
    padding: 80px 0;
    background: #f8fbff;
}

.why-visit-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 60px;
}

.why-visit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: .35s ease;
}

    .why-visit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

.why-visit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,.08);
    color: var(--primary);
    font-size: 2rem;
}

.why-visit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-visit-card p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   FEATURED PACKAGES
======================================== */

.featured-packages {
    padding: 100px 0;
}

.featured-packages-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.featured-package-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 28px;
    text-decoration: none;
    display: block;
}

    .featured-package-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s ease;
    }

    .featured-package-card:hover img {
        transform: scale(1.08);
    }

.featured-package-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient( to top, rgba(0,0,0,.88), rgba(0,0,0,.15) );
}

.featured-package-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .featured-package-meta span {
        background: rgba(255,255,255,.15);
        color: white;
        padding: 8px 14px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        font-size: .85rem;
    }

.featured-package-overlay h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.featured-package-link {
    color: white;
    font-weight: 600;
    opacity: .9;
}

/* ========================================
   ALL PACKAGES
======================================== */

.all-packages-section {
    padding: 110px 0;
    background: #fff;
}

.package-list-card {
    display: block;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    border: 1px solid #edf2f7;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .package-list-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.12);
        color: inherit;
    }

.package-list-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .package-list-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.package-list-card:hover .package-list-image img {
    transform: scale(1.08);
}

/* Dark Overlay */

.package-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.05));
}

.package-list-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 250px);
}

    .package-list-content h4 {
        font-size: 1.45rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 14px;
    }

/* Description */

.package-summary {
    color: #64748b;
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta */

.package-list-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.package-meta-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #475569;
    font-size: .88rem;
    font-weight: 600;
}

    .package-meta-chip i {
        color: var(--primary);
    }

.package-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
}

.package-price {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .package-price small {
        font-size: .65rem;
        letter-spacing: 2px;
        color: #94a3b8;
        margin-bottom: 6px;
    }

    .package-price strong {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 800;
    }

    .package-price span {
        margin-top: 5px;
        color: #94a3b8;
        font-size: .78rem;
    }

.package-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    transition: .3s;
}

    .package-link i {
        transition: .3s;
    }

.package-list-card:hover .package-link i {
    transform: translateX(5px);
}

/* ========================================
   PACKAGE BENEFITS
======================================== */

.package-benefits-section {
    padding: 110px 0;
    background: #f8fbff;
}

.benefit-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.08);
    }

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(37,99,235,.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .benefit-icon i {
        font-size: 1.6rem;
        color: var(--color-primary);
    }

.benefit-card h5 {
    font-weight: 700;
    margin-bottom: 14px;
    color: #0f172a;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   PACKAGE OVERVIEW
======================================== */

.package-overview-section {
    padding: 100px 0;
}

.package-overview-grid {
    display: grid;
    grid-template-columns: 2fr 420px;
    gap: 60px;
    align-items: start;
}

.package-description {
    color: #64748b;
    line-height: 1.9;
    margin-top: 30px;
    margin-bottom: 2rem;
    min-height: 160px;
}

.package-divider{
    margin:2rem 0;
    border:0;
    border-top: 1px dotted #000;
}

.package-booking-card {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.booking-label {
    font-size: .85rem;
    letter-spacing: 2px;
    color: #94a3b8;
}

.booking-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0 25px;
}

.booking-info {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .booking-info div {
        display: flex;
        gap: 12px;
        align-items: center;
        color: #475467;
    }

.booking-btn,
.inquiry-btn {
    width: 100%;
}

.booking-btn {
    margin-bottom: 12px;
}

/*==========================================
PACKAGE ITINERARY
==========================================*/

.package-itinerary-section {
    padding: 120px 0;
    background: #f8fbff;
}

.package-itinerary-accordion {
    width: 100%;
    margin: 60px auto 0;
}

    .package-itinerary-accordion .accordion-item {
        border: none;
        border-radius: 22px !important;
        overflow: hidden;
        margin-bottom: 22px;
        background: white;
        box-shadow: 0 15px 40px rgba(15,23,42,.06);
    }

    .package-itinerary-accordion .accordion-button {
        background: white;
        padding: 26px 28px;
        display: flex;
        align-items: center;
        gap: 22px;
        box-shadow: none;
        font-size: 1.08rem;
        font-weight: 700;
    }

.accordion-collapse {
    transition: all .35s ease;
}

        .package-itinerary-accordion .accordion-button:not(.collapsed) {
            background: white;
            color: inherit;
            box-shadow: none;
        }

        .package-itinerary-accordion .accordion-button:focus {
            box-shadow: none;
        }

.day-badge {
    width: 85px;
    min-width: 85px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #e8f2ff;
    color: var(--color-primary);
    border: 1px solid rgba(25,118,210,.15);
    font-weight: 700;
    font-size: .85rem;
}

.day-title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.package-itinerary-accordion .accordion-body {
    padding: 28px 32px 34px;
    border-top: 1px solid #eef2f7;
    color: #64748b;
    line-height: 1.9;
    border-color: var(--primary);
    padding-left: 30px;
}

    .package-itinerary-accordion .accordion-body p:last-child {
        margin-bottom: 20px;
    }

/* ========================================
   RELATED PACKAGES
======================================== */

.related-packages-section {
    padding: 100px 0;
    background: #f8fbff;
}

/* ========================================
   TRAVEL INTRO
======================================== */

.travel-intro-section {
    padding: 100px 0;
}

.travel-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.travel-intro-content p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 20px;
}

.travel-intro-image img {
    width: 100%;
    border-radius: 28px;
    height: 500px;
    object-fit: cover;
}

/* ========================================
   QUICK FACTS
======================================== */

.quick-facts-section {
    padding-bottom: 100px;
}

.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 50px;
}

.fact-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

    .fact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

    .fact-card i {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .fact-card h4 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .fact-card p {
        margin: 0;
        color: #64748b;
    }

/* ========================================
   BEST TIME TO VISIT
======================================== */

.best-time-section {
    padding: 100px 0;
    background: #f8fbff;
}

.best-time-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 60px;
}

.season-card {
    background: white;
    padding: 45px;
    border-radius: 28px;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

    .season-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

.season-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(13,110,253,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .season-icon i {
        font-size: 2rem;
        color: var(--primary);
    }

.season-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.season-tag {
    display: inline-block;
    background: rgba(13,110,253,.08);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.season-card p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   TOP PLACES TO VISIT
======================================== */

.places-section {
    padding: 120px 0;
}

.places-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    grid-template-rows: repeat(2, 190px);
    gap: 20px;
    margin-top: 60px;
}

.large-card {
    grid-row: 1 / span 2;
}

.place-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 100%;
}

    .place-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s ease;
    }

    .place-card:hover img {
        transform: scale(1.08);
    }

.place-overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient( to top, rgba(0,0,0,.85), rgba(0,0,0,.15) );
}

    .place-overlay h3 {
        color: white;
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .place-overlay p {
        color: rgba(255,255,255,.85);
        margin: 0;
        line-height: 1.6;
        font-size: .95rem;
    }

/* ========================================
   POPULAR TOURS
======================================== */

.travel-tours-section {
    padding: 120px 0;
    background: #f8fbff;
}

.travel-tour-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

    .travel-tour-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.08);
    }

.travel-tour-image {
    position: relative;
}

    .travel-tour-image img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
}

.travel-tour-content {
    padding: 28px;
}

    .travel-tour-content h4 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .travel-tour-content p {
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.travel-tour-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
}

    .travel-tour-meta span:last-child {
        color: var(--primary);
        font-weight: 700;
    }

.travel-tour-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
}

/* ========================================
   LOCAL FOOD TO TRY
======================================== */

.food-section {
    padding: 120px 0;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 60px;
}

.food-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

    .food-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.08);
    }

    .food-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.food-content {
    padding: 25px;
}

    .food-content h4 {
        font-weight: 700;
        margin-bottom: 12px;
    }

    .food-content p {
        color: #64748b;
        line-height: 1.8;
        margin: 0;
    }

/* ========================================
   CULTURE & RESPECT
======================================== */

.culture-section {
    padding: 120px 0;
    background: #f8fbff;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.culture-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

    .culture-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(13,110,253,.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .culture-icon i {
        font-size: 2rem;
        color: var(--primary);
    }

.culture-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.culture-card p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   GETTING TO ZANZIBAR
======================================== */

.airport-section {
    padding: 120px 0;
}

.airport-card {
    background: linear-gradient( 135deg, #031f35, #0a4e82 );
    border-radius: 32px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    color: white;
}

.airport-content {
    max-width: 700px;
}

    .airport-content h2 {
        margin: 15px 0 20px;
    }

    .airport-content p {
        color: rgba(255,255,255,.85);
        line-height: 1.9;
        margin-bottom: 30px;
    }

.airport-icon {
    font-size: 5rem;
    opacity: .25;
}

/* ========================================
   SERVICES INTRO
======================================== */

.services-intro-section {
    padding: 120px 0;
}

.services-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.service-features {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 500;
}

    .feature-item i {
        color: var(--color-primary);
        margin-right: 10px;
    }

/* ========================================
   SERVICES GRID
======================================== */

.services-grid-section {
    padding: 120px 0;
    background: #f8fafc;
}

.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.service-card-content {
    padding: 25px;
}

.service-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    display: inline-block;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 0;
}

/* ========================================
   WHY CHOOSE US
======================================== */

.why-us-section {
    padding: 120px 0;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .why-card i {
        font-size: 2.5rem;
        color: var(--color-primary);
        margin-bottom: 20px;
    }

    .why-card h5 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .why-card p {
        color: #64748b;
        margin-bottom: 0;
    }

/* ========================================
   SERVICES CTA
======================================== */

.services-cta {
    padding: 0 0 120px;
}

.services-cta-box {
    background: linear-gradient( 135deg, #0b3b66, #0e5ea8 );
    border-radius: 30px;
    padding: 70px;
    color: white;
}

    .services-cta-box h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 15px 0;
    }

    .services-cta-box p {
        font-size: 1.05rem;
        opacity: .9;
        max-width: 700px;
    }

/* ========================================
   GALLERY GRID
======================================== */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    columns: 4;
    column-gap: 20px;
    margin-top: 90px;
}

.gallery-item {
    margin-bottom: 20px;
    break-inside: avoid;
}

    .gallery-item img {
        width: 100%;
        border-radius: 20px;
        display: block;
        transition: .4s ease;
    }

        .gallery-item img:hover {
            transform: scale(1.03);
        }

/* ========================================
   CONTACTS US
======================================== */
.contact-cards-section {
    padding: 100px 0;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
}

    .contact-card i {
        font-size: 2.5rem;
        color: var(--color-primary);
        margin-bottom: 20px;
    }

    .contact-card h5 {
        font-weight: 700;
        margin-bottom: 10px;
    }

/* ========================================
   CONTACT MAIN
======================================== */

.contact-main-section {
    padding: 100px 0 120px;
}

/* FORM CARD */

.contact-form-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

    .contact-form-card .form-control,
    .contact-form-card .form-select {
        min-height: 55px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
    }

        .contact-form-card .form-control:focus,
        .contact-form-card .form-select:focus {
            box-shadow: none;
            border-color: var(--color-primary);
        }

    .contact-form-card .form-floating > .form-control,
    .contact-form-card .form-floating > .form-select {
        border-radius: 14px;
        border: 1px solid #e5e7eb;
    }

    .contact-form-card .form-floating > label {
        color: #64748b;
    }

    .contact-form-card .form-control:focus,
    .contact-form-card .form-select:focus {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
    }

    .contact-form-card textarea.form-control {
        resize: none;
    }

/* OFFICE CARD */

.office-info-card {
    background: linear-gradient( 135deg, #0c4da2, #0a2f63 );
    color: white;
    border-radius: 30px;
    padding: 45px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .office-info-card::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        top: -100px;
        right: -100px;
    }

    .office-info-card h3,
    .office-info-card h5 {
        color: white;
    }

    .office-info-card p {
        color: rgba(255,255,255,.85);
    }

    .office-info-card hr {
        border-color: rgba(255,255,255,.15);
        opacity: 1;
    }

/* PREMIUM BADGE */

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: white;
    margin-bottom: 25px;
}

    .premium-badge i {
        color: #ffd166;
    }

/* OFFICE ITEMS */

.office-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

    .office-item i {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.15);
        color: white;
        font-size: 1rem;
    }

/* SOCIALS */

.contact-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .contact-socials a {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        color: white;
        text-decoration: none;
        transition: all .3s ease;
    }

        .contact-socials a:hover {
            transform: translateY(-5px);
            background: white;
            color: var(--color-primary);
        }

    .contact-socials i {
        font-size: 1.2rem;
    }

/* ========================================
   CONTACT MAP
======================================== */

.contact-map-section {
    padding: 0 0 120px;
}

.map-wrapper {
    margin-top: 50px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .map-wrapper iframe {
        width: 100%;
        height: 550px;
        border: none;
        display: block;
    }

/* ========================================
   TRANSFER INTRO
======================================== */

.transfer-intro-section {
    padding: 120px 0;
}

.transfer-features {
    margin-top: 30px;
}

.transfer-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

    .transfer-feature i {
        color: var(--color-primary);
    }

/* ========================================
   TRANSFER BENEFITS
======================================== */

.transfer-benefits-section {
    padding: 120px 0;
    background: #fff;
}

.benefit-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    min-height: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .35s ease;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(13,110,253,.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .benefit-icon i {
        font-size: 1.8rem;
        color: var(--color-primary);
    }

.benefit-card h5 {
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    margin: 0;
    color: #6c757d;
}

/* ========================================
   TRANSFER CTA
======================================== */

.transfer-cta-section {
    padding: 0 0 120px;
}

.transfer-cta {
    background: linear-gradient( 135deg, #0c4da2, #0a2f63 );
    border-radius: 32px;
    padding: 70px;
    color: white;
}

    .transfer-cta h2 {
        color: white;
        margin: 15px 0;
        font-size: 3rem;
        font-weight: 700;
    }

    .transfer-cta p {
        color: rgba(255,255,255,.85);
        margin: 0;
    }

.section-subtitle-light {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: white;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: .85rem;
    letter-spacing: 1px;
}

/* ========================================
   BOOKING FORM
======================================== */
.booking-section {
    padding: 100px 0;
    background: #f8fafc;
}

.booking-header {
    margin-bottom: 50px;
}

    .booking-header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-top: 15px;
    }

.booking-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 35px;
    align-items: start;
}

.booking-form-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.booking-form-card {
    padding: 35px;
}

    .booking-form-card h3 {
        margin-bottom: 25px;
        font-weight: 700;
    }

    .booking-form-card label {
        font-weight: 600;
        margin-bottom: 6px;
    }

/* Inputs */
.form-control:not(textarea),
.form-select,
.choices__inner {
    height: 55px;
    border-radius: 12px;
}

/* Textarea */
textarea.form-control {
    min-height: 150px;
    border-radius: 12px;
    resize: vertical;
}

/* =========================
   COUNTRY SELECT (Choices)
========================= */

.choices {
    margin-bottom: 0;
}

.choices__inner {
    min-height: 55px !important;
    height: 55px;
    border: 1px solid #dee2e6;
    border-radius: 12px !important;
    background: #fff;
    padding: 12px 14px !important;
    display: flex;
    align-items: center;
    font-size: 1rem;
    box-shadow: none;
}

.choices[data-type*=select-one]::after {
    right: 16px;
}

.choices__list--single {
    padding: 0;
}

.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
    border-color: #86b7fe;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.15);
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    border-radius: 12px;
    border: 1px solid #dbe4f0;
}

.choices__input {
    background: transparent;
    font-size: .95rem;
}

.choices__placeholder {
    color: #94a3b8;
    opacity: .6;
}

.form-control:not(textarea),
.form-select {
    height: 55px;
    border-radius: 12px;
}

.btn-book-tour {
    width: 100%;
    border: none;
    margin-top: 25px;
    background: #2563eb;
    color: #fff;
    border-radius: 14px;
    padding: 16px;
    font-weight: 600;
}

.booking-trust {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .booking-trust i {
        color: #16a34a;
        margin-right: 8px;
    }

.booking-order-summary {
    background: linear-gradient(135deg,#0d6efd,#3b82f6);
    color: #fff;
    border-radius: 18px;
    padding: 22px;
    margin: 20px 0 35px;
}

.booking-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .booking-order-header span {
        font-size: .95rem;
        opacity: .9;
    }

    .booking-order-header strong {
        font-size: 2rem;
        font-weight: 800;
    }

.booking-order-sub {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: .95rem;
    opacity: .92;
}

/*=========================================
   GUEST SELECTOR
=========================================*/

.guest-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 6px;
    background: #fff;
    height: 58px;
    transition: .25s;
}

    .guest-selector:focus-within {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(37,99,235,.08);
    }

.guest-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

    .guest-btn:hover {
        background: var(--primary);
        color: #fff;
        transform: scale(1.05);
    }

    .guest-btn:active {
        transform: scale(.94);
    }

.guest-input {
    flex: 1;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    pointer-events: none;
}

    .guest-input:focus {
        outline: none;
    }

    .guest-input::-webkit-inner-spin-button,
    .guest-input::-webkit-outer-spin-button {
        display: none;
    }

/* ==========================================
   BOOKING SUMMARY
========================================== */

.booking-summary {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.booking-summary-image {
    position: relative;
    /*height: 180px;
    padding: 24px 24px 0;
    background: #fff;*/
}

    .booking-summary-image img {
        /*width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;*/
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 24px 24px 0 0;
        transition: .6s;
    }

.booking-summary:hover .booking-summary-image img {
    transform: scale(1.06);
}

.booking-summary-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 18px;
    bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(to top, rgba(0,0,0,.25), rgba(0,0,0,0));
}

.booking-summary-body {
    padding: 28px;
}

    .booking-summary-body h3 {
        font-size: 1.65rem;
        font-weight: 800;
        margin-bottom: 26px;
        line-height: 1.35;
        color: #0f172a;
    }

.summary-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef6ff;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.summary-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.booking-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff8e8;
    color: #111827;
    font-weight: 700;
}

    .booking-rating i {
        color: #fbbf24;
    }

    .booking-rating span {
        color: #64748b;
        font-size: .88rem;
        font-weight: 500;
    }

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef2f7;
}

    .booking-info-item:last-child {
        border-bottom: none;
    }

    .booking-info-item i {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(37,99,235,.08);
        color: var(--color-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15rem;
    }

    .booking-info-item small {
        display: block;
        color: #94a3b8;
        font-size: .8rem;
        margin-bottom: 3px;
    }

    .booking-info-item strong {
        color: #0f172a;
        font-size: .97rem;
        font-weight: 700;
    }

.booking-features {
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .booking-features div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #475569;
        font-size: .95rem;
        padding: 12px 15px;
        border-radius: 14px;
        background: #f8fafc;
    }

    .booking-features i {
        color: #16a34a;
        font-size: 1rem;
    }

.booking-pricing {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eef2f7;
}

.booking-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

    .booking-price-row span {
        color: #64748b;
        font-size: .9rem;
    }

    .booking-price-row strong {
        color: #0f172a;
        font-size: 1rem;
    }

.booking-total {
    margin-top: 26px;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient( 135deg, rgba(37,99,235,.06), rgba(37,99,235,.12) );
    text-align: center;
}

    .booking-total small {
        display: block;
        color: #64748b;
        font-size: .82rem;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .booking-total span {
        font-size: 1rem;
        font-weight: 600;
        display: block;
        color: #64748b;
        font-size: .85rem;
    }

    .booking-total strong {
        display: block;
        margin: 8px 0;
        font-size: 2.35rem;
        font-weight: 800;
        color: var(--color-primary);
        line-height: 1;
    }

.summary-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 14px;
    background: #fff8e6;
    border: 1px solid #ffe29a;
    border-radius: 999px;
}

    .summary-rating i {
        color: #f7b500;
    }

    .summary-rating strong {
        color: #0f172a;
        font-size: .95rem;
    }

    .summary-rating span {
        color: #64748b;
        font-size: .85rem;
    }

/*.booking-rating-badge {
    position: absolute;
    top: 34px;
    right: 34px;
    background: #fff;
    color: #111827;
    padding: 8px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

    .booking-rating-badge i {
        color: #fbbf24;
    }*/

/* ========================================
   BOOKING SUCCESS MESSAGE
======================================== */
.booking-success-section {
    padding: 80px 0;
}

.booking-success-card {
    width: 100%;
    max-width: 100%;
    margin: auto;
    background: #fff;
    border-radius: 28px;
    padding: 55px 60px;
    box-shadow: 0 20px 60px rgba(15,23,42,.08);
    border: 1px solid #edf2f7;
    text-align: center;
}

.success-icon {
    width: 95px;
    height: 95px;
    margin: auto;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 25px;
    box-shadow: 0 0 0 12px rgba(34,197,94,.12), 0 12px 30px rgba(34,197,94,.25);
}

.success-badge {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: .08em;
    font-size: .75rem;
    margin-bottom: 18px;
}

.booking-success-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

    .booking-success-card h2 span {
        color: var(--primary);
    }

.success-description {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 35px;
}

.success-reference {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 35px;
}

    .success-reference small {
        display: block;
        color: #64748b;
        margin-bottom: 6px;
    }

    .success-reference strong {
        font-size: 1.6rem;
        color: var(--primary);
        letter-spacing: 2px;
    }

.reference-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.copy-reference-btn {
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 1.15rem;
    cursor: pointer;
    padding: 4px;
    transition: .25s;
}

    .copy-reference-btn:hover {
        color: var(--primary);
        transform: scale(1.15);
    }

.success-summary {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.summary-item {
    background: #f8fafc;
    border-radius: 18px;
    padding: 22px;
    text-align: left;
}

    .summary-item span {
        display: block;
        color: #94a3b8;
        font-size: .85rem;
        margin-bottom: 8px;
    }

    .summary-item strong {
        font-size: 1.05rem;
        color: #0f172a;
    }

    .summary-item .price {
        color: var(--primary);
        font-size: 1.4rem;
    }

.success-notes {
    text-align: left;
    margin: 35px 0;
}

    .success-notes div {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: #334155;
    }

    .success-notes i {
        color: #22c55e;
        font-size: 1.2rem;
    }

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-home,
.btn-more {
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.btn-home {
    background: #eef2ff;
    color: var(--primary);
}

.btn-more {
    background: var(--primary);
    color: #fff;
}

    .btn-home:hover,
    .btn-more:hover {
        transform: translateY(-3px);
    }

/* =========================
   REVIEW CARD
============================ */
.review-card {
    border-radius: 24px;
}

.completed-tour-card {
    margin-top: 25px;
    text-align: center;
}

.tour-icon {
    font-size: 2rem;
    color: #198754;
    margin-bottom: 10px;
}

.completed-tour-card h4 {
    margin: 0;
    font-weight: 700;
}

.completed-tour-card p {
    margin-top: 5px;
    color: #6c757d;
}

.verified-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #eef8f2;
    color: #198754;
    font-weight: 600;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.star-rating {
    font-size: 2rem;
    cursor: pointer;
    color: #d9d9d9;
    transition: .3s;
}

    .star-rating.active {
        color: #ffc107;
    }

    .star-rating:hover {
        transform: scale(1.15);
    }

.btn-review {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
}

.rating-text {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    min-height: 24px;
}

/*==================================================
    BOOKING WIZARD
==================================================*/

.booking-wizard-section {
    padding: 90px 0;
    background: #f8fafc;
}

.wizard-card-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.wizard-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 15px 40px rgba(15,23,42,.06);
    transition: .35s;
}

    .wizard-card:hover {
        transform: translateY(-10px);
        border-color: var(--color-primary);
        box-shadow: 0 25px 55px rgba(15,23,42,.12);
    }

    .wizard-card.active {
        border-color: var(--color-primary);
        background: #eff8ff;
    }

.wizard-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--color-primary), var(--color-secondary-accent));
    color: #fff;
    font-size: 2rem;
    margin-bottom: 25px;
}

.wizard-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.wizard-card p {
    color: #64748b;
    line-height: 1.8;
}

.wizard-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.wizard-card li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    color: #475569;
}

    .wizard-card li i {
        color: #16a34a;
    }

.wizard-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}
    .wizard-selection-header h3 {
        margin: 0;
        font-weight: 700;
    }

    .wizard-selection-header p {
        margin: 6px 0 0;
        color: #64748b;
    }

#backButton {
    text-decoration: none;
    font-weight: 600;
}

/*============================
    TOUR GRID
=============================*/


@keyframes fadeSelection {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*==================================================
    TEAM PAGE
==================================================*/

.team-section {
    padding: 100px 0;
}

/*==============================
    GRID
==============================*/

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,300px));
    justify-content: center;
    gap: 35px;
}

/*==============================
    CARD
==============================*/

.team-card {
    width: 300px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
}

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,0,0,.15);
    }

/*==============================
    IMAGE
==============================*/

.team-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

.team-card:hover .team-image img {
    transform: scale(1.08);
}

/*==============================
    DEFAULT INFO
==============================*/

.team-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 25px;
    background: linear-gradient( to top, rgba(0,0,0,.88), transparent);
    transition: .35s;
}

    .team-name h3 {
        color: #fff;
        margin: 0;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .team-name p {
        margin: 6px 0 0;
        color: #d6e8ff;
        font-size: .95rem;
    }

.team-card:hover .team-name {
    opacity: 0;
}

/*==============================
    OVERLAY
==============================*/

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.94), rgba(12, 12, 12, 0.55));
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: .35s;
    padding: 28px;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-info {
    width: 100%;
}

    .team-info h4 {
        color: #fff;
        font-size: 1.45rem;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .team-info span {
        display: block;
        color: var(--color-primary);
        margin-bottom: 18px;
        font-weight: 600;
    }

/*==============================
    BIOGRAPHY
==============================*/

.team-bio {
    color: rgba(255,255,255,.92);
    line-height: 1.8;
    font-size: .93rem;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*==============================
    EMAIL
==============================*/

.team-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: .92rem;
    word-break: break-word;
}

    .team-email i {
        color: var(--color-primary);
    }

/* ======================================================
   DESTINATION DETAILS
====================================================== */

.destination-intro {
    background: #f8fbff;
}

.destination-content {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 45px 55px;
    box-shadow: 0 15px 40px rgba(16,24,40,.06);
}

    /*.destination-content p {
        font-size: 16px;
        line-height: 1.58;
        color: #5d6b82;
        margin-bottom: 16px;
    }

        .destination-content p:last-child {
            margin-bottom: 0;
        }*/

.destination-description {
    font-size: 17px;
    color: #667085;
    line-height: 2;
}

    .destination-description p {
        margin-bottom: 22px;
    }

    .destination-description h2,
    .destination-description h3,
    .destination-description h4 {
        color: #12263f;
        margin-top: 35px;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .destination-description ul {
        padding-left: 22px;
        margin-bottom: 25px;
    }

    .destination-description li {
        margin-bottom: 10px;
    }

    .destination-description img {
        max-width: 100%;
        border-radius: 18px;
        margin: 30px 0;
    }

    .destination-description a {
        color: var(--color-primary);
        text-decoration: none;
    }


/* ======================================================
   STATS
====================================================== */

.destination-divider {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #edf2f7;
}


.destination-overview {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}


.overview-item {
    text-align: center;
    padding: 10px 25px;
    position: relative;
}


    .overview-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15px;
        width: 1px;
        height: 75%;
        background: #edf2f7;
    }


    .overview-item i {
        font-size: 24px;
        color: var(--color-primary);
        margin-bottom: 10px;
    }


    .overview-item h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 2px;
        color: #12233d;
    }


    .overview-item span {
        color: #6b7280;
        font-size: .95rem;
    }

/* ======================================================
   SECTION HEADER
====================================================== */

.section-header {
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-description {
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #64748b;
}


/* ======================================================
   EXPERIENCE HEADER
====================================================== */

.experience-divider {
    position: relative;
}

    .experience-divider::after {
        content: "";
        width: 65px;
        height: 4px;
        border-radius: 50px;
        background: var(--color-primary);
        display: block;
        margin-top: 16px;
    }

    .experience-divider h2 {
        margin-top: 8px;
    }


/* ======================================================
   TOURS + PACKAGES SECTION
====================================================== */

.destination-experience {
    padding-bottom: 90px;
}

.all-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 35px;
}

.about-intro {
    text-align: center;
    margin-bottom: 28px;
}

    .about-intro span {
        display: inline-block;
        color: var(--color-primary);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .about-intro h3 {
        font-size: 34px;
        font-weight: 700;
        color: #10233d;
    }

/* ======================================================
   EMPTY STATE
====================================================== */

.empty-state {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #edf2f7;
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(15,23,42,.05);
}

    .empty-state i {
        font-size: 52px;
        color: var(--color-primary);
        margin-bottom: 20px;
    }

    .empty-state h4 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        color: #10233d;
    }

    .empty-state p {
        color: #6b7280;
        max-width: 500px;
        margin: auto;
        line-height: 1.8;
    }


/* ======================================================
   BUTTONS
====================================================== */

.btn-outline-primary {
    border-radius: 50px;
    padding: .8rem 1.7rem;
    font-weight: 600;
}

.destination-package-section {
    margin-top: 80px;
    padding-top: 90px;
    padding-bottom: 90px;
    background: #f8fbff;
    border-top: 1px solid #edf2f7;
}

.section-divider {
    text-align: center;
    margin-bottom: 60px;
}

    .section-divider span {
        display: inline-block;
        width: 90px;
        height: 4px;
        border-radius: 30px;
        background: linear-gradient( 90deg, var(--color-primary), #5db4ff );
    }


/* ======================================================
   RESPONSIVE
====================================================== */

/*@media(max-width:1200px) {

    .tour-selection-grid {
        grid-template-columns: repeat(2,1fr);
    }
}*/

@media(max-width:768px) {

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .site-logo {
        height: 55px;
    }

    .heroSwiper .swiper-pagination {
        right: 20px !important;
    }

    .features-floating {
        margin-top: -40px;
    }

    .feature-item {
        border-right: none !important;
        border-bottom: 1px solid #eef2f7;
    }

    .destination-featured {
        min-height: 350px;
    }

    .destination-small {
        height: 220px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .page-hero {
        min-height: 520px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 40px 25px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 350px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .all-tours-grid {
        grid-template-columns: 1fr;
    }

    .tours-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    destinations-grid {
        grid-template-columns: 1fr;
    }

    .destinations-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .why-visit-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-day {
        width: 90px;
        min-width: 90px;
        height: 90px;
    }

    .quick-facts-grid {
        grid-template-columns: 1fr;
    }

    .best-time-grid {
        grid-template-columns: 1fr;
    }

    .food-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 2;
    }

    .topbar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .topbar-left {
        flex-direction: column;
        gap: 8px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        height: 420px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 320px;
    }

    .wizard-card-grid {
        grid-template-columns: 1fr;
    }

    .tour-selection-grid {
        grid-template-columns: 1fr;
    }

    .wizard-selection-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-grid {
        grid-template-columns: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .destination-content {
        padding: 25px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .experience-divider {
        margin-bottom: 25px;
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 380px;
    }

    .destination-overview {
        grid-template-columns: repeat(2,1fr);
    }

    .overview-item {
        padding: 30px;
    }

        .overview-item:nth-child(2)::after {
            display: none;
        }

    .package-itinerary-accordion .accordion-button {
        flex-direction: column;
        align-items: flex-start;
    }

    .day-badge {
        width: 70px;
        min-width: 70px;
        height: 70px;
        font-size: .95rem;
    }

    .day-title {
        font-size: 1.1rem;
    }
}

@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .footer-cta-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-us-image img {
        height: 500px;
    }

    .experience-badge {
        right: 10px;
        bottom: 10px;
    }

    .destination-feature {
        height: 350px;
    }

    .destination-feature-overlay h3 {
        font-size: 2.5rem;
    }

    .combo-images {
        min-height: auto;
    }

    .combo-main {
        height: 450px;
    }

    .combo-floating {
        width: 180px;
        height: 220px;
        right: 10px;
        bottom: 10px;
    }

    .combo-content h2 {
        font-size: 2.6rem;
    }

    .combo-banner {
        padding: 90px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .hero-floating-card {
        margin-top: 50px;
    }

    .tour-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 450px;
    }

    .gallery-side img {
        height: 220px;
    }

    .tour-overview-grid {
        grid-template-columns: 1fr;
    }

    .tour-booking-card {
        position: static;
    }

    .tour-highlights,
    .tour-includes {
        grid-template-columns: 1fr;
    }

    .why-visit-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .featured-packages-grid {
        grid-template-columns: 1fr;
    }

    .featured-package-card {
        height: 420px;
    }

    .package-overview-grid {
        grid-template-columns: 1fr;
    }

    .package-booking-card {
        position: static;
    }

    .travel-intro-grid {
        grid-template-columns: 1fr;
    }

    .quick-facts-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        grid-column: auto;
        grid-row: auto;
    }

    .food-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gallery-grid {
        columns: 3;
    }

    .team-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2,300px);
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .destination-content {
        padding: 35px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media(max-width:576px) {

    .gallery-grid {
        columns: 1;
    }

    .destination-overview {
        grid-template-columns: 1fr;
    }

    .overview-item::after {
        display: none;
    }
}

@media (max-width:1200px) {
    .team-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* ======================================================
   TOUR CARD RESPONSIVE
====================================================== */

@media (max-width:768px) {

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        min-height: 420px;
    }

    .all-tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .tour-link {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width:576px) {

    .tour-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

        .tour-meta span {
            font-size: .82rem;
        }

    .tour-price {
        padding: 10px 18px;
    }

        .tour-price strong {
            font-size: 1.05rem;
        }
}

/* ===========================================
   BOOKING PAGE RESPONSIVE
=========================================== */

@media (max-width:1200px) {

    .booking-layout {
        grid-template-columns: 340px 1fr;
        gap: 28px;
    }

    .booking-success-card {
        padding: 45px;
    }
}

@media (max-width:992px) {

    .booking-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .booking-summary {
        position: relative;
        top: auto;
        width: 100%;
        order: 1;
    }

    .booking-form-card {
        width: 100%;
        order: 2;
    }

    .booking-success-card {
        max-width: 100%;
        padding: 40px;
    }

    .success-summary {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {

    .booking-layout {
        gap: 25px;
    }

    .booking-summary {
        border-radius: 22px;
    }

    .booking-form-card {
        padding: 28px;
        border-radius: 22px;
    }

        .booking-form-card h3 {
            font-size: 1.8rem;
        }

    .booking-order-summary {
        padding: 22px;
    }

    .booking-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

        .booking-order-header strong {
            font-size: 2rem;
        }

    .booking-order-sub {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .booking-success-card {
        padding: 35px 25px;
    }

        .booking-success-card h2 {
            font-size: 1.9rem;
        }

    .success-summary {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-home,
    .btn-more {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:576px) {

    .booking-form-card {
        padding: 22px;
    }

    .booking-summary {
        padding-bottom: 10px;
    }

    .summary-image img {
        height: 200px;
        border-radius: 18px;
    }

    .summary-title {
        font-size: 1.8rem;
    }

    .summary-meta {
        gap: 16px;
    }

    .summary-meta-item {
        gap: 14px;
    }

        .summary-meta-item i {
            width: 42px;
            height: 42px;
            font-size: 1rem;
        }

    .guest-selector {
        width: 100%;
    }

        .guest-selector button {
            width: 56px;
            height: 50px;
        }

        .guest-selector input {
            height: 50px;
            font-size: 1.1rem;
        }

    .btn-book-tour {
        width: 100%;
        height: 56px;
        font-size: 1rem;
    }

    .booking-success-card {
        padding: 28px 20px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.4rem;
    }

    .booking-success-card h2 {
        font-size: 1.6rem;
    }

    .success-reference strong {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }
}

@media (max-width:420px) {

    .booking-form-card {
        padding: 18px;
    }

    .booking-order-summary {
        padding: 18px;
    }

    .booking-order-header strong {
        font-size: 1.7rem;
    }

    .summary-title {
        font-size: 1.55rem;
    }

    .summary-meta-item {
        align-items: flex-start;
    }

    .success-reference {
        padding: 16px;
    }

        .success-reference strong {
            font-size: 1.2rem;
        }

    .success-notes div {
        align-items: flex-start;
    }
}

/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 991.98px) {

    /* Fixed navbar */
    .custom-navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
    }

        /* Mobile menu panel */
        .custom-navbar .navbar-collapse {
            position: fixed;
            top: 72px;
            left: 20px;
            right: 20px;
            background: #041b34 !important;
            opacity: 1 !important;
            visibility: visible;
            padding: 12px;
            border-radius: 0 0 16px 16px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
            z-index: 2001;
            /* IMPORTANT:
           usiruhusu content ya nyuma ionekane */
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }

        /* Menu links */
        .custom-navbar .navbar-nav {
            width: 100%;
            margin: 0 !important;
        }

            .custom-navbar .navbar-nav .nav-item {
                width: 100%;
            }

            .custom-navbar .navbar-nav .nav-link {
                display: block;
                width: 100%;
                padding: 11px 14px;
                border-radius: 8px;
                color: #fff !important;
                background: transparent;
            }

                .custom-navbar .navbar-nav .nav-link:hover {
                    background: rgba(255,255,255,.08);
                    color: #fff !important;
                }

                .custom-navbar .navbar-nav .nav-link.active {
                    background: rgba(29,161,242,.18);
                    color: #1da1f2 !important;
                }

        /* Book Now */
        .custom-navbar .btn-book {
            display: block;
            width: 100%;
            text-align: center;
            margin-top: 10px;
        }
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(13, 110, 253, .30);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background-color .25s ease;
    z-index: 999;
}

    .back-to-top:hover {
        background: #0b5ed7;
        transform: translateY(-2px);
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

@media (max-width: 576px) {

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }
}

/* ========================================
   DESTINATIONS - RESPONSIVE
======================================== */

/* Tablet */
@media (max-width: 991.98px) {

    .destinations-section {
        padding: 90px 0;
    }

    .destinations-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .destination-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px 280px;
        gap: 16px;
    }

    /* Zanzibar */
    .destination-item--tall {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    /* Serengeti */
    .destination-item--featured {
        grid-column: 1;
        grid-row: 2 / span 2;
    }

    /* Ngorongoro */
    .destination-item--top {
        grid-column: 2;
        grid-row: 2;
    }

    /* Kilimanjaro */
    .destination-item--bottom {
        grid-column: 2;
        grid-row: 3;
    }

    .destination-overlay {
        padding: 24px;
    }

        .destination-overlay h3 {
            font-size: 1.5rem;
        }
}


/* Mobile */
@media (max-width: 767.98px) {

    .destinations-section {
        padding: 70px 0;
    }

    .destination-masonry {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 14px;
    }

    /* Reset desktop/tablet positioning */
    .destination-item--tall,
    .destination-item--featured,
    .destination-item--top,
    .destination-item--bottom {
        grid-column: auto;
        grid-row: auto;
    }

    .destination-item {
        height: 280px;
        border-radius: 20px;
    }

    .destination-overlay {
        padding: 20px;
    }

        .destination-overlay h3 {
            font-size: 1.4rem;
        }
}


/* Small phones */
@media (max-width: 575.98px) {

    .destinations-section {
        padding: 60px 0;
    }

    .destination-masonry {
        gap: 12px;
    }

    .destination-item {
        height: 240px;
        border-radius: 18px;
    }

    .destination-overlay {
        padding: 18px;
    }

        .destination-overlay h3 {
            font-size: 1.25rem;
        }
}

/* ========================================
   RESPONSIVE HERO / FEATURES SPACING
======================================== */

@media (max-width: 991.98px) {

    .features-floating {
        margin-top: 30px !important;
    }
}

@media (max-width: 767.98px) {

    .features-floating {
        margin-top: 35px !important;
    }
}