/* =========================================================
   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
   ALASKA TOURS — CLEAN PREMIUM CSS
========================================================= */


/* =========================================================
   MAIN ALASKA SECTION
========================================================= */

.alaska-tours {
    width: 100%;
    overflow: hidden;

    background: #ffffff;
    color: #111111;

    box-sizing: border-box;
}

.alaska-tours *,
.alaska-tours *::before,
.alaska-tours *::after {
    box-sizing: border-box;
}


/* =========================================================
   ALASKA INTRO
========================================================= */

.alaska-intro {
    width: min(90%, 900px);

    margin: 100px auto 65px;

    text-align: center;
}


/* ---------------------------------------------------------
   EYEBROW
--------------------------------------------------------- */

.alaska-intro > span {
    position: relative;

    display: inline-block;

    margin: 0 0 17px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 3.5px;

    color: #777777;

    text-transform: uppercase;

    cursor: default;

    transition:
        color 0.3s ease,
        letter-spacing 0.35s ease,
        transform 0.35s ease;
}


/* Small decorative line */

.alaska-intro > span::before,
.alaska-intro > span::after {
    content: "";

    display: inline-block;

    width: 24px;
    height: 1px;

    vertical-align: middle;

    background: #777777;

    transition:
        width 0.35s ease,
        background-color 0.35s ease;
}

.alaska-intro > span::before {
    margin-right: 10px;
}

.alaska-intro > span::after {
    margin-left: 10px;
}


/* Eyebrow hover */

.alaska-intro:hover > span {
    color: #1d5c3b;

    letter-spacing: 3.8px;

    transform: translateY(-1px);
}

.alaska-intro:hover > span::before,
.alaska-intro:hover > span::after {
    width: 32px;

    background: #1d5c3b;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.alaska-intro h1 {
    position: relative;

    display: block;

    width: 100%;
    max-width: 900px;

    margin: 0 auto 22px;

    padding: 0;

    font-family: "Poppins", sans-serif;

    font-size: clamp(34px, 5vw, 60px);

    line-height: 1.08;

    letter-spacing: -1.2px;

    font-weight: 700;

    color: #111111;

    cursor: pointer;

    transition:
        color 0.35s ease,
        letter-spacing 0.4s ease,
        text-shadow 0.35s ease;
}


/* Title underline */

.alaska-intro h1::after {
    content: "";

    display: block;

    width: 55px;
    height: 2px;

    margin: 20px auto 0;

    background: #657c55;

    border-radius: 20px;

    transition:
        width 0.45s cubic-bezier(.2,.7,.2,1),
        background-color 0.35s ease;
}


/* Title hover */

.alaska-intro h1:hover {
    color: #1d5c3b;

    letter-spacing: -0.8px;

    text-shadow:
        0 8px 25px rgba(29,92,59,.10);
}

.alaska-intro h1:hover::after {
    width: 90px;

    background: #1d5c3b;
}


/* =========================================================
   INTRO PARAGRAPH
========================================================= */

.alaska-intro p {
    display: block;

    width: min(100%, 700px);

    margin: 0 auto;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.85;

    font-weight: 400;

    color: #666666;

    cursor: pointer;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


/* Intro paragraph hover */

.alaska-intro p:hover {
    color: #294638;

    transform: translateY(-2px);
}


/* =========================================================
   MAIN CARD GRID
========================================================= */

.modern-section {
    width: min(92%, 1400px);

    margin: 0 auto 110px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 32px;
}


/* =========================================================
   STANDARD CARD
========================================================= */

.modern-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 22px;

    box-shadow:
        0 15px 45px rgba(0,0,0,.07);

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .45s ease,
        border-color .45s ease;
}


/* Card hover */

.modern-card:hover {
    transform: translateY(-8px);

    border-color: #d3ddd7;

    box-shadow:
        0 28px 70px rgba(0,0,0,.12),
        0 5px 18px rgba(29,92,59,.045);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.card-image-wrap {
    position: relative;

    width: 100%;

    height: 330px;

    overflow: hidden;

    background: #eeeeee;
}


/* Image overlay */

.card-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 60%,
            rgba(0,0,0,.14) 100%
        );

    pointer-events: none;

    transition:
        opacity .45s ease;
}

.modern-card:hover .card-image-wrap::after {
    opacity: .75;
}


/* Image */

.card-img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.01);

    transition:
        transform .9s cubic-bezier(.16,1,.3,1),
        filter .55s ease;
}


/* Image hover */

.modern-card:hover .card-img {
    transform: scale(1.045);

    filter:
        brightness(.96)
        contrast(1.03)
        saturate(1.02);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {
    position: relative;

    padding: 34px 35px 38px;
}


/* =========================================================
   CARD TITLE
========================================================= */

.card-content h2 {
    position: relative;

    display: inline-block;

    width: fit-content;
    max-width: 100%;

    margin: 0 0 17px;

    padding: 0 0 8px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(25px, 2.5vw, 35px);

    line-height: 1.17;

    letter-spacing: -.6px;

    font-weight: 700;

    color: #111111;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1),
        letter-spacing .35s ease,
        text-shadow .35s ease;
}


/* Title underline */

.card-content h2::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    border-radius: 20px;

    background: #1d5c3b;

    transition:
        width .4s cubic-bezier(.2,.7,.2,1);
}


/* Title hover */

.card-content h2:hover {
    color: #1d5c3b;

    transform: translateX(5px);

    letter-spacing: -.35px;

    text-shadow:
        0 7px 19px rgba(29,92,59,.10);
}

.card-content h2:hover::after {
    width: 100%;
}


/* =========================================================
   CARD PARAGRAPHS
========================================================= */

.card-content p {
    margin: 0 0 17px;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.85;

    color: #5c5c5c;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1);
}

.card-content p:last-child {
    margin-bottom: 0;
}


/* Paragraph hover */

.card-content p:hover {
    color: #1d5c3b;

    transform: translateX(4px);
}


/* =========================================================
   TAGLINE
========================================================= */

.tagline {
    position: relative;

    margin-bottom: 21px !important;

    padding:
        0 0 20px;

    border-bottom: 1px solid #e7e7e7;

    font-size: 16px !important;

    line-height: 1.65 !important;

    font-weight: 600;

    color: #777777 !important;

    transition:
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


/* Tagline hover */

.tagline:hover {
    color: #1d5c3b !important;

    border-color: #cbd9d1;

    transform: translateX(4px);
}


/* =========================================================
   LISTS
========================================================= */

.modern-list {
    margin: 0;

    padding: 0;

    list-style: none;
}


.modern-list li {
    position: relative;

    padding:
        15px 0 15px 27px;

    border-bottom: 1px solid #ededed;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.75;

    color: #5c5c5c;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1),
        border-color .35s ease;
}


.modern-list li:last-child {
    border-bottom: 0;

    padding-bottom: 0;
}


/* List dot */

.modern-list li::before {
    content: "";

    position: absolute;

    left: 1px;

    top: 22px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #111111;

    transition:
        background-color .3s ease,
        transform .3s ease;
}


/* List hover */

.modern-list li:hover {
    color: #1d5c3b;

    transform: translateX(5px);

    border-color: #d5dfd9;
}

.modern-list li:hover::before {
    background: #1d5c3b;

    transform: scale(1.3);
}


.modern-list strong {
    color: #111111;

    font-weight: 700;

    transition:
        color .3s ease;
}


.modern-list li:hover strong {
    color: #1d5c3b;
}


/* =========================================================
   FEATURED DESTINATION
========================================================= */

.review-card {
    position: relative;

    grid-column: 1 / -1;

    display: grid;

    grid-template-columns:
        48%
        52%;

    min-width: 0;

    overflow: hidden;

    background: #0a0a0a;

    border-radius: 26px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.22);

    transition:
        transform .5s cubic-bezier(.16,1,.3,1),
        box-shadow .5s ease;
}


.review-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 34px 85px rgba(0,0,0,.27);
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.review-image-wrap {
    min-width: 0;

    min-height: 550px;

    overflow: hidden;

    background: #111111;
}


.review-img {
    display: block;

    width: 100%;

    height: 100%;

    min-height: 550px;

    object-fit: cover;

    object-position: center;

    transform: scale(1.01);

    transition:
        transform .9s cubic-bezier(.16,1,.3,1),
        filter .55s ease;
}


.review-card:hover .review-img {
    transform: scale(1.04);

    filter:
        brightness(.96)
        contrast(1.03)
        saturate(1.02);
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.review-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;

    padding: 65px;
}


/* =========================================================
   FEATURED LABEL
========================================================= */

.featured-label {
    display: inline-block;

    width: fit-content;

    margin-bottom: 16px;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #888888;

    cursor: pointer;

    transition:
        color .3s ease,
        letter-spacing .35s ease,
        transform .35s ease;
}


.featured-label:hover {
    color: #1d5c3b;

    letter-spacing: 3.3px;

    transform: translateX(4px);
}


/* =========================================================
   FEATURED TITLE
========================================================= */

.review-content h2 {
    position: relative;

    display: inline-block;

    width: fit-content;
    max-width: 100%;

    margin: 0 0 22px;

    padding-bottom: 8px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(30px, 3.5vw, 48px);

    line-height: 1.12;

    letter-spacing: -.8px;

    font-weight: 700;

    color: #ffffff;

    cursor: pointer;

    transition:
        color .35s ease,
        letter-spacing .35s ease,
        transform .35s ease,
        text-shadow .35s ease;
}


/* Featured title underline */

.review-content h2::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #1d5c3b;

    border-radius: 20px;

    transition:
        width .45s cubic-bezier(.2,.7,.2,1);
}


.review-content h2:hover {
    color: #9fbaa9;

    letter-spacing: -.5px;

    transform: translateX(5px);

    text-shadow:
        0 8px 22px rgba(29,92,59,.28);
}


.review-content h2:hover::after {
    width: 100%;
}


/* =========================================================
   FEATURED LINE
========================================================= */

.featured-line {
    width: 45px;

    height: 2px;

    margin-bottom: 25px;

    background: #ffffff;

    border-radius: 20px;

    transition:
        width .4s ease,
        background-color .3s ease;
}


.review-content:hover .featured-line {
    width: 70px;

    background: #1d5c3b;
}


/* =========================================================
   FEATURED PARAGRAPHS
========================================================= */

.review-content > p {
    position: relative;

    margin: 0 0 19px;

    max-width: 600px;

    padding: 0;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.9;

    color: #aaaaaa;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1);
}


.review-content > p:hover {
    color: #d7e1dc;

    transform: translateX(5px);
}


/* =========================================================
   FEATURED LINK
========================================================= */

.featured-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: fit-content;

    margin-top: 12px;

    padding-bottom: 7px;

    border-bottom: 1px solid #555555;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        gap .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.featured-link:hover {
    gap: 18px;

    color: #9fbaa9;

    border-color: #1d5c3b;

    transform: translateX(4px);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .alaska-intro {
        margin-top: 85px;
    }

    .modern-section {
        width: 90%;

        gap: 26px;
    }

    .card-image-wrap {
        height: 300px;
    }

    .card-content {
        padding: 29px;
    }

    .review-content {
        padding: 50px;
    }

}


/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 1000px) {

    .modern-section {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .card-image-wrap {
        height: 280px;
    }

    .card-content h2 {
        font-size: 28px;
    }

    .review-card {
        grid-template-columns: 1fr;
    }

    .review-image-wrap {
        height: 430px;

        min-height: 0;
    }

    .review-img {
        min-height: 0;
    }

    .review-content {
        padding: 48px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .alaska-intro {
        width: 92%;

        margin: 65px auto 45px;
    }

    .alaska-intro h1 {
        font-size: 38px;
    }

    .alaska-intro p {
        font-size: 14px;
    }

    .modern-section {
        width: 92%;

        grid-template-columns: 1fr;

        gap: 24px;

        margin-bottom: 75px;
    }

    .card-image-wrap {
        height: 330px;
    }

    .card-content {
        padding: 30px 27px 33px;
    }

    .review-image-wrap {
        height: 360px;
    }

    .review-content {
        padding: 40px 30px;
    }

    .review-content h2 {
        font-size: 32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .alaska-intro {
        width: 92%;

        margin: 55px auto 40px;
    }

    .alaska-intro > span {
        font-size: 9px;

        letter-spacing: 2.5px;
    }

    .alaska-intro > span::before,
    .alaska-intro > span::after {
        width: 17px;
    }

    .alaska-intro:hover > span {
        letter-spacing: 2.7px;
    }

    .alaska-intro h1 {
        font-size: 30px;

        letter-spacing: -.5px;
    }

    .alaska-intro h1:hover {
        letter-spacing: -.3px;
    }

    .alaska-intro p {
        font-size: 13.5px;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       CARDS
    ----------------------------------------------------- */

    .modern-section {
        width: 92%;

        gap: 19px;
    }

    .modern-card {
        border-radius: 18px;
    }

    .card-image-wrap {
        height: 275px;
    }

    .card-content {
        padding: 25px 22px 28px;
    }

    .card-content h2 {
        font-size: 25px;
    }

    .card-content p {
        font-size: 13.5px;

        line-height: 1.75;
    }

    .tagline {
        font-size: 14px !important;
    }

    .modern-list li {
        padding:
            13px 0 13px 23px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       FEATURED
    ----------------------------------------------------- */

    .review-card {
        border-radius: 18px;
    }

    .review-image-wrap {
        height: 270px;
    }

    .review-img {
        min-height: 0;

        height: 100%;
    }

    .review-content {
        padding: 28px 22px;
    }

    .featured-label {
        font-size: 9px;

        letter-spacing: 2.5px;
    }

    .review-content h2 {
        font-size: 27px;
    }

    .review-content > p {
        font-size: 13px;

        line-height: 1.8;
    }

    .featured-link {
        font-size: 12px;
    }

}


/* =========================================================
   STANDARD PHONE
========================================================= */

@media (max-width: 480px) {

    .alaska-intro {
        width: 94%;

        margin-top: 45px;
    }

    .alaska-intro h1 {
        font-size: 27px;
    }

    .alaska-intro p {
        font-size: 13px;
    }

    .modern-section {
        width: 94%;

        margin-bottom: 60px;
    }

    .card-image-wrap {
        height: 230px;
    }

    .card-content {
        padding: 22px 19px 25px;
    }

    .card-content h2 {
        font-size: 23px;
    }

    .card-content p {
        font-size: 12.8px;
    }

    .tagline {
        font-size: 13.5px !important;
    }

    .modern-list li {
        padding-left: 21px;

        font-size: 12.7px;
    }

    .review-image-wrap {
        height: 225px;
    }

    .review-content {
        padding: 24px 19px;
    }

    .review-content h2 {
        font-size: 23px;
    }

    .review-content > p {
        font-size: 12.7px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .alaska-intro {
        margin-top: 40px;
    }

    .alaska-intro h1 {
        font-size: 24px;
    }

    .alaska-intro p {
        font-size: 12.5px;
    }

    .card-image-wrap {
        height: 200px;
    }

    .card-content {
        padding: 20px 17px 22px;
    }

    .card-content h2 {
        font-size: 21px;
    }

    .card-content p {
        font-size: 12px;
    }

    .modern-list li {
        font-size: 12px;
    }

    .review-image-wrap {
        height: 195px;
    }

    .review-content {
        padding: 21px 17px;
    }

    .review-content h2 {
        font-size: 21px;
    }

    .review-content > p {
        font-size: 12px;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .modern-card:hover {
        transform: none;

        border-color: #e8e8e8;

        box-shadow:
            0 15px 45px rgba(0,0,0,.07);
    }

    .modern-card:hover .card-img {
        transform: scale(1.01);

        filter: none;
    }

    .review-card:hover {
        transform: none;

        box-shadow:
            0 25px 70px rgba(0,0,0,.22);
    }

    .review-card:hover .review-img {
        transform: scale(1.01);

        filter: none;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.featured-link:focus-visible {
    outline: 3px solid #777777;

    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .alaska-tours *,
    .alaska-tours *::before,
    .alaska-tours *::after {
        transition: none !important;
    }

}
/* =========================================================
   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;
    }

}