/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER
   PREMIUM / STABLE DROPDOWNS / MOBILE FRIENDLY
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CONTACT BAR
========================================================= */

.header-info {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    min-height: 52px;

    padding: 7px 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 28px;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 2000;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 6px 10px;

    color: #fff;

    text-decoration: none;

    font-size: .86rem;
    font-weight: 600;

    border-radius: 999px;

    transition:
        background .2s ease,
        color .2s ease;
}

.contact-item a:hover {
    background: rgba(255, 255, 255, .08);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: fixed;

    top: 52px;
    left: 0;

    width: 100%;

    min-height: 82px;

    padding: 9px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(0, 0, 0, .96);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1500;

    transition:
        min-height .3s ease,
        padding .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.header-scrolled {
    min-height: 68px;

    padding: 7px 32px;

    background: #000;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo img {
    display: block;

    width: 180px;
    height: auto;

    object-fit: contain;

    transition:
        width .3s ease,
        transform .3s ease;
}

.logo:hover img {
    transform: scale(1.015);
}

.header-scrolled .logo img {
    width: 150px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 1;

    min-width: 0;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 4px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.menu-items {
    position: relative;

    list-style: none;

    flex-shrink: 0;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.menu-items > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 8px 10px;

    color: #fff;

    text-decoration: none;

    white-space: nowrap;

    font-size: clamp(.78rem, 1vw, .98rem);

    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease;
}

.menu-items > a:hover {
    color: #aaa;
}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.menu-items > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #fff;

    border-radius: 99px;

    transform: translateX(-50%);

    transition: width .25s ease;
}

.menu-items > a:hover::after {
    width: 55%;
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    /*
       IMPORTANT:
       No 5px gap here.
       The dropdown touches the navigation item.
    */
    top: 100%;
    left: 0;

    width: 250px;

    max-height: 65vh;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 7px 0;

    margin: 0;

    list-style: none;

    background: #fff;

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;

    z-index: 3000;
}


/* =========================================================
   INVISIBLE HOVER BRIDGE
   Prevents dropdown from disappearing while moving
   the mouse from the menu item into the dropdown.
========================================================= */

.sub-menu::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;

    width: 100%;
    height: 10px;

    background: transparent;
}


/* =========================================================
   DESKTOP DROPDOWN OPEN STATE
========================================================= */

@media (min-width: 901px) {

    .menu-items:hover > .sub-menu,
    .menu-items:focus-within > .sub-menu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.sub-menu li {
    position: relative;

    list-style: none;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.sub-menu a {
    display: block;

    width: 100%;

    padding: 11px 17px;

    color: #000 !important;

    text-decoration: none !important;

    font-size: .92rem;

    font-weight: 550;

    line-height: 1.4;

    transition:
        background .2s ease,
        padding-left .2s ease,
        color .2s ease;
}

.sub-menu a:hover {
    background: #f1f1f1;

    padding-left: 22px;
}


/* =========================================================
   DROPDOWN SCROLLBAR
========================================================= */

.sub-menu::-webkit-scrollbar {
    width: 6px;
}

.sub-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: #bbb;

    border-radius: 20px;
}


/* =========================================================
   RIGHT-SIDE DROPDOWN
   Prevents dropdown from leaving the screen.
========================================================= */

@media (min-width: 901px) {

    .menu-items:last-child > .sub-menu {
        left: auto;
        right: 0;
    }

}


/* =========================================================
   HIDE DONATE
   Code can remain in HTML.
========================================================= */

.donate-menu-item {
    display: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 1.65rem;

    line-height: 1;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.menu-toggle::before {
    content: "☰";
}

.menu-toggle.active::before {
    content: "✕";
}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {
    display: none;

    margin-left: auto;

    font-size: .7rem;

    transition: transform .3s ease;
}


/* =========================================================
   HEADER IMAGE / CONTENT AFTER HEADER
========================================================= */

.header-after {
    width: 100%;

    margin-top: 154px;

    overflow: hidden;
}

.header-after img {
    display: block;

    width: 100%;

    height: auto;

    min-height: 280px;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .main-header {
        padding: 8px 22px;

        gap: 18px;
    }

    .main-header.header-scrolled {
        padding: 7px 22px;
    }

    .logo img {
        width: 160px;
    }

    .header-scrolled .logo img {
        width: 145px;
    }

    .menu {
        gap: 2px;
    }

    .menu-items > a {
        padding: 8px 7px;

        font-size: .79rem;
    }

    .sub-menu {
        width: 235px;
    }

    .header-after {
        margin-top: 146px;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 48px;

        padding: 6px 12px;

        gap: 8px;
    }

    .contact-item a {
        font-size: .72rem;

        padding: 5px 8px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 48px;

        min-height: 72px;

        padding: 8px 18px;

        gap: 15px;
    }

    .main-header.header-scrolled {
        min-height: 63px;

        padding: 6px 18px;
    }


    /* LOGO */

    .logo img {
        width: 150px;
    }

    .header-scrolled .logo img {
        width: 140px;
    }


    /* MOBILE BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAVIGATION */

    .navigation {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 120px);

        overflow-y: auto;

        padding: 6px 0 15px;

        background: #fff;

        border-bottom: 2px solid #000;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, .25);

        z-index: 2500;
    }

    .navigation.active {
        display: block;
    }


    /* MOBILE MENU */

    .menu {
        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        width: 100%;
    }


    /* MENU ITEMS */

    .menu-items {
        width: 100%;
    }


    /* MAIN MOBILE LINKS */

    .menu-items > a {
        width: 100%;

        min-height: 56px;

        justify-content: flex-start;

        padding: 14px 20px;

        color: #000;

        background: #fff;

        border-bottom: 1px solid #ededed;

        font-size: .98rem;
    }

    .menu-items > a:hover {
        color: #000;

        background: #f5f5f5;
    }


    /* REMOVE DESKTOP UNDERLINE */

    .menu-items > a::after {
        display: none;
    }


    /* =====================================================
       MOBILE DROPDOWN
    ===================================================== */

    .sub-menu {
        position: static;

        display: none;

        width: 100%;

        max-height: none;

        overflow: visible;

        padding: 0;

        margin: 0;

        border-radius: 0;

        box-shadow: none;

        background: #f6f6f6;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        transition: none;
    }


    /* MOBILE DROPDOWN OPEN */

    .sub-menu.visible {
        display: block;
    }


    /* REMOVE HOVER BRIDGE ON MOBILE */

    .sub-menu::before {
        display: none;
    }


    /* MOBILE SUB LINKS */

    .sub-menu a {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 48px;

        padding: 12px 20px 12px 38px;

        color: #000 !important;

        background: #f6f6f6;

        font-size: .91rem;

        border-bottom: 1px solid #e6e6e6;
    }

    .sub-menu a:hover {
        padding-left: 43px;

        background: #e9e9e9;
    }


    /* DROPDOWN ICON */

    .dropdown-icon {
        display: inline-block;

        margin-left: auto;

        font-size: .7rem;

        color: #000;

        transition: transform .3s ease;
    }

    .menu-items.open .dropdown-icon {
        transform: rotate(180deg);
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 130px;
    }

    .header-after img {
        min-height: 250px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 44px;

        padding: 4px 6px;

        gap: 3px;
    }

    .contact-item a {
        min-height: 32px;

        padding: 4px 6px;

        font-size: .61rem;

        gap: 5px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 44px;

        min-height: 66px;

        padding: 7px 13px;
    }

    .main-header.header-scrolled {
        min-height: 58px;

        padding: 6px 13px;
    }


    /* LOGO */

    .logo img {
        width: 132px;
    }

    .header-scrolled .logo img {
        width: 125px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 1.55rem;
    }


    /* MENU */

    .menu-items > a {
        min-height: 54px;

        padding: 14px 17px;

        font-size: .94rem;
    }


    /* SUB MENU */

    .sub-menu a {
        min-height: 47px;

        padding: 12px 17px 12px 33px;

        font-size: .87rem;
    }

    .sub-menu a:hover {
        padding-left: 38px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 112px;
    }

    .header-after img {
        min-height: 210px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 41px;

        padding: 4px 5px;

        gap: 2px;
    }

    .contact-item a {
        font-size: .55rem;

        padding: 3px 5px;

        gap: 4px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 41px;

        min-height: 62px;

        padding: 6px 10px;
    }

    .main-header.header-scrolled {
        min-height: 55px;

        padding: 5px 10px;
    }


    /* LOGO */

    .logo img {
        width: 118px;
    }

    .header-scrolled .logo img {
        width: 112px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 1.45rem;
    }


    /* MAIN LINKS */

    .menu-items > a {
        min-height: 52px;

        padding: 13px 15px;

        font-size: .9rem;
    }


    /* SUB LINKS */

    .sub-menu a {
        min-height: 47px;

        padding: 11px 15px 11px 30px;

        font-size: .84rem;
    }

    .sub-menu a:hover {
        padding-left: 35px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 104px;
    }

    .header-after img {
        min-height: 180px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 340px) {

    /* CONTACT TEXT */

    .contact-item a span {
        display: none;
    }

    .contact-item a {
        width: 34px;
        height: 30px;

        padding: 0;

        justify-content: center;
    }


    /* LOGO */

    .logo img {
        width: 108px;
    }

    .header-scrolled .logo img {
        width: 104px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 38px;
        height: 38px;
    }
}


/* =========================================================
   ACCESSIBILITY / KEYBOARD
========================================================= */

.menu-items > a:focus-visible,
.sub-menu a:focus-visible,
.menu-toggle:focus-visible,
.contact-item a:focus-visible {
    outline: 2px solid #fff;

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER END
========================================================= */
/* =========================================================
   ADVENTURE LEOPARDS
   BUDDHIST HERITAGE — PREMIUM DESTINATION PAGE
   ========================================================= */

.hunza-section {
    width: 100%;
    padding: 100px 0 130px;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(101, 124, 85, 0.055),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(23, 61, 43, 0.035),
            transparent 32%
        ),
        #f8f8f6;
    box-sizing: border-box;
}

.hunza-container {
    width: min(90%, 1180px);
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   TITLE
   ========================================================= */

.hunza-title {
    position: relative;
    max-width: 950px;
    margin: 0 auto 45px;
    padding: 0 0 25px;
    text-align: center;

    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    font-weight: 700;
    color: #000;
}

.hunza-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 58px;
    height: 2px;
    transform: translateX(-50%);
    background: #525252;
}


/* =========================================================
   IMAGE
   ========================================================= */

.hunza-image-box {
    position: relative;
    width: 100%;
    height: 570px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 20px;
    background: #000;
    box-shadow:
        0 25px 65px rgba(0,0,0,.10),
        0 5px 15px rgba(0,0,0,.04);
}

.hunza-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #525252;
    border-radius: inherit;
    pointer-events: none;
}

.hunza-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:
        brightness(.96)
        contrast(1.04)
        saturate(.94);
    transform: scale(1.01);
    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        filter .8s ease;
}

.hunza-image-box:hover .hunza-image {
    transform: scale(1.035);
    filter:
        brightness(.93)
        contrast(1.05)
        saturate(1);
}


/* =========================================================
   META INFORMATION
   ========================================================= */

.hunza-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;

    margin: 0 auto;
    padding: 24px 30px;

    background: #ffffff;
    border: 1px solid #e4e4e1;
    border-top: none;
    border-radius: 0 0 18px 18px;

    box-shadow: 0 12px 30px rgba(0,0,0,.045);
    box-sizing: border-box;
}

.hunza-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .2px;
    color: #686868;
}

.hunza-meta-item i {
    font-size: 13px;
    color: #657c55;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.hunza-content {
    width: min(100%, 900px);
    margin: 75px auto 0;
    font-family: "Poppins", sans-serif;
}

.hunza-content h3 {
    position: relative;

    margin: 55px 0 18px;
    padding-left: 18px;

    font-size: clamp(23px, 2.5vw, 30px);
    line-height: 1.25;
    letter-spacing: -.5px;
    font-weight: 700;
    color: #173d2b;
}

.hunza-content h3:first-child {
    margin-top: 0;
}

.hunza-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: calc(100% - 8px);
    border-radius: 5px;
    background: #657c55;
}


/* =========================================================
   PARAGRAPHS
   ========================================================= */

.hunza-content p {
    margin: 0 0 22px;

    font-size: 15px;
    line-height: 1.95;
    font-weight: 400;
    color: #656565;
}


/* =========================================================
   HERITAGE LIST
   ========================================================= */

.hunza-content ul {
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.hunza-content li {
    position: relative;

    margin-bottom: 15px;
    padding: 0 0 15px 27px;

    font-size: 14.5px;
    line-height: 1.8;
    color: #656565;

    border-bottom: 1px solid #e5e5e2;
}

.hunza-content li:last-child {
    border-bottom: none;
}

.hunza-content li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 10px;

    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #657c55;
}

.hunza-content li strong {
    color: #173d2b;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hunza-section {
        padding: 80px 0 105px;
    }

    .hunza-container {
        width: 90%;
    }

    .hunza-title {
        font-size: 46px;
        letter-spacing: -1.2px;
        margin-bottom: 38px;
    }

    .hunza-image-box {
        height: 470px;
    }

    .hunza-content {
        margin-top: 60px;
    }

    .hunza-content p {
        font-size: 14px;
        line-height: 1.85;
    }

    .hunza-content li {
        font-size: 14px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hunza-section {
        padding: 60px 0 80px;
    }

    .hunza-container {
        width: 92%;
    }

    .hunza-title {
        font-size: 32px;
        line-height: 1.12;
        letter-spacing: -.8px;
        margin-bottom: 30px;
        padding-bottom: 19px;
    }

    .hunza-title::after {
        width: 45px;
    }

    .hunza-image-box {
        height: 300px;
        border-radius: 15px;
    }

    .hunza-meta {
        gap: 16px;
        padding: 19px 15px;
        border-radius: 0 0 14px 14px;
    }

    .hunza-meta-item {
        font-size: 10px;
    }

    .hunza-meta-item i {
        font-size: 11px;
    }

    .hunza-content {
        margin-top: 45px;
    }

    .hunza-content h3 {
        margin: 42px 0 15px;
        padding-left: 14px;
        font-size: 22px;
    }

    .hunza-content h3::before {
        width: 2px;
    }

    .hunza-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .hunza-content li {
        padding-left: 23px;
        margin-bottom: 13px;
        padding-bottom: 13px;
        font-size: 12.5px;
        line-height: 1.75;
    }

    .hunza-content li::before {
        width: 6px;
        height: 6px;
        top: 9px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

    .hunza-title {
        font-size: 28px;
    }

    .hunza-image-box {
        height: 250px;
    }

    .hunza-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
    }

    .hunza-content h3 {
        font-size: 20px;
    }

    .hunza-content p {
        font-size: 12px;
    }

    .hunza-content li {
        font-size: 12px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hunza-image {
        transition: none;
    }
}
/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM EXPEDITION SECTION
   Black • White • Deep Green
========================================================= */

.expedition-small {
    position: relative;
    padding: 110px 20px;
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at 50% 0%, rgba(24, 73, 48, 0.18), transparent 38%),
        linear-gradient(180deg, #030303 0%, #000 55%, #050505 100%);
    color: #fff;
    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.expedition-small::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(42, 110, 72, 0.08);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.expedition-small::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    opacity: 0.25;
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.exp-small-container {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}


/* =========================================================
   IMAGE BOX
========================================================= */

.exp-small-image-box {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 22px;
    margin-bottom: 38px;
    background: #111;

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.65),
        0 0 0 1px rgba(255,255,255,0.025);
}


/* Cinematic image overlay */

.exp-small-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.03) 30%,
            rgba(0,0,0,0.32) 100%
        );
    pointer-events: none;
}


/* Image */

.exp-small-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.65,.3,1),
        filter 0.6s ease;
}


/* Premium hover */

.exp-small-image-box:hover .exp-small-img {
    transform: scale(1.035);
    filter: brightness(1.04) contrast(1.03);
}


/* =========================================================
   TITLE
========================================================= */

.exp-small-title {
    position: relative;
    margin: 0 0 24px;

    text-align: center;

    font-size: clamp(2.2rem, 5vw, 3.35rem);
    line-height: 1.12;
    font-weight: 800;

    letter-spacing: -1.5px;

    color: #fff;

    text-shadow:
        0 8px 30px rgba(0,0,0,0.45);
}


/* Green premium line under title */

.exp-small-title::after {
    content: "";
    display: block;

    width: 55px;
    height: 3px;

    margin: 18px auto 0;

    border-radius: 20px;

    background: #4f9f6d;
}


/* =========================================================
   META INFORMATION
========================================================= */

.exp-small-meta {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px 34px;
    flex-wrap: wrap;

    margin-bottom: 50px;
    padding-bottom: 32px;

    border-bottom: 1px solid rgba(255,255,255,0.09);
}


.exp-small-meta-item {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #bdbdbd;

    font-size: 0.95rem;
    font-weight: 500;

    letter-spacing: 0.15px;
}


.exp-small-meta-item i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    color: #72b68a;

    background: rgba(79,159,109,0.1);

    font-size: 0.9rem;

    border: 1px solid rgba(79,159,109,0.16);
}


/* =========================================================
   CONTENT
========================================================= */

.exp-small-content {
    max-width: 820px;
    margin: 0 auto;
}


/* =========================================================
   HEADINGS
========================================================= */

.exp-small-content h2 {
    position: relative;

    margin: 48px 0 16px;

    padding-left: 18px;

    color: #fff;

    font-size: 1.55rem;
    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.3px;
}


/* Small green accent */

.exp-small-content h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: 4px;

    width: 3px;
    height: 23px;

    border-radius: 10px;

    background: #4f9f6d;
}


.exp-small-content h2:first-child {
    margin-top: 0;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.exp-small-content p {
    margin: 0 0 20px;

    color: #c7c7c7;

    font-size: 1.04rem;
    line-height: 1.9;

    font-weight: 400;
}


/* =========================================================
   HIGHLIGHTS LIST
========================================================= */

.exp-small-content ul {
    list-style: none;

    margin: 24px 0 10px;
    padding: 0;
}


.exp-small-content ul li {
    position: relative;

    margin-bottom: 13px;
    padding: 15px 18px 15px 45px;

    color: #d0d0d0;

    font-size: 1rem;
    line-height: 1.65;

    background: rgba(255,255,255,0.025);

    border: 1px solid rgba(255,255,255,0.055);

    border-radius: 10px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* Green check */

.exp-small-content ul li::before {
    content: "✓";

    position: absolute;
    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: #6db487;

    font-size: 0.95rem;
    font-weight: 700;
}


/* List hover */

.exp-small-content ul li:hover {
    transform: translateX(4px);

    background: rgba(79,159,109,0.055);

    border-color: rgba(79,159,109,0.18);
}


/* =========================================================
   FINAL PARAGRAPH / BOTTOM SPACE
========================================================= */

.exp-small-content h2:last-of-type {
    margin-top: 52px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .expedition-small {
        padding: 85px 20px;
    }

    .exp-small-image-box {
        height: 380px;
        border-radius: 18px;
    }

    .exp-small-title {
        font-size: 2.5rem;
    }

    .exp-small-meta {
        margin-bottom: 42px;
    }

    .exp-small-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .expedition-small {
        padding: 65px 16px;
    }


    .exp-small-container {
        width: 100%;
    }


    .exp-small-image-box {
        height: 250px;

        margin-bottom: 28px;

        border-radius: 15px;
    }


    .exp-small-title {
        font-size: 2rem;

        letter-spacing: -0.8px;

        margin-bottom: 20px;
    }


    .exp-small-title::after {
        width: 45px;
        height: 2px;

        margin-top: 14px;
    }


    .exp-small-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 13px;

        margin-bottom: 36px;
        padding-bottom: 25px;
    }


    .exp-small-meta-item {
        font-size: 0.9rem;
    }


    .exp-small-meta-item i {
        width: 29px;
        height: 29px;

        font-size: 0.8rem;
    }


    .exp-small-content h2 {
        font-size: 1.35rem;

        margin-top: 38px;
        margin-bottom: 13px;

        padding-left: 14px;
    }


    .exp-small-content h2::before {
        width: 3px;
        height: 20px;
    }


    .exp-small-content p {
        font-size: 0.96rem;

        line-height: 1.8;

        margin-bottom: 17px;
    }


    .exp-small-content ul {
        margin-top: 18px;
    }


    .exp-small-content ul li {
        padding: 13px 14px 13px 40px;

        margin-bottom: 9px;

        font-size: 0.94rem;

        line-height: 1.55;
    }


    .exp-small-content ul li::before {
        left: 14px;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 380px) {

    .expedition-small {
        padding: 55px 13px;
    }

    .exp-small-image-box {
        height: 220px;
    }

    .exp-small-title {
        font-size: 1.75rem;
    }

    .exp-small-content p {
        font-size: 0.92rem;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .exp-small-img,
    .exp-small-content ul li {
        transition: none;
    }

    .exp-small-image-box:hover .exp-small-img {
        transform: none;
    }

    .exp-small-content ul li:hover {
        transform: none;
    }

}


/* =========================================================
   EXPEDITION END
========================================================= */
/* =========================================
   ADVENTURE LEOPARDS — PREMIUM BLACK FOOTER
========================================= */

.premium-footer {
    position: relative;
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(209, 209, 209, 0.7);
}

.footer-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    padding-top: 75px;
}

/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 1fr;
    gap: 80px;
    padding-bottom: 65px;
}

/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-brand h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-description {
    max-width: 480px;
    margin: 0 0 22px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================
   DISCOVER LINK
========================================= */

.footer-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-explore span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-explore:hover {
    color: #ccc;
}

.footer-explore:hover span {
    transform: translateX(4px);
    border-color: #fff;
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    position: relative;
    margin: 5px 0 25px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #fff;
}

/* =========================================
   MENU LINKS
========================================= */

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact > p {
    max-width: 280px;
    margin: 0 0 20px;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

.footer-email,
.footer-website {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-email:hover,
.footer-website:hover {
    color: #fff;
}

/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 85px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: #000;
    border: 1px solid #333;
    border-radius: 50%;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer-container {
        width: 88%;
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-logo {
        width: 95px;
    }

    .footer-brand h2 {
        font-size: 30px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }

    .footer-socials {
        gap: 7px;
    }

    .footer-socials a {
        width: 35px;
        height: 35px;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .footer-container {
        width: 86%;
    }

    .footer-brand h2 {
        font-size: 27px;
    }

    .footer-description {
        font-size: 12.5px;
    }
}