/* =========================================================
   ADVENTURE LEOPARDS
   RESPONSIVE HEADER
   PREMIUM / STABLE DROPDOWNS / MOBILE FRIENDLY
   FULL RESPONSIVE VERSION
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


body {
    margin: 0;

    background: #000000;
    color: #ffffff;

    overflow-x: hidden;

    font-family: "Poppins", sans-serif;

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


img {
    display: block;

    max-width: 100%;
    height: auto;
}


button,
a,
input,
select,
textarea {
    font: inherit;
}


button {
    border: 0;
}


a {
    -webkit-tap-highlight-color: transparent;
}


body {
    min-width: 280px;
}


/* =========================================================
   CONTACT BAR
========================================================= */

.header-info {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 2000;

    width: 100%;

    min-height: 52px;

    padding: 7px 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 28px;

    background: #000000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: #ffffff;

    isolation: isolate;
}


/* Contact item */

.contact-item {
    display: flex;

    align-items: center;

    min-width: 0;
}


/* Contact link */

.contact-item a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 34px;

    padding: 6px 10px;

    color: #ffffff;

    background: transparent;

    border: 1px solid transparent;

    border-radius: 999px;

    text-decoration: none;

    white-space: nowrap;

    font-size: 0.86rem;

    font-weight: 600;

    line-height: 1.2;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.contact-item a:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.08);
}


.contact-item a:active {
    transform: scale(0.98);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: fixed;

    top: 52px;
    left: 0;

    z-index: 1500;

    width: 100%;

    min-height: 82px;

    padding: 9px 32px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(0, 0, 0, 0.96);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        min-height 0.3s ease,
        padding 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.header-scrolled {
    min-height: 68px;

    padding: 7px 32px;

    background: #000000;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    flex: 0 0 auto;

    min-width: 0;

    text-decoration: none;
}


.logo img {
    display: block;

    width: 180px;

    max-width: 100%;

    height: auto;

    object-fit: contain;

    transition:
        width 0.3s ease,
        transform 0.3s ease;
}


.logo:hover img {
    transform: scale(1.015);
}


.header-scrolled .logo img {
    width: 150px;
}


/* Keyboard focus */

.logo:focus-visible {
    outline: 2px solid #ffffff;

    outline-offset: 5px;

    border-radius: 4px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    flex: 1 1 auto;

    min-width: 0;

    min-height: 100%;
}


.menu {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.menu-items {
    position: relative;

    list-style: none;

    flex: 0 0 auto;
}


/* =========================================================
   MAIN NAV LINKS
========================================================= */

.menu-items > a {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 8px 10px;

    color: #ffffff;

    background: transparent;

    border-radius: 6px;

    text-decoration: none;

    white-space: nowrap;

    font-size: clamp(0.78rem, 1vw, 0.98rem);

    font-weight: 600;

    line-height: 1.2;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


.menu-items > a:hover {
    color: #aaaaaa;
}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.menu-items > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #ffffff;

    border-radius: 99px;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}


.menu-items > a:hover::after,
.menu-items > a:focus-visible::after {
    width: 55%;
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    top: calc(100% + 0px);
    left: 0;

    z-index: 3000;

    width: 250px;

    max-width: min(250px, calc(100vw - 30px));

    max-height: min(65vh, 520px);

    overflow-x: hidden;
    overflow-y: auto;

    margin: 0;
    padding: 7px 0;

    list-style: none;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;

    overscroll-behavior: contain;

    -webkit-overflow-scrolling: touch;
}


/* =========================================================
   INVISIBLE HOVER BRIDGE
========================================================= */

.sub-menu::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;

    width: 100%;
    height: 10px;

    background: transparent;
}


/* =========================================================
   DESKTOP DROPDOWN OPEN
========================================================= */

@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;

    width: 100%;

    list-style: none;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.sub-menu a {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 44px;

    padding: 10px 17px;

    color: #000000 !important;

    background: transparent;

    text-decoration: none !important;

    font-size: 0.92rem;

    font-weight: 550;

    line-height: 1.4;

    transition:
        background-color 0.2s ease,
        padding-left 0.2s ease,
        color 0.2s ease;
}


.sub-menu a:hover {
    color: #000000 !important;

    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: #bbbbbb;

    border-radius: 20px;
}


.sub-menu {
    scrollbar-width: thin;

    scrollbar-color: #bbbbbb #f5f5f5;
}


/* =========================================================
   RIGHT-SIDE DROPDOWN
========================================================= */

@media (min-width: 901px) {

    .menu-items:last-child > .sub-menu {
        left: auto;

        right: 0;
    }

}


/* =========================================================
   HIDE DONATE
========================================================= */

.donate-menu-item {
    display: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    padding: 0;

    color: #ffffff;

    background: transparent;

    border: 1px solid transparent;

    border-radius: 8px;

    cursor: pointer;

    font-size: 1.65rem;

    line-height: 1;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.10);
}


.menu-toggle:active {
    transform: scale(0.96);
}


.menu-toggle::before {
    content: "☰";
}


.menu-toggle.active::before {
    content: "✕";
}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {
    display: none;

    margin-left: auto;

    font-size: 0.7rem;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


/* =========================================================
   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: 0.79rem;
    }


    .sub-menu {
        width: 235px;
    }


    .header-after {
        margin-top: 146px;
    }

}


/* =========================================================
   SMALL LAPTOP SAFETY
   Keeps navigation from getting cramped.
========================================================= */

@media (max-width: 1050px) and (min-width: 901px) {

    .header-info {
        gap: 15px;

        padding-left: 15px;
        padding-right: 15px;
    }


    .contact-item a {
        font-size: 0.76rem;

        padding-left: 7px;
        padding-right: 7px;
    }


    .main-header {
        padding-left: 17px;
        padding-right: 17px;

        gap: 14px;
    }


    .logo img {
        width: 145px;
    }


    .menu {
        gap: 0;
    }


    .menu-items > a {
        padding-left: 6px;
        padding-right: 6px;

        font-size: 0.72rem;
    }

}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    /* =============================================
       CONTACT BAR
    ============================================= */

    .header-info {
        min-height: 48px;

        padding: 6px 12px;

        gap: 8px;
    }


    .contact-item {
        min-width: 0;
    }


    .contact-item a {
        min-height: 32px;

        padding: 5px 8px;

        font-size: 0.72rem;
    }


    /* =============================================
       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-x: hidden;
        overflow-y: auto;

        padding: 6px 0 15px;

        background: #ffffff;

        border-bottom: 2px solid #000000;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, 0.25);

        z-index: 2500;

        -webkit-overflow-scrolling: touch;

        overscroll-behavior: contain;
    }


    .navigation.active {
        display: block;
    }


    /* =============================================
       MOBILE MENU
    ============================================= */

    .menu {
        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        width: 100%;
    }


    .menu-items {
        width: 100%;
    }


    /* =============================================
       MAIN MOBILE LINKS
    ============================================= */

    .menu-items > a {
        width: 100%;

        min-height: 56px;

        justify-content: flex-start;

        padding: 14px 20px;

        color: #000000;

        background: #ffffff;

        border-bottom: 1px solid #ededed;

        border-radius: 0;

        font-size: 0.98rem;
    }


    .menu-items > a:hover {
        color: #000000;

        background: #f5f5f5;
    }


    /* =============================================
       REMOVE DESKTOP UNDERLINE
    ============================================= */

    .menu-items > a::after {
        display: none;
    }


    /* =============================================
       MOBILE DROPDOWN
    ============================================= */

    .sub-menu {
        position: static;

        display: none;

        width: 100%;

        max-width: none;

        max-height: none;

        overflow: visible;

        padding: 0;

        margin: 0;

        background: #f6f6f6;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        transition: none;
    }


    /* =============================================
       MOBILE DROPDOWN OPEN
    ============================================= */

    .sub-menu.visible {
        display: block;
    }


    /* =============================================
       REMOVE DESKTOP BRIDGE
    ============================================= */

    .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: #000000 !important;

        background: #f6f6f6;

        border-bottom: 1px solid #e6e6e6;

        font-size: 0.91rem;
    }


    .sub-menu a:hover {
        padding-left: 43px;

        color: #000000 !important;

        background: #e9e9e9;
    }


    /* =============================================
       DROPDOWN ICON
    ============================================= */

    .dropdown-icon {
        display: inline-block;

        margin-left: auto;

        color: #000000;

        font-size: 0.7rem;

        transition:
            transform 0.3s ease;
    }


    .menu-items.open .dropdown-icon {
        transform: rotate(180deg);
    }


    /* =============================================
       HEADER IMAGE
    ============================================= */

    .header-after {
        margin-top: 130px;
    }


    .header-after img {
        min-height: 250px;
    }

}


/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media (max-width: 768px) and (min-width: 601px) {

    .header-info {
        min-height: 46px;

        gap: 6px;

        padding:
            5px
            10px;
    }


    .contact-item a {
        font-size: 0.68rem;

        padding:
            5px
            7px;
    }


    .main-header {
        top: 46px;

        min-height: 68px;

        padding:
            7px
            16px;
    }


    .main-header.header-scrolled {
        min-height: 60px;

        padding:
            6px
            16px;
    }


    .logo img {
        width: 142px;
    }


    .header-scrolled .logo img {
        width: 134px;
    }


    .header-after {
        margin-top: 114px;
    }

}


/* =========================================================
   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: 0.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 TOGGLE
    ============================================= */

    .menu-toggle {
        width: 42px;

        height: 42px;

        flex-basis: 42px;

        font-size: 1.55rem;
    }


    /* =============================================
       MOBILE MAIN LINKS
    ============================================= */

    .menu-items > a {
        min-height: 54px;

        padding:
            14px
            17px;

        font-size: 0.94rem;
    }


    /* =============================================
       MOBILE SUBMENU
    ============================================= */

    .sub-menu a {
        min-height: 47px;

        padding:
            12px
            17px
            12px
            33px;

        font-size: 0.87rem;
    }


    .sub-menu a:hover {
        padding-left: 38px;
    }


    /* =============================================
       HEADER IMAGE
    ============================================= */

    .header-after {
        margin-top: 112px;
    }


    .header-after img {
        min-height: 210px;
    }

}


/* =========================================================
   MOBILE LANDSCAPE / SHORT SCREENS
========================================================= */

@media (max-width: 900px) and (orientation: landscape) {

    .navigation {
        max-height: calc(100vh - 100px);
    }


    .menu-items > a {
        min-height: 48px;

        padding-top: 11px;
        padding-bottom: 11px;
    }


    .sub-menu a {
        min-height: 42px;

        padding-top: 9px;
        padding-bottom: 9px;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    /* =============================================
       CONTACT BAR
    ============================================= */

    .header-info {
        min-height: 41px;

        padding:
            4px
            5px;

        gap: 2px;
    }


    .contact-item a {
        min-height: 29px;

        padding:
            3px
            5px;

        font-size: 0.55rem;

        gap: 4px;
    }


    /* =============================================
       HEADER
    ============================================= */

    .main-header {
        top: 41px;

        min-height: 62px;

        padding:
            6px
            10px;

        gap: 8px;
    }


    .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;

        flex-basis: 40px;

        font-size: 1.45rem;
    }


    /* =============================================
       MAIN MOBILE LINKS
    ============================================= */

    .menu-items > a {
        min-height: 52px;

        padding:
            13px
            15px;

        font-size: 0.90rem;
    }


    /* =============================================
       SUB LINKS
    ============================================= */

    .sub-menu a {
        min-height: 47px;

        padding:
            11px
            15px
            11px
            30px;

        font-size: 0.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 BAR
       Icons remain visible but text can hide.
    ============================================= */

    .contact-item a span {
        display: none;
    }


    .contact-item a {
        width: 34px;

        height: 30px;

        min-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;

        flex-basis: 38px;
    }


    /* =============================================
       HEADER
    ============================================= */

    .main-header {
        padding-left: 8px;

        padding-right: 8px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.menu-items > a:focus-visible,
.sub-menu a:focus-visible,
.menu-toggle:focus-visible,
.contact-item a:focus-visible {
    outline: 2px solid #ffffff;

    outline-offset: 3px;
}


/* Mobile navigation has black links on white */

@media (max-width: 900px) {

    .menu-items > a:focus-visible,
    .sub-menu a:focus-visible {
        outline-color: #000000;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .menu-items > a:hover::after {
        width: 0;
    }


    .logo:hover img {
        transform: none;
    }


    .contact-item a:hover {
        background: transparent;

        border-color: transparent;
    }


    .menu-toggle:hover {
        background: transparent;

        border-color: transparent;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}

/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER END
========================================================= */
/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM DESTINATION SECTION
========================================================= */


/* =========================================================
   DESTINATIONS SECTION
========================================================= */

.destinations {
    position: relative;

    width: 100%;

    padding: 95px 0 125px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(0, 0, 0, 0.025),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(0, 0, 0, 0.02),
            transparent 32%
        ),
        #f8f8f7;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   DESTINATION HEADER
   STRICTLY STACKED
========================================================= */

.destinations-heading {
    width: min(90%, 900px);

    margin: 0 auto 65px;

    padding: 0;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   EYEBROW
   ADVENTURE LEOPARDS
========================================================= */

.destinations-eyebrow {
    position: relative;

    display: block;

    width: fit-content;

    margin: 0 auto 15px;

    padding: 0;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: #657c55;

    cursor: default;

    transition:
        color 0.3s ease,
        letter-spacing 0.3s ease;
}


/* Small line before eyebrow */

.destinations-eyebrow::before {
    content: "";

    display: inline-block;

    width: 24px;
    height: 1px;

    margin-right: 10px;

    vertical-align: middle;

    background: #657c55;

    transition:
        width 0.35s ease,
        background-color 0.35s ease;
}


/* Small line after eyebrow */

.destinations-eyebrow::after {
    content: "";

    display: inline-block;

    width: 24px;
    height: 1px;

    margin-left: 10px;

    vertical-align: middle;

    background: #657c55;

    transition:
        width 0.35s ease,
        background-color 0.35s ease;
}


/* Eyebrow hover */

.destinations-heading:hover .destinations-eyebrow {
    color: #1d5c3b;

    letter-spacing: 4.2px;
}

.destinations-heading:hover .destinations-eyebrow::before,
.destinations-heading:hover .destinations-eyebrow::after {
    width: 32px;

    background: #1d5c3b;
}


/* =========================================================
   MAIN DESTINATION TITLE
   ALWAYS BELOW EYEBROW
========================================================= */

.destinations-heading h1 {
    position: relative;

    display: block;

    width: 100%;

    margin: 0;

    padding: 0;

    font-family: "Poppins", sans-serif;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.8px;

    color: #173d2b;

    cursor: pointer;

    transition:
        color 0.35s ease,
        letter-spacing 0.4s ease,
        text-shadow 0.35s ease;
}


/* Title hover */

.destinations-heading h1:hover {
    color: #1d5c3b;

    letter-spacing: -1.45px;

    text-shadow:
        0 8px 22px rgba(29, 92, 59, 0.10);
}


/* =========================================================
   TITLE UNDERLINE
========================================================= */

.destinations-heading h1::after {
    content: "";

    display: block;

    width: 55px;

    height: 2px;

    margin: 23px auto 21px;

    background: #657c55;

    border-radius: 20px;

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1),
        background-color 0.3s ease;
}


.destinations-heading h1:hover::after {
    width: 90px;

    background: #1d5c3b;
}


/* =========================================================
   DESTINATION INTRO TEXT
========================================================= */

.destinations-heading p {
    display: block;

    width: 100%;

    max-width: 720px;

    margin: 0 auto;

    padding: 0;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.9;

    font-weight: 400;

    color: #707070;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


/* Intro hover */

.destinations-heading p:hover {
    color: #294638;

    transform: translateY(-2px);
}


/* =========================================================
   DESTINATION GRID
========================================================= */

.destination-grid {
    position: relative;

    z-index: 2;

    width: min(90%, 1380px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 42px;

    box-sizing: border-box;
}


/* =========================================================
   DESTINATION CARD
========================================================= */

.destination-card {
    position: relative;

    min-width: 0;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fcfcfc 55%,
            #f5f5f4 100%
        );

    border: 1px solid #e3e3e1;

    border-radius: 20px;

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.055),
        0 3px 10px rgba(0, 0, 0, 0.025);

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform 0.45s cubic-bezier(.16, 1, .3, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* Card hover */

.destination-card:hover {
    transform: translateY(-7px);

    border-color: #d5d5d3;

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.10),
        0 5px 16px rgba(0, 0, 0, 0.035);
}


/* =========================================================
   IMAGE
========================================================= */

.destination-image {
    position: relative;

    display: block;

    width: 100%;

    height: 355px;

    overflow: hidden;

    background: #111111;

    text-decoration: none;

    box-sizing: border-box;
}


/* Image overlay */

.destination-image::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.01) 0%,
            transparent 45%,
            rgba(0, 0, 0, 0.38) 100%
        );

    pointer-events: none;
}


/* Image frame */

.destination-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 3;

    border: 1px solid rgba(255, 255, 255, 0.15);

    pointer-events: none;
}


/* Image itself */

.destination-image img {
    display: block;

    width: 100%;

    height: 100%;

    margin: 0;

    padding: 0;

    object-fit: cover;

    object-position: center;

    transform: scale(1.01);

    filter:
        brightness(0.97)
        contrast(1.03)
        saturate(0.94);

    box-sizing: border-box;

    transition:
        transform 1s cubic-bezier(.16, 1, .3, 1),
        filter 0.8s ease;
}


.destination-card:hover .destination-image img {
    transform: scale(1.055);

    filter:
        brightness(0.93)
        contrast(1.04)
        saturate(0.99);
}


/* =========================================================
   LOCATION
========================================================= */

.destination-location {
    position: absolute;

    left: 25px;

    bottom: 22px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color: #ffffff;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}


.destination-location i {
    font-size: 9px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.destination-location:hover {
    color: #ffffff;

    transform: translateX(4px);

    letter-spacing: 1.9px;
}


.destination-location:hover i {
    color: #9fbaa9;

    transform: scale(1.12);
}


/* =========================================================
   CONTENT
========================================================= */

.destination-content {
    position: relative;

    z-index: 4;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    padding: 30px 32px 34px;

    box-sizing: border-box;
}


/* =========================================================
   LABEL
========================================================= */

.destination-label {
    display: block;

    width: fit-content;

    margin-bottom: 9px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #999999;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}


.destination-label:hover {
    color: #1d5c3b;

    transform: translateX(4px);

    letter-spacing: 3.2px;
}


/* =========================================================
   DESTINATION TITLE
========================================================= */

.destination-content h2 {
    position: relative;

    display: inline-block;

    width: fit-content;

    max-width: 100%;

    margin: 0 0 12px;

    padding: 0;

    font-family: "Poppins", sans-serif;

    font-size: clamp(32px, 3vw, 43px);

    line-height: 1.08;

    letter-spacing: -1px;

    font-weight: 700;

    color: #111111;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s cubic-bezier(.2, .7, .2, 1),
        letter-spacing 0.35s ease,
        text-shadow 0.35s ease;
}


/* Destination title underline */

.destination-content h2::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: #1d5c3b;

    border-radius: 20px;

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1);
}


/* Title hover */

.destination-content h2:hover {
    color: #1d5c3b;

    transform: translateX(5px);

    letter-spacing: -0.7px;

    text-shadow:
        0 7px 20px rgba(29, 92, 59, 0.12);
}


.destination-content h2:hover::after {
    width: 100%;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.destination-content p {
    display: block;

    width: min(100%, 470px);

    margin: 0;

    padding: 0;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #686868;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s cubic-bezier(.2, .7, .2, 1);
}


.destination-content p:hover {
    color: #1d5c3b;

    transform: translateX(5px);
}


/* Card hover slightly deepens description */

.destination-card:hover .destination-content p {
    color: #4f6559;
}


/* Direct paragraph hover wins */

.destination-content p:hover {
    color: #1d5c3b;
}


/* =========================================================
   DESTINATION LINK
========================================================= */

.destination-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    margin-bottom: 3px;

    padding-bottom: 8px;

    border-bottom: 1px solid #c7c7c7;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.5px;

    color: #111111;

    text-decoration: none;

    cursor: pointer;

    transition:
        gap 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.destination-link i {
    font-size: 9px;

    transition:
        transform 0.3s ease;
}


.destination-link:hover {
    gap: 16px;

    color: #1d5c3b;

    border-color: #1d5c3b;

    transform: translateY(-2px);
}


.destination-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   HEADING INTERACTIONS WITH CARD
========================================================= */

.destination-card:has(.destination-content h2:hover) {
    border-color: #cad9d0;

    box-shadow:
        0 27px 68px rgba(29, 92, 59, 0.085),
        0 5px 18px rgba(0, 0, 0, 0.035);
}


.destination-card:has(.destination-content h2:hover)
.destination-image img {
    transform: scale(1.04);
}


.destination-card:has(.destination-content p:hover) {
    border-color: #d2ddd6;
}


.destination-card:has(.destination-content p:hover)
.destination-image img {
    transform: scale(1.035);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .destinations {
        padding: 110px 0 145px;
    }


    .destinations-heading {
        margin-bottom: 75px;
    }


    .destination-grid {
        width: min(88%, 1480px);

        gap: 50px;
    }


    .destination-image {
        height: 385px;
    }


    .destination-content {
        padding: 34px 36px 38px;
    }


    .destination-content h2 {
        font-size: 46px;
    }


    .destination-content p {
        font-size: 14.5px;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .destinations {
        padding: 80px 0 110px;
    }


    .destinations-heading {
        width: 90%;

        margin-bottom: 55px;
    }


    .destination-grid {
        width: 90%;

        gap: 32px;
    }


    .destination-image {
        height: 320px;
    }


    .destination-content {
        padding: 27px 28px 31px;

        gap: 20px;
    }


    .destination-content h2 {
        font-size: 35px;
    }


    .destination-content p {
        font-size: 13px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .destinations-heading {
        width: 90%;

        margin-bottom: 50px;
    }


    .destinations-eyebrow {
        font-size: 9px;

        letter-spacing: 3.5px;
    }


    .destinations-heading h1 {
        font-size: 43px;

        letter-spacing: -1.2px;
    }


    .destinations-heading p {
        font-size: 13.5px;

        line-height: 1.8;
    }


    .destinations {
        padding: 70px 0 95px;
    }


    .destination-grid {
        width: 90%;

        max-width: 700px;

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .destination-image {
        height: 380px;
    }


    .destination-content {
        padding: 29px 30px 34px;
    }


    .destination-content h2 {
        font-size: 38px;
    }


    .destination-content p {
        font-size: 13.5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .destinations {
        padding: 55px 0 75px;
    }


    .destinations-heading {
        width: 92%;

        margin-bottom: 40px;
    }


    .destinations-eyebrow {
        margin-bottom: 11px;

        font-size: 8px;

        letter-spacing: 3px;
    }


    .destinations-eyebrow::before,
    .destinations-eyebrow::after {
        width: 17px;
    }


    .destinations-heading:hover .destinations-eyebrow::before,
    .destinations-heading:hover .destinations-eyebrow::after {
        width: 23px;
    }


    .destinations-heading h1 {
        font-size: 32px;

        line-height: 1.12;

        letter-spacing: -0.8px;
    }


    .destinations-heading h1:hover {
        letter-spacing: -0.6px;
    }


    .destinations-heading h1::after {
        width: 45px;

        height: 2px;

        margin: 17px auto 17px;
    }


    .destinations-heading h1:hover::after {
        width: 70px;
    }


    .destinations-heading p {
        font-size: 12px;

        line-height: 1.75;
    }


    .destination-grid {
        width: 92%;

        gap: 25px;
    }


    .destination-card {
        border-radius: 17px;
    }


    .destination-image {
        height: 270px;
    }


    .destination-location {
        left: 19px;

        bottom: 18px;

        font-size: 8.5px;

        letter-spacing: 1.4px;
    }


    .destination-content {
        display: block;

        padding: 23px 22px 27px;
    }


    .destination-label {
        margin-bottom: 8px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }


    .destination-content h2 {
        display: inline-block;

        margin-bottom: 10px;

        font-size: 29px;

        line-height: 1.1;
    }


    .destination-content h2:hover {
        transform: translateX(3px);

        letter-spacing: -0.55px;
    }


    .destination-content p {
        width: 100%;

        font-size: 13px;

        line-height: 1.75;
    }


    .destination-content p:hover {
        transform: translateX(3px);
    }


    .destination-link {
        margin-top: 20px;

        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .destinations-heading {
        width: 92%;

        margin-bottom: 34px;
    }


    .destinations-heading h1 {
        font-size: 28px;
    }


    .destinations-heading p {
        font-size: 11.5px;
    }


    .destinations {
        padding: 45px 0 65px;
    }


    .destination-grid {
        width: 93%;

        gap: 22px;
    }


    .destination-image {
        height: 235px;
    }


    .destination-content {
        padding: 21px 19px 25px;
    }


    .destination-label {
        font-size: 7.5px;
    }


    .destination-content h2 {
        font-size: 26px;
    }


    .destination-content p {
        font-size: 12px;
    }


    .destination-link {
        font-size: 9.5px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .destinations-heading {
        width: 93%;
    }


    .destinations-eyebrow {
        font-size: 7.5px;

        letter-spacing: 2.6px;
    }


    .destinations-heading h1 {
        font-size: 25px;
    }


    .destinations-heading p {
        font-size: 11px;
    }


    .destination-image {
        height: 215px;
    }


    .destination-content h2 {
        font-size: 24px;
    }


    .destination-content p {
        font-size: 11.5px;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .destination-card:hover {
        transform: none;

        border-color: #e3e3e1;

        box-shadow:
            0 14px 40px rgba(0, 0, 0, 0.055),
            0 3px 10px rgba(0, 0, 0, 0.025);
    }


    .destination-card:hover .destination-image img {
        transform: scale(1.01);

        filter:
            brightness(.97)
            contrast(1.03)
            saturate(.94);
    }


    .destinations-heading h1:hover,
    .destinations-heading p:hover,
    .destination-content h2:hover,
    .destination-content p:hover,
    .destination-label:hover,
    .destination-location:hover,
    .destination-link:hover {
        transform: none;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.destination-image:focus-visible,
.destination-link:focus-visible,
.destination-content h2:focus-visible {

    outline: 3px solid #777777;

    outline-offset: 5px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .destinations-heading *,
    .destination-card,
    .destination-image img,
    .destination-number,
    .destination-location,
    .destination-label,
    .destination-content h2,
    .destination-content h2::after,
    .destination-content p,
    .destination-link,
    .destination-link i {

        transition: none !important;
    }

}
/*destinations end*/

/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM 2026 TRAVEL FOOTER
========================================================= */


/* =========================================================
   FOOTER
========================================================= */

.premium-footer {
    position: relative;
    width: 100%;

    background: #000000;
    color: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   WHITE TOP LINE
========================================================= */

.footer-top-line {
    width: 100%;
    height: 2px;

    background: #ffffff;
}


/* =========================================================
   CONTAINER
========================================================= */

.footer-container {
    width: min(1220px, 92%);

    margin: 0 auto;

    padding: 78px 0 30px;

    box-sizing: border-box;
}


/* =========================================================
   MAIN GRID
========================================================= */

.footer-main {
    display: grid;

    grid-template-columns:
        1.25fr
        0.9fr
        1fr;

    gap: 75px;

    align-items: start;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    min-width: 0;

    text-align: center;
}


/* =========================================================
   CLICKABLE LOGO
========================================================= */

.footer-logo-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: fit-content;

    text-decoration: none;

    outline: none;

    cursor: pointer;

    transition:
        transform 0.35s cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   LARGE PREMIUM LOGO
========================================================= */

.footer-logo {
    display: block;

    width: 205px;
    height: 205px;

    margin: 0 auto 22px;

    object-fit: contain;

    border: none;
    border-radius: 0;

    background: transparent;

    box-shadow: none;

    cursor: pointer;

    transition:
        transform 0.45s cubic-bezier(.2, .7, .2, 1),
        filter 0.4s ease;
}


/* Logo hover */

.footer-logo-link:hover {
    transform: translateY(-2px);
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.035);

    filter: brightness(1.12);
}


/* Logo focus */

.footer-logo-link:focus-visible {
    outline: 2px solid #ffffff;

    outline-offset: 7px;

    border-radius: 8px;
}


/* =========================================================
   BRAND NAME
========================================================= */

.footer-brand h2 {
    position: relative;

    display: inline-block;

    margin: 0 auto 24px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s cubic-bezier(.2, .7, .2, 1),
        letter-spacing 0.35s ease,
        text-shadow 0.35s ease;
}


/* Brand underline */

.footer-brand h2::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #1d5c3b;

    border-radius: 20px;

    transform: translateX(-50%);

    transition:
        width 0.45s cubic-bezier(.2, .7, .2, 1);
}


/* Brand hover */

.footer-brand h2:hover {
    color: #1d5c3b;

    transform: translateY(-2px);

    letter-spacing: 1.95px;

    text-shadow:
        0 5px 18px rgba(29, 92, 59, 0.28);
}


.footer-brand h2:hover::after {
    width: 100%;
}


/* =========================================================
   OUR PROMISE
   HEADER ABOVE / TEXT BELOW
========================================================= */

.footer-promise {
    display: block;

    width: 100%;
    max-width: 390px;

    margin: 0 auto 22px;

    text-align: center;

    cursor: pointer;
}


/* =========================================================
   PROMISE LABEL
========================================================= */

.promise-label {
    position: relative;

    display: inline-block;

    margin: 0 0 9px;

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}


/* Promise underline */

.promise-label::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #1d5c3b;

    border-radius: 20px;

    transform: translateX(-50%);

    transition:
        width 0.4s cubic-bezier(.2, .7, .2, 1);
}


/* =========================================================
   PROMISE TEXT
========================================================= */

.footer-promise p {
    display: block;

    width: 100%;
    max-width: 365px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;

    font-weight: 400;

    line-height: 1.55;

    white-space: normal;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   PROMISE HOVER
========================================================= */

.footer-promise:hover .promise-label {
    color: #1d5c3b;

    transform: translateY(-2px);

    letter-spacing: 1.9px;
}


.footer-promise:hover .promise-label::after {
    width: 70%;
}


.footer-promise:hover p {
    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   ABOUT US BUTTON
========================================================= */

.footer-about {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    min-width: 142px;

    padding: 12px 20px;

    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 999px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* About arrow */

.footer-about-arrow {
    font-size: 15px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


/* About hover */

.footer-about:hover {
    color: #000000;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 9px 27px rgba(255, 255, 255, 0.09);
}


.footer-about:hover .footer-about-arrow {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;

    text-align: left;
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.footer-column h3 {
    position: relative;

    display: inline-block;

    margin: 0 0 24px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        letter-spacing 0.3s ease;
}


/* Heading underline */

.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: #1d5c3b;

    border-radius: 20px;

    transition:
        width 0.4s cubic-bezier(.2, .7, .2, 1);
}


/* Heading hover */

.footer-column h3:hover {
    color: #1d5c3b;

    transform: translateX(4px);

    letter-spacing: 1.85px;
}


.footer-column h3:hover::after {
    width: 100%;
}


/* =========================================================
   EXPLORE LIST
========================================================= */

.footer-column ul {
    list-style: none;

    margin: 0;

    padding: 0;
}


.footer-column ul li {
    margin: 0 0 13px;

    padding: 0;
}


/* =========================================================
   EXPLORE LINKS
========================================================= */

.footer-explore-column ul li a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.62);

    background: transparent;

    border: none;

    text-decoration: none;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.5;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease,
        letter-spacing 0.25s ease;
}


/* Explore hover */

.footer-explore-column ul li a:hover {
    color: #ffffff;

    transform: translateX(6px);

    letter-spacing: 0.2px;
}


/* =========================================================
   CONTACT MESSAGE
========================================================= */

.contact-message {
    margin: 0 0 20px;

    cursor: pointer;
}


.contact-message p {
    margin: 0;

    color: rgba(255, 255, 255, 0.60);

    font-size: 13px;

    font-weight: 400;

    line-height: 1.75;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* Contact message hover */

.contact-message:hover p {
    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   PHONE / EMAIL / WEBSITE
========================================================= */

.footer-contact-link {
    position: relative;

    display: block;

    width: fit-content;

    max-width: 100%;

    margin-bottom: 9px;

    padding-bottom: 2px;

    color: rgba(255, 255, 255, 0.60);

    text-decoration: none;

    font-size: 13px;

    line-height: 1.6;

    cursor: pointer;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* Contact underline */

.footer-contact-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #1d5c3b;

    transition:
        width 0.35s cubic-bezier(.2, .7, .2, 1);
}


/* Contact hover */

.footer-contact-link:hover {
    color: #ffffff;

    transform: translateX(5px);
}


.footer-contact-link:hover::after {
    width: 100%;
}


/* =========================================================
   WHITE DIVIDER
========================================================= */

.footer-divider {
    width: 100%;

    height: 1px;

    margin: 58px 0 25px;

    background: #ffffff;

    opacity: 1;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 10px;

    font-weight: 400;

    line-height: 1.5;

    letter-spacing: 0.8px;

    transition:
        color 0.3s ease;
}


/* Copyright hover */

.footer-bottom p:hover {
    color: rgba(255, 255, 255, 0.78);

    cursor: pointer;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 8px;
}


/* Social button */

.footer-social {
    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.28);

    border-radius: 50%;

    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Social hover */

.footer-social:hover {
    color: #000000;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.10);
}


.footer-social i {
    font-size: 14px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.footer-social:hover i {
    transform: scale(1.08);
}


/* =========================================================
   FOCUS
========================================================= */

.footer-social:focus-visible,
.footer-column a:focus-visible,
.footer-contact-link:focus-visible,
.footer-about:focus-visible,
.footer-logo-link:focus-visible {
    outline: 2px solid #ffffff;

    outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-container {
        width: 90%;

        padding-top: 65px;
    }


    .footer-main {
        grid-template-columns:
            1fr
            1fr;

        gap: 50px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        text-align: center;
    }


    .footer-logo {
        width: 185px;
        height: 185px;
    }


    .footer-brand h2 {
        font-size: 20px;

        letter-spacing: 1.5px;
    }


    .footer-brand h2:hover {
        letter-spacing: 1.7px;
    }


    .footer-promise {
        width: 100%;
        max-width: 390px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }


    .promise-label {
        font-size: 8.5px;
    }


    .footer-promise p {
        font-size: 9.5px;

        max-width: 350px;
    }


    .footer-divider {
        margin-top: 48px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-container {
        width: 88%;

        padding-top: 55px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 43px;
    }


    .footer-brand {
        grid-column: auto;

        text-align: center;
    }


    .footer-logo {
        width: 160px;
        height: 160px;

        margin-bottom: 19px;
    }


    .footer-brand h2 {
        font-size: 18px;

        letter-spacing: 1.35px;

        margin-bottom: 21px;
    }


    .footer-brand h2:hover {
        transform: translateY(-1px);

        letter-spacing: 1.55px;
    }


    /* OUR PROMISE */

    .footer-promise {
        display: block;

        width: 100%;
        max-width: 100%;

        margin-bottom: 21px;

        text-align: center;
    }


    .promise-label {
        display: inline-block;

        margin-bottom: 8px;

        font-size: 8px;

        letter-spacing: 1.4px;

        white-space: nowrap;
    }


    .promise-label::after {
        bottom: -4px;
    }


    .footer-promise p {
        width: 100%;
        max-width: 100%;

        font-size: 10px;

        line-height: 1.55;

        white-space: normal;
    }


    .footer-column {
        text-align: left;
    }


    .footer-column h3 {
        font-size: 17px;
    }


    .footer-explore-column ul li a {
        font-size: 14px;
    }


    .footer-contact-link {
        max-width: 100%;

        word-break: break-word;
    }


    .footer-divider {
        margin: 43px 0 23px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .footer-socials {
        flex-wrap: wrap;

        justify-content: flex-start;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .footer-container {
        width: 90%;
    }


    .footer-logo {
        width: 145px;
        height: 145px;
    }


    .footer-brand h2 {
        font-size: 16px;

        letter-spacing: 1.1px;
    }


    .footer-brand h2:hover {
        letter-spacing: 1.3px;
    }


    .promise-label {
        font-size: 7.5px;

        letter-spacing: 1.2px;
    }


    .footer-promise p {
        font-size: 9px;

        line-height: 1.5;
    }


    .footer-about {
        padding: 11px 18px;

        font-size: 10px;
    }


    .footer-social {
        width: 37px;
        height: 37px;
    }


    .footer-social i {
        font-size: 13px;
    }


    .footer-bottom p {
        font-size: 9px;
    }

}


/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 330px) {

    .footer-logo {
        width: 132px;
        height: 132px;
    }


    .footer-brand h2 {
        font-size: 15px;

        letter-spacing: 1px;
    }


    .footer-promise {
        width: 100%;
    }


    .promise-label {
        font-size: 7px;

        letter-spacing: 1px;
    }


    .promise-label::after {
        width: 0;
    }


    .footer-promise p {
        font-size: 8.8px;

        line-height: 1.5;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .premium-footer *,
    .premium-footer *::before,
    .premium-footer *::after {
        transition: none !important;
    }

}
/* Section Layout */
.left-image-section {
    padding: 60px 20px;
}

.left-image-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Image */
.left-image-box {
    flex: 1;
}

.left-image-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

/* Right Content */
.left-image-content {
    flex: 1;
}

.left-image-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.left-image-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 12px 26px;
    border: 3px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.read-more-btn:hover {
    transform: translateX(-6px);
    background-color: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .left-image-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-image-box img {
        height: 260px;
    }
}
