/* =========================================================
   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
   SHANDUR POLO FESTIVAL
   PREMIUM • CLEAN • RESPONSIVE • INTERACTIVE
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.kalash-bw-section {
    width: 100%;

    margin-top: 5em;

    padding: 75px 0 110px;

    background: #f6f7f5;

    font-family: "Poppins", sans-serif;

    box-sizing: border-box;

    overflow: hidden;
}

.kalash-bw-section *,
.kalash-bw-section *::before,
.kalash-bw-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.kalash-bw-wrapper {
    width: calc(100% - 40px);

    max-width: 1500px;

    margin: 0 auto;

    background: #ffffff;

    border: 1px solid #e3e7e3;

    overflow: hidden;

    box-shadow:
        0 25px 75px rgba(0, 0, 0, .075);

    transition:
        border-color .4s ease,
        box-shadow .5s ease,
        transform .45s cubic-bezier(.16, 1, .3, 1);
}


/* Wrapper hover */

.kalash-bw-wrapper:hover {
    border-color: #d2ddd5;

    box-shadow:
        0 32px 90px rgba(0, 0, 0, .105);

    transform: translateY(-2px);
}


/* =========================================================
   LARGE IMAGE
========================================================= */

.kalash-bw-image {
    position: relative;

    width: 100%;

    height: 700px;

    overflow: hidden;

    background: #111111;

    cursor: pointer;
}


/* Main image */

.kalash-bw-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.01);

    transition:
        transform 1s cubic-bezier(.16, 1, .3, 1),
        filter .6s ease;
}


/* Image overlay */

.kalash-bw-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 45%,
            rgba(0,0,0,.06) 68%,
            rgba(0,0,0,.25) 100%
        );

    opacity: .9;

    transition:
        opacity .5s ease;
}


/* Image hover */

.kalash-bw-image:hover img {
    transform: scale(1.035);

    filter:
        brightness(1.03)
        contrast(1.03)
        saturate(1.03);
}

.kalash-bw-image:hover::after {
    opacity: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.kalash-bw-content {
    width: 100%;

    max-width: 1120px;

    margin: 0 auto;

    padding:
        60px
        70px
        78px;

    color: #151715;
}


/* =========================================================
   BRAND LINE
========================================================= */

.kalash-bw-content::before {
    content:
        "ADVENTURE LEOPARDS  /  PAKISTAN";

    display: block;

    width: max-content;
    max-width: 100%;

    margin-bottom: 17px;

    color: #477858;

    font-size: .63rem;

    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 2.5px;

    cursor: pointer;

    transition:
        color .3s ease,
        letter-spacing .35s ease,
        transform .35s ease;
}


/* Brand hover */

.kalash-bw-content:hover::before {
    color: #1d5c3b;

    letter-spacing: 2.8px;

    transform: translateX(3px);
}


/* =========================================================
   MAIN TITLE
========================================================= */

.kalash-bw-title {
    display: block;

    width: max-content;
    max-width: 100%;

    margin: 0;

    color: #111111;

    font-size:
        clamp(2rem, 3.3vw, 3.4rem);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -1.6px;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1),
        letter-spacing .35s ease,
        text-shadow .35s ease;
}


/* Main title hover */

.kalash-bw-title:hover {
    color: #1d5c3b;

    transform: translateX(5px);

    letter-spacing: -1.2px;

    text-shadow:
        0 8px 22px rgba(29,92,59,.11);
}


/* =========================================================
   TITLE LINE
========================================================= */

.kalash-bw-title::after {
    content: "";

    display: block;

    width: 48px;

    height: 2px;

    margin-top: 18px;

    background: #477858;

    border-radius: 20px;

    transition:
        width .45s cubic-bezier(.2,.7,.2,1),
        background-color .3s ease;
}


.kalash-bw-title:hover::after {
    width: 85px;

    background: #1d5c3b;
}


/* =========================================================
   INTRO PARAGRAPH
========================================================= */

.kalash-bw-intro {
    position: relative;

    max-width: 900px;

    margin:
        21px
        0
        39px;

    padding:
        16px
        18px;

    color: #626963;

    font-size: .91rem;

    line-height: 1.85;

    background: #ffffff;

    border-left: 1px solid transparent;

    border-radius: 12px;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        border-color .35s ease,
        box-shadow .35s ease,
        background-color .35s ease;
}


/* Small green accent */

.kalash-bw-intro::before {
    content: "";

    position: absolute;

    left: -1px;

    top: 16px;

    width: 2px;

    height: 0;

    border-radius: 20px;

    background: #1d5c3b;

    transition:
        height .45s cubic-bezier(.2,.7,.2,1);
}


/* Intro hover */

.kalash-bw-intro:hover {
    color: #294638;

    background: #ffffff;

    transform: translateY(-4px);

    border-left-color: #cbd9d1;

    box-shadow:
        0 12px 28px rgba(29,92,59,.065);
}

.kalash-bw-intro:hover::before {
    height: calc(100% - 32px);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.kalash-bw-heading {
    position: relative;

    display: inline-block;

    max-width: 100%;

    margin:
        31px
        0
        15px;

    color: #171917;

    font-size: 1.25rem;

    line-height: 1.3;

    font-weight: 750;

    letter-spacing: -.25px;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .35s cubic-bezier(.2,.7,.2,1),
        letter-spacing .3s ease,
        text-shadow .3s ease;
}


/* Heading underline */

.kalash-bw-heading::after {
    content: "";

    display: block;

    width: 24px;

    height: 2px;

    margin-top: 8px;

    background: #477858;

    border-radius: 20px;

    transition:
        width .45s cubic-bezier(.2,.7,.2,1),
        background-color .3s ease;
}


/* Heading hover */

.kalash-bw-heading:hover {
    color: #1d5c3b;

    transform: translateX(5px);

    letter-spacing: .05px;

    text-shadow:
        0 5px 16px rgba(29,92,59,.09);
}

.kalash-bw-heading:hover::after {
    width: 55px;

    background: #1d5c3b;
}


/* =========================================================
   FESTIVAL HIGHLIGHTS GRID
========================================================= */

.kalash-bw-list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    width: 100%;

    margin: 0;

    padding: 0;

    list-style: none;
}


/* =========================================================
   FESTIVAL HIGHLIGHT CARD
========================================================= */

.kalash-bw-list li {
    position: relative;

    min-height: 130px;

    padding:
        22px
        20px
        21px
        42px;

    background:
        linear-gradient(
            145deg,
            #fbfcfb,
            #f6f9f6
        );

    border: 1px solid #e1e6e2;

    border-radius: 12px;

    color: #626963;

    font-size: .79rem;

    line-height: 1.67;

    cursor: pointer;

    transition:
        transform .4s cubic-bezier(.16,1,.3,1),
        color .35s ease,
        background-color .35s ease,
        border-color .35s ease,
        box-shadow .4s ease;
}


/* Highlight hover */

.kalash-bw-list li:hover {
    transform: translateY(-6px);

    color: #294638;

    background: #ffffff;

    border-color:
        rgba(29,92,59,.30);

    box-shadow:
        0 16px 38px rgba(0,0,0,.065),
        0 4px 12px rgba(29,92,59,.035);
}


/* =========================================================
   CARD MARKER
========================================================= */

.kalash-bw-list li::before {
    content: "";

    position: absolute;

    top: 24px;
    left: 19px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #477858;

    transition:
        background-color .3s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


.kalash-bw-list li:hover::before {
    background: #1d5c3b;

    transform: scale(1.4);

    box-shadow:
        0 0 0 4px rgba(29,92,59,.09);
}


/* =========================================================
   BOLD FESTIVAL TITLES
========================================================= */

.kalash-bw-list li strong {
    color: #202320;

    font-weight: 750;

    cursor: pointer;

    transition:
        color .3s ease,
        letter-spacing .3s ease;
}


.kalash-bw-list li:hover strong {
    color: #1d5c3b;

    letter-spacing: .1px;
}


/* =========================================================
   CULTURAL SIGNIFICANCE TEXT
========================================================= */

.kalash-bw-text {
    position: relative;

    display: block;

    max-width: 920px;

    margin: 0;

    padding:
        16px
        18px;

    color: #626963;

    font-size: .89rem;

    line-height: 1.86;

    background: #ffffff;

    border-left: 1px solid transparent;

    border-radius: 12px;

    cursor: pointer;

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.2,.7,.2,1),
        border-color .35s ease,
        box-shadow .35s ease,
        background-color .35s ease;
}


/* Cultural text accent */

.kalash-bw-text::before {
    content: "";

    position: absolute;

    left: -1px;

    top: 16px;

    width: 2px;

    height: 0;

    border-radius: 20px;

    background: #1d5c3b;

    transition:
        height .45s cubic-bezier(.2,.7,.2,1);
}


/* Cultural text hover */

.kalash-bw-text:hover {
    color: #294638;

    background: #ffffff;

    transform: translateY(-4px);

    border-left-color: #cbd9d1;

    box-shadow:
        0 12px 28px rgba(29,92,59,.065);
}

.kalash-bw-text:hover::before {
    height: calc(100% - 32px);
}


/* =========================================================
   ALL NORMAL CONTENT PARAGRAPHS
========================================================= */

.kalash-bw-content p {
    transition:
        color .35s ease;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .kalash-bw-section {
        padding-top: 90px;
    }


    .kalash-bw-wrapper {
        max-width: 1580px;
    }


    .kalash-bw-image {
        height: 780px;
    }


    .kalash-bw-content {
        max-width: 1200px;

        padding:
            72px
            80px
            88px;
    }


    .kalash-bw-title {
        font-size: 3.7rem;
    }


    .kalash-bw-intro {
        font-size: .95rem;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .kalash-bw-image {
        height: 620px;
    }


    .kalash-bw-content {
        padding:
            54px
            48px
            65px;
    }


    .kalash-bw-title {
        font-size:
            clamp(1.95rem, 3.6vw, 3.15rem);
    }


    .kalash-bw-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .kalash-bw-section {
        padding:
            60px
            15px
            85px;
    }


    .kalash-bw-wrapper {
        width: 100%;
    }


    .kalash-bw-image {
        height: 500px;
    }


    .kalash-bw-content {
        padding:
            46px
            38px
            58px;
    }


    .kalash-bw-title {
        font-size: 2.5rem;

        white-space: nowrap;
    }


    .kalash-bw-intro {
        font-size: .86rem;
    }


    .kalash-bw-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .kalash-bw-section {
        margin-top: 3em;

        padding:
            40px
            8px
            65px;
    }


    .kalash-bw-image {
        height: 350px;
    }


    .kalash-bw-content {
        padding:
            33px
            20px
            42px;
    }


    .kalash-bw-content::before {
        margin-bottom: 13px;

        font-size: .52rem;

        letter-spacing: 1.45px;
    }


    .kalash-bw-title {
        font-size:
            clamp(1.52rem, 7.2vw, 2rem);

        letter-spacing: -.8px;

        white-space: nowrap;
    }


    .kalash-bw-title:hover {
        letter-spacing: -.55px;
    }


    .kalash-bw-title::after {
        width: 36px;

        margin-top: 14px;
    }


    .kalash-bw-title:hover::after {
        width: 62px;
    }


    .kalash-bw-intro {
        margin:
            19px
            0
            29px;

        padding:
            15px
            14px;

        font-size: .77rem;

        line-height: 1.76;
    }


    .kalash-bw-intro::before {
        top: 15px;
    }


    .kalash-bw-intro:hover::before {
        height: calc(100% - 30px);
    }


    .kalash-bw-heading {
        margin:
            27px
            0
            13px;

        font-size: 1rem;
    }


    .kalash-bw-heading:hover {
        transform: translateX(3px);
    }


    .kalash-bw-list {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .kalash-bw-list li {
        min-height: auto;

        padding:
            16px
            15px
            16px
            36px;

        font-size: .73rem;
    }


    .kalash-bw-list li:hover {
        transform: translateY(-3px);
    }


    .kalash-bw-list li::before {
        top: 20px;

        left: 15px;
    }


    .kalash-bw-text {
        padding:
            15px
            14px;

        font-size: .77rem;

        line-height: 1.78;
    }


    .kalash-bw-text::before {
        top: 15px;
    }


    .kalash-bw-text:hover::before {
        height: calc(100% - 30px);
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .kalash-bw-image {
        height: 295px;
    }


    .kalash-bw-content {
        padding:
            29px
            16px
            37px;
    }


    .kalash-bw-title {
        font-size: 1.43rem;
    }


    .kalash-bw-intro {
        font-size: .73rem;
    }


    .kalash-bw-heading {
        font-size: .94rem;
    }


    .kalash-bw-list li {
        font-size: .70rem;
    }


    .kalash-bw-text {
        font-size: .73rem;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 340px) {

    .kalash-bw-image {
        height: 265px;
    }


    .kalash-bw-content {
        padding:
            26px
            13px
            32px;
    }


    .kalash-bw-title {
        font-size: 1.3rem;
    }


    .kalash-bw-intro {
        font-size: .70rem;
    }


    .kalash-bw-list li {
        font-size: .66rem;

        padding-left: 32px;
    }


    .kalash-bw-list li::before {
        left: 12px;
    }


    .kalash-bw-text {
        font-size: .68rem;
    }

}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .kalash-bw-wrapper:hover {
        transform: none;

        border-color: #e3e7e3;

        box-shadow:
            0 25px 75px rgba(0,0,0,.075);
    }


    .kalash-bw-image:hover img {
        transform: none;

        filter: none;
    }


    .kalash-bw-title:hover,
    .kalash-bw-heading:hover,
    .kalash-bw-intro:hover,
    .kalash-bw-text:hover {
        transform: none;

        box-shadow: none;
    }


    .kalash-bw-list li:hover {
        transform: none;

        color: #626963;

        background:
            linear-gradient(
                145deg,
                #fbfcfb,
                #f6f9f6
            );

        border-color: #e1e6e2;

        box-shadow: none;
    }


    .kalash-bw-list li:hover strong {
        color: #202320;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.kalash-bw-title:focus-visible,
.kalash-bw-heading:focus-visible {
    outline: 2px solid #1d5c3b;

    outline-offset: 5px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .kalash-bw-section *,
    .kalash-bw-section *::before,
    .kalash-bw-section *::after {
        transition: none !important;

        animation: 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;
    }

}