/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM 2026 HEADER
   FULL RESPONSIVE SYSTEM
   POPPINS / BLACK + WHITE LUXURY TRAVEL
========================================================= */


/* =========================================================
   FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: "Poppins", sans-serif;
}

button {
    border: 0;
    background: transparent;
}

ul,
ol {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   DESIGN VARIABLES
========================================================= */

:root {

    /* BLACK */
    --black: #000000;
    --black-deep: #050505;
    --black-soft: #090909;
    --black-panel: #101010;
    --black-light: #151515;

    /* WHITE */
    --white: #ffffff;
    --white-soft: #f8f8f8;
    --white-muted: #f1f1f1;
    --white-hover: #ededed;

    /* DARK TEXT */
    --text-dark: #111111;
    --text-mid: #555555;
    --text-muted: #858585;

    /* BORDERS */
    --border-light: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.12);

    --border-white: rgba(255, 255, 255, 0.10);
    --border-white-soft: rgba(255, 255, 255, 0.14);
    --border-white-strong: rgba(255, 255, 255, 0.24);

    /* SHADOWS */
    --shadow-header:
        0 14px 45px rgba(0, 0, 0, 0.28);

    --shadow-dropdown:
        0 22px 65px rgba(0, 0, 0, 0.24);

    --shadow-mobile:
        0 18px 50px rgba(0, 0, 0, 0.28);

    /* RADIUS */
    --radius-xs: 3px;
    --radius-small: 5px;
    --radius-medium: 7px;
    --radius-large: 9px;

    /* DIMENSIONS */
    --header-height: 86px;
    --contact-height: 42px;
    --container-width: 1480px;

    /* ANIMATION */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   TOP CONTACT BAR
========================================================= */

.header-info {
    width: 100%;
    min-height: var(--contact-height);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    padding: 7px 24px;

    background: #000000;
    color: #ffffff;

    border-bottom: 1px solid var(--border-white);

    position: relative;
    z-index: 1005;
}

.header-info .contact-item {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-info .contact-item a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: 0.1px;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.header-info .contact-item a:hover {
    color: #d4d4d4;
}

.header-info .contact-item i {
    font-size: 10px;
    opacity: 0.88;
}

.contact-divider {
    width: 1px;
    height: 15px;

    flex: 0 0 auto;

    background: rgba(255, 255, 255, 0.26);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    width: 100%;
    height: var(--header-height);

    position: sticky;
    top: 0;

    z-index: 1000;

    background: #000000;

    border-bottom: 1px solid var(--border-white);

    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.97);

    box-shadow: var(--shadow-header);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
    width: min(calc(100% - 64px), var(--container-width));

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    position: relative;

    overflow: visible;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 175px;
    min-width: 175px;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    position: relative;
    z-index: 1005;

    transition: opacity 0.25s ease;
}

.logo:hover {
    opacity: 0.88;
}

.logo-image {
    width: auto;

    height: 58px;

    max-width: 165px;

    object-fit: contain;

    transition:
        transform 0.35s var(--ease);
}

.logo:hover .logo-image {
    transform: scale(1.025);
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    height: 100%;

    margin-left: auto;

    display: flex;
    align-items: center;

    overflow: visible;
}

.menu {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 3px;

    overflow: visible;
}

.menu-items {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;

    overflow: visible;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.main-nav-link,
.sub-btn {

    height: 46px;

    display: inline-flex;
    align-items: center;

    position: relative;

    padding: 0 16px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 12.5px;
    font-weight: 500;

    letter-spacing: 0.02px;

    line-height: 1;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.main-nav-link:hover,
.sub-btn:hover {
    color: #d5d5d5;
}

.main-nav-link::after,
.sub-btn::after {

    content: "";

    position: absolute;

    left: 16px;
    right: 16px;

    bottom: 2px;

    height: 1px;

    background: #ffffff;

    transform: scaleX(0);

    transform-origin: right center;

    transition:
        transform 0.35s var(--ease);
}

.main-nav-link:hover::after,
.sub-btn:hover::after,
.menu-items:focus-within > .main-nav-link::after,
.menu-items:focus-within > .sub-btn::after {

    transform: scaleX(1);

    transform-origin: left center;
}


/* =========================================================
   DROPDOWN BUTTON
========================================================= */

.sub-btn {
    gap: 8px;
    cursor: pointer;
}

.dropdown-icon {

    font-size: 8px;

    opacity: 0.62;

    transition:
        transform 0.35s var(--ease),
        opacity 0.25s ease;
}

.has-dropdown:hover > .sub-btn .dropdown-icon,
.has-dropdown.desktop-open > .sub-btn .dropdown-icon,
.has-dropdown.open > .sub-btn .dropdown-icon {

    transform: rotate(180deg);

    opacity: 1;
}


/* =========================================================
   ALL DESTINATIONS
========================================================= */

.all-destinations-item {
    margin-right: 6px;
}

.world-map-link {

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    border-radius: 50%;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s var(--ease);
}

.world-map-link i {
    font-size: 16px;
}

.world-map-link:hover {

    background: #ffffff;

    color: #000000;

    transform: rotate(7deg);
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.contact-item-nav {
    margin-left: 9px;
}

.contact-nav-link {

    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 19px;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.48);

    border-radius: var(--radius-medium);

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.08px;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s var(--ease),
        box-shadow 0.3s ease;
}

.contact-nav-link:hover {

    background: #ffffff;

    color: #000000;

    border-color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.08);
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.sub-menu {

    position: absolute;

    top: calc(100% - 1px);
    left: 50%;

    width: 205px;

    padding: 7px;

    background: #ffffff;

    color: #111111;

    border: 1px solid var(--border-light);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-dropdown);

    opacity: 0;
    visibility: hidden;

    transform: translate(-50%, 10px);

    pointer-events: none;

    z-index: 1200;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.35s var(--ease);
}


/* =========================================================
   DESKTOP DROPDOWN OPEN
========================================================= */

@media (hover: hover) and (pointer: fine) {

    .has-dropdown:hover > .sub-menu,
    .has-dropdown.desktop-open > .sub-menu,
    .has-dropdown.open > .sub-menu {

        opacity: 1;
        visibility: visible;

        transform: translate(-50%, 0);

        pointer-events: auto;
    }
}

.north-america-menu {
    width: 198px;
}

.africa-menu {
    width: 198px;
}

.asia-sub-menu {
    width: 215px;
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.dropdown-item,
.asia-destination-item {

    position: relative;

    border-radius: var(--radius-small);
}

.dropdown-link,
.asia-destination-link {

    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 0 12px;

    color: #111111;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;
    font-weight: 500;

    line-height: 1.2;

    border-radius: var(--radius-small);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        padding-left 0.3s var(--ease);
}

.dropdown-link:hover,
.asia-destination-link:hover {

    background: #f1f1f1;

    color: #000000;

    padding-left: 17px;
}


/* =========================================================
   DROPDOWN ARROWS
========================================================= */

.dropdown-link-arrow,
.pakistan-link-arrow {

    font-size: 12px;

    line-height: 1;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity 0.25s ease,
        transform 0.3s var(--ease);
}

.dropdown-link:hover .dropdown-link-arrow,
.asia-destination-link:hover .dropdown-link-arrow,
.pakistan-link:hover .pakistan-link-arrow {

    opacity: 0.8;

    transform: translateX(0);
}


/* =========================================================
   PAKISTAN NESTED ITEM
========================================================= */

.has-nested-menu {

    position: relative;

    border-radius: var(--radius-small);
}

.nested-sub-btn {

    width: 100%;

    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 12px;

    color: #111111;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;
    font-weight: 600;

    line-height: 1.2;

    border-radius: var(--radius-small);

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        padding-left 0.3s var(--ease);
}

.nested-sub-btn:hover,
.has-nested-menu.desktop-open > .nested-sub-btn,
.has-nested-menu.open > .nested-sub-btn {

    background: #f1f1f1;

    color: #000000;

    padding-left: 17px;
}

.nested-dropdown-icon {

    font-size: 8px;

    opacity: 0.55;

    transition:
        transform 0.3s var(--ease),
        opacity 0.25s ease;
}

.has-nested-menu:hover > .nested-sub-btn .nested-dropdown-icon,
.has-nested-menu.desktop-open > .nested-sub-btn .nested-dropdown-icon,
.has-nested-menu.open > .nested-sub-btn .nested-dropdown-icon {

    transform: translateX(3px);

    opacity: 1;
}


/* =========================================================
   PAKISTAN NESTED PANEL
========================================================= */

.nested-sub-menu {

    position: absolute;

    top: -7px;

    left: calc(100% + 8px);

    width: 270px;

    max-height: min(calc(100vh - 110px), 580px);

    overflow-y: auto;
    overflow-x: hidden;

    padding: 8px;

    background: #ffffff;

    color: #111111;

    border: 1px solid var(--border-light);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-dropdown);

    opacity: 0;
    visibility: hidden;

    transform: translateX(10px);

    pointer-events: none;

    z-index: 1250;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.35s var(--ease);

    scrollbar-width: thin;
    scrollbar-color: #bcbcbc transparent;
}

@media (hover: hover) and (pointer: fine) {

    .has-nested-menu:hover > .nested-sub-menu,
    .has-nested-menu.desktop-open > .nested-sub-menu,
    .has-nested-menu.open > .nested-sub-menu {

        opacity: 1;
        visibility: visible;

        transform: translateX(0);

        pointer-events: auto;
    }
}


/* =========================================================
   PAKISTAN CATEGORY TITLES
========================================================= */

.pakistan-category-title {

    position: relative;

    display: flex;
    align-items: center;

    min-height: 33px;

    margin-top: 3px;

    padding: 7px 9px;

    color: #777777;

    font-family: "Poppins", sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.25px;

    line-height: 1.3;

    border-radius: var(--radius-small);

    cursor: default;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        padding-left 0.3s var(--ease);
}

.pakistan-category-title::before {

    content: "";

    width: 2px;
    height: 0;

    margin-right: 7px;

    background: #000000;

    border-radius: 20px;

    transition:
        height 0.3s var(--ease);
}

.pakistan-category-title:hover {

    background: #f1f1f1;

    color: #111111;

    padding-left: 13px;
}

.pakistan-category-title:hover::before {
    height: 12px;
}

.pakistan-category-title:not(:first-child) {

    margin-top: 6px;

    border-top: 1px solid #ededed;
}


/* =========================================================
   PAKISTAN LINKS
========================================================= */

.pakistan-link-item {
    position: relative;
    border-radius: var(--radius-small);
}

.pakistan-link {

    min-height: 41px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 0 10px;

    color: #151515;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 500;

    line-height: 1.2;

    border-radius: var(--radius-small);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        padding-left 0.3s var(--ease);
}

.pakistan-link:hover {

    background: #f1f1f1;

    color: #000000;

    padding-left: 16px;
}


/* =========================================================
   DESKTOP SCROLLBAR
========================================================= */

.nested-sub-menu::-webkit-scrollbar {
    width: 4px;
}

.nested-sub-menu::-webkit-scrollbar-track {
    background: transparent;
}

.nested-sub-menu::-webkit-scrollbar-thumb {

    background: #bcbcbc;

    border-radius: 20px;
}

.nested-sub-menu::-webkit-scrollbar-thumb:hover {
    background: #777777;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {

    width: 46px;
    height: 46px;

    margin-left: auto;

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    position: relative;

    z-index: 1400;

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: var(--radius-medium);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.menu-toggle:hover {

    background: #ffffff;

    border-color: #ffffff;
}

.menu-toggle-line {

    width: 19px;
    height: 1.5px;

    background: #ffffff;

    transition:
        transform 0.3s var(--ease),
        opacity 0.25s ease,
        background-color 0.25s ease;
}

.menu-toggle:hover .menu-toggle-line {
    background: #000000;
}

.menu-toggle.active {

    background: #ffffff;

    border-color: #ffffff;
}

.menu-toggle.active .menu-toggle-line {
    background: #000000;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {

    opacity: 0;

    transform: scaleX(0);
}

.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}


/* =========================================================
   HEADER AFTER IMAGE
========================================================= */

.header-after {

    width: 100%;

    position: relative;

    overflow: hidden;

    background: #000000;

    line-height: 0;
}

.header-after-image {

    width: 100%;

    height: auto;

    max-width: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    filter:
        brightness(0.84)
        saturate(0.94);

    transition:
        transform 1.2s var(--ease);
}

.header-after:hover .header-after-image {
    transform: scale(1.012);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .header-inner {

        width: min(calc(100% - 90px), 1580px);
    }

    .logo {

        width: 190px;
        min-width: 190px;
    }

    .logo-image {

        height: 61px;
        max-width: 172px;
    }

    .main-nav-link,
    .sub-btn {

        font-size: 13px;

        padding-left: 17px;
        padding-right: 17px;
    }

    .main-nav-link::after,
    .sub-btn::after {

        left: 17px;
        right: 17px;
    }

    .contact-nav-link {

        font-size: 11.5px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .sub-menu {
        width: 210px;
    }

    .north-america-menu,
    .africa-menu {
        width: 202px;
    }

    .asia-sub-menu {
        width: 220px;
    }

    .nested-sub-menu {
        width: 280px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1250px) {

    .header-inner {

        width: calc(100% - 42px);
    }

    .logo {

        width: 150px;
        min-width: 150px;
    }

    .logo-image {

        height: 53px;
        max-width: 145px;
    }

    .main-nav-link,
    .sub-btn {

        padding-left: 10px;
        padding-right: 10px;

        font-size: 11px;
    }

    .main-nav-link::after,
    .sub-btn::after {

        left: 10px;
        right: 10px;
    }

    .menu {
        gap: 0;
    }

    .contact-item-nav {
        margin-left: 6px;
    }

    .contact-nav-link {

        padding-left: 14px;
        padding-right: 14px;

        font-size: 10px;
    }

    .sub-menu {
        width: 195px;
    }

    .north-america-menu,
    .africa-menu {
        width: 192px;
    }

    .asia-sub-menu {
        width: 205px;
    }

    .nested-sub-menu {
        width: 255px;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    :root {

        --header-height: 74px;
        --contact-height: 40px;
    }


    /* -----------------------------------------------------
       CONTACT BAR
    ----------------------------------------------------- */

    .header-info {

        gap: 16px;

        padding: 7px 15px;

        min-height: var(--contact-height);
    }

    .header-info .contact-item a {

        font-size: 9.5px;

        gap: 7px;
    }

    .contact-divider {
        height: 13px;
    }


    /* -----------------------------------------------------
       HEADER
    ----------------------------------------------------- */

    .header-inner {

        width: calc(100% - 28px);
    }

    .logo {

        width: auto;
        min-width: 0;
    }

    .logo-image {

        height: 50px;
        max-width: 145px;
    }


    /* -----------------------------------------------------
       MOBILE TOGGLE
    ----------------------------------------------------- */

    .menu-toggle {
        display: flex;
    }


    /* -----------------------------------------------------
       MOBILE NAVIGATION
    ----------------------------------------------------- */

    .navigation {

        position: fixed;

        top: calc(
            var(--contact-height) +
            var(--header-height)
        );

        left: 0;
        right: 0;

        width: 100%;

        height: calc(
            100dvh -
            var(--contact-height) -
            var(--header-height)
        );

        min-height: 0;

        display: block;

        padding:
            14px 14px
            max(28px, env(safe-area-inset-bottom));

        background: #000000;

        overflow-y: auto;
        overflow-x: hidden;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-12px);

        pointer-events: none;

        z-index: 1300;

        transition:
            opacity 0.28s ease,
            visibility 0.28s ease,
            transform 0.35s var(--ease);

        scrollbar-width: thin;
        scrollbar-color: #555555 transparent;
    }

    .navigation.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }

    .navigation::-webkit-scrollbar {
        width: 4px;
    }

    .navigation::-webkit-scrollbar-track {
        background: transparent;
    }

    .navigation::-webkit-scrollbar-thumb {

        background: #555555;

        border-radius: 20px;
    }


    /* -----------------------------------------------------
       MOBILE MENU
    ----------------------------------------------------- */

    .menu {

        width: 100%;

        height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;
    }

    .menu-items {

        width: 100%;

        height: auto;

        display: block;

        overflow: visible;
    }


    /* -----------------------------------------------------
       MOBILE MAIN LINKS
    ----------------------------------------------------- */

    .main-nav-link,
    .sub-btn {

        width: 100%;

        height: 52px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0 16px;

        color: #ffffff;

        background: #000000;

        font-size: 13px;

        font-weight: 500;

        border:
            1px solid rgba(255, 255, 255, 0.12);

        border-radius: 6px;

        transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease;
    }

    .main-nav-link::after,
    .sub-btn::after {
        display: none;
    }

    .main-nav-link:hover,
    .sub-btn:hover {

        color: #ffffff;

        background: #0d0d0d;

        border-color:
            rgba(255, 255, 255, 0.22);
    }


    /* -----------------------------------------------------
       MOBILE ALL DESTINATIONS
    ----------------------------------------------------- */

    .all-destinations-item {

        margin: 0;
    }

    .world-map-link {

        width: 100%;

        height: 52px;

        justify-content: flex-start;

        gap: 12px;

        padding: 0 16px;

        color: #ffffff;

        background: #000000;

        border:
            1px solid rgba(255, 255, 255, 0.12);

        border-radius: 6px;

        transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease;
    }

    .world-map-link i {
        font-size: 15px;
    }

    .world-map-link:hover {

        background: #0d0d0d;

        color: #ffffff;

        border-color:
            rgba(255, 255, 255, 0.22);

        transform: none;
    }

    .world-map-link::after {

        content: "All Destinations";

        color: #ffffff;

        font-family: "Poppins", sans-serif;

        font-size: 13px;

        font-weight: 500;
    }


    /* -----------------------------------------------------
       MOBILE DROPDOWN
       IMPORTANT:
       WHITE PANELS — NOT BLACK
    ----------------------------------------------------- */

    .sub-menu {

        position: static;

        width: 100% !important;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        margin-top: 0;

        background: #ffffff;

        color: #111111;

        border:
            1px solid rgba(255, 255, 255, 0.08);

        border-radius: 7px;

        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.24);

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

        z-index: auto;

        transition:
            max-height 0.48s var(--ease),
            margin-top 0.3s ease,
            padding 0.3s ease;
    }

    .has-dropdown.open > .sub-menu {

        max-height: 1800px;

        padding: 7px;

        margin-top: 5px;
    }


    /* -----------------------------------------------------
       MOBILE DROPDOWN LINKS
    ----------------------------------------------------- */

    .dropdown-item,
    .asia-destination-item {

        width: 100%;

        border-radius: 5px;
    }

    .dropdown-link,
    .asia-destination-link {

        width: 100%;

        min-height: 47px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding:
            0 13px;

        color: #111111;

        background: #ffffff;

        font-family: "Poppins", sans-serif;

        font-size: 12px;

        font-weight: 500;

        border-radius: 5px;

        transition:
            background-color 0.22s ease,
            color 0.22s ease,
            padding-left 0.3s var(--ease);
    }

    .dropdown-link:hover,
    .asia-destination-link:hover {

        background: #f0f0f0;

        color: #000000;

        padding-left: 18px;
    }

    .dropdown-link-arrow {

        opacity: 0.55;

        transform: none;

        color: #000000;
    }

    .dropdown-link:hover .dropdown-link-arrow,
    .asia-destination-link:hover .dropdown-link-arrow {

        opacity: 1;

        transform: translateX(2px);
    }


    /* -----------------------------------------------------
       MOBILE PAKISTAN
    ----------------------------------------------------- */

    .has-nested-menu {

        width: 100%;

        background: #ffffff;

        border-radius: 5px;
    }

    .nested-sub-btn {

        width: 100%;

        min-height: 47px;

        padding:
            0 13px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        color: #111111;

        background: #ffffff;

        font-size: 12px;

        font-weight: 600;

        border-radius: 5px;

        transition:
            background-color 0.22s ease,
            color 0.22s ease,
            padding-left 0.3s var(--ease);
    }

    .nested-sub-btn:hover,
    .has-nested-menu.open > .nested-sub-btn {

        background: #ededed;

        color: #000000;

        padding-left: 18px;
    }

    .nested-dropdown-icon {

        color: #000000;

        opacity: 0.55;

        transition:
            transform 0.3s var(--ease),
            opacity 0.25s ease;
    }

    .has-nested-menu.open >
    .nested-sub-btn
    .nested-dropdown-icon {

        transform: rotate(90deg);

        opacity: 1;
    }


    /* -----------------------------------------------------
       MOBILE NESTED PAKISTAN PANEL
       WHITE — CLEARLY VISIBLE
    ----------------------------------------------------- */

    .nested-sub-menu {

        position: static;

        width: 100% !important;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        margin: 0;

        background: #f7f7f7;

        color: #111111;

        border: 0;

        border-radius: 5px;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

        z-index: auto;

        transition:
            max-height 0.48s var(--ease),
            padding 0.3s ease,
            margin 0.3s ease;
    }

    .has-nested-menu.open >
    .nested-sub-menu {

        max-height: 1800px;

        padding:
            6px;

        margin-top: 3px;
    }


    /* -----------------------------------------------------
       MOBILE PAKISTAN CATEGORY
    ----------------------------------------------------- */

    .pakistan-category-title {

        min-height: 35px;

        margin-top: 3px;

        padding:
            8px 10px;

        color: #777777;

        background: transparent;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 700;

        letter-spacing: 1.25px;

        line-height: 1.3;

        border-radius: 4px;

        transition:
            background-color 0.22s ease,
            color 0.22s ease,
            padding-left 0.3s var(--ease);
    }

    .pakistan-category-title::before {

        background: #000000;
    }

    .pakistan-category-title:hover {

        background: #ededed;

        color: #111111;

        padding-left: 14px;
    }

    .pakistan-category-title:hover::before {

        height: 12px;
    }

    .pakistan-category-title:not(:first-child) {

        margin-top: 6px;

        border-top:
            1px solid #e4e4e4;
    }


    /* -----------------------------------------------------
       MOBILE PAKISTAN DESTINATIONS
    ----------------------------------------------------- */

    .pakistan-link-item {

        width: 100%;

        border-radius: 5px;
    }

    .pakistan-link {

        width: 100%;

        min-height: 44px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding:
            0 11px 0 17px;

        color: #202020;

        background: transparent;

        font-family: "Poppins", sans-serif;

        font-size: 11.5px;

        font-weight: 500;

        border-radius: 5px;

        transition:
            background-color 0.22s ease,
            color 0.22s ease,
            padding-left 0.3s var(--ease);
    }

    .pakistan-link:hover {

        background: #eaeaea;

        color: #000000;

        padding-left: 22px;
    }

    .pakistan-link-arrow {

        color: #000000;

        opacity: 0.5;

        transform: none;
    }

    .pakistan-link:hover .pakistan-link-arrow {

        opacity: 1;

        transform: translateX(2px);
    }


    /* -----------------------------------------------------
       MOBILE CONTACT BUTTON
    ----------------------------------------------------- */

    .contact-item-nav {

        width: 100%;

        margin:
            8px 0 0;
    }

    .contact-nav-link {

        width: 100%;

        height: 49px;

        border-radius: 6px;

        font-size: 12px;

        background: #ffffff;

        color: #000000;

        border-color: #ffffff;

        box-shadow: none;
    }

    .contact-nav-link:hover {

        background: #ededed;

        color: #000000;

        border-color: #ededed;

        transform: none;

        box-shadow: none;
    }


    /* -----------------------------------------------------
       IMAGE
    ----------------------------------------------------- */

    .header-after-image {

        width: 100%;

        height: auto;

        object-fit: contain;

        transform: none;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 600px) {

    :root {

        --header-height: 68px;
        --contact-height: 38px;
    }


    /* CONTACT BAR */

    .header-info {

        gap: 10px;

        padding:
            6px 10px;
    }

    .header-info .contact-item a {

        font-size: 8px;

        gap: 6px;
    }

    .header-info .contact-item i {

        font-size: 8px;
    }

    .contact-divider {

        height: 11px;
    }


    /* HEADER */

    .header-inner {

        width: calc(100% - 20px);
    }

    .logo-image {

        height: 45px;

        max-width: 132px;
    }


    /* TOGGLE */

    .menu-toggle {

        width: 43px;
        height: 43px;
    }


    /* NAV */

    .navigation {

        top:
            calc(
                var(--contact-height) +
                var(--header-height)
            );

        height:
            calc(
                100dvh -
                var(--contact-height) -
                var(--header-height)
            );

        padding:
            10px 10px
            max(24px, env(safe-area-inset-bottom));
    }


    /* MAIN LINKS */

    .main-nav-link,
    .sub-btn,
    .world-map-link {

        height: 50px;

        min-height: 50px;
    }

    .main-nav-link,
    .sub-btn {

        font-size: 12.5px;

        padding-left: 14px;
        padding-right: 14px;
    }

    .world-map-link {

        padding-left: 14px;
        padding-right: 14px;
    }

    .world-map-link::after {

        font-size: 12.5px;
    }


    /* WHITE DROPDOWN */

    .has-dropdown.open > .sub-menu {

        padding: 6px;
    }

    .dropdown-link,
    .asia-destination-link {

        min-height: 45px;

        font-size: 11.5px;

        padding-left: 12px;
        padding-right: 12px;
    }

    .dropdown-link:hover,
    .asia-destination-link:hover {

        padding-left: 17px;
    }


    /* PAKISTAN */

    .nested-sub-btn {

        min-height: 45px;

        font-size: 11.5px;

        padding-left: 12px;
        padding-right: 12px;
    }

    .pakistan-category-title {

        font-size: 7.5px;

        letter-spacing: 1.15px;
    }

    .pakistan-link {

        min-height: 43px;

        font-size: 11px;

        padding-left: 15px;
    }

    .pakistan-link:hover {

        padding-left: 20px;
    }


    /* CONTACT */

    .contact-nav-link {

        height: 47px;

        font-size: 11.5px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .header-info {

        gap: 7px;
    }

    .header-info .contact-item a {

        font-size: 7.2px;
    }

    .header-info .contact-item i {

        font-size: 7px;
    }

    .logo-image {

        max-width: 120px;

        height: 42px;
    }

    .menu-toggle {

        width: 40px;
        height: 40px;
    }

    .navigation {

        padding-left: 8px;
        padding-right: 8px;
    }

    .main-nav-link,
    .sub-btn {

        font-size: 12px;
    }

    .dropdown-link,
    .asia-destination-link {

        font-size: 11px;
    }

    .nested-sub-btn {

        font-size: 11px;
    }

    .pakistan-link {

        font-size: 10.5px;
    }
}


/* =========================================================
   LANDSCAPE PHONES
========================================================= */

@media (max-width: 900px) and (orientation: landscape) {

    .navigation {

        padding-bottom:
            max(50px, env(safe-area-inset-bottom));
    }

    .main-nav-link,
    .sub-btn,
    .world-map-link {

        height: 48px;

        min-height: 48px;
    }

    .dropdown-link,
    .asia-destination-link {

        min-height: 43px;
    }

    .pakistan-link {

        min-height: 41px;
    }
}


/* =========================================================
   NARROW TABLETS
========================================================= */

@media (min-width: 601px) and (max-width: 900px) {

    .navigation {

        padding-left: 18px;
        padding-right: 18px;
    }

    .main-nav-link,
    .sub-btn,
    .world-map-link {

        height: 54px;
    }

    .dropdown-link,
    .asia-destination-link {

        min-height: 48px;

        font-size: 12.5px;
    }

    .nested-sub-btn {

        min-height: 48px;

        font-size: 12.5px;
    }

    .pakistan-link {

        min-height: 45px;

        font-size: 11.5px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .header-after:hover .header-after-image {

        transform: none;
    }

    .logo:hover .logo-image {

        transform: none;
    }

    .world-map-link:hover {

        transform: none;
    }

    .contact-nav-link:hover {

        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }
}


/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.main-nav-link:focus-visible,
.sub-btn:focus-visible,
.nested-sub-btn:focus-visible,
.dropdown-link:focus-visible,
.asia-destination-link:focus-visible,
.pakistan-link:focus-visible,
.contact-nav-link:focus-visible,
.world-map-link:focus-visible,
.menu-toggle:focus-visible,
.logo:focus-visible {

    outline:
        1px solid rgba(255, 255, 255, 0.9);

    outline-offset: 3px;
}


/* =========================================================
   PRINT
========================================================= */

@media print {

    .header-info,
    .main-header {

        position: static;

        background: #ffffff;

        color: #000000;

        box-shadow: none;
    }

    .navigation,
    .menu-toggle {

        display: none;
    }

    .logo-image {

        filter: brightness(0);
    }
}
/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER END
========================================================= */

/* =========================================================
   SAUDI ARABIA
   PREMIUM WHITE DESIGN
========================================================= */

.saudi-page {
    --black: #080808;
    --gray: #666;
    --light: #f7f7f5;
    --line: #dedede;
    --ease: cubic-bezier(.22,.61,.36,1);

    width: 100%;
    background: #fff;
    color: var(--black);
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.saudi-page *,
.saudi-page *::before,
.saudi-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.saudi-container {
    width: min(1380px, calc(100% - 80px));
    margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.saudi-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
}

.saudi-hero-image {
    position: absolute;
    inset: 0;
    background: url("images/saudi-hero.jpg")
        center / cover no-repeat;
    transition: transform .9s var(--ease);
}

.saudi-hero:hover .saudi-hero-image {
    transform: scale(1.035);
}

.saudi-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.52);
}

.saudi-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 100px 0;
}

.saudi-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: pointer;
}

.saudi-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(55px, 8vw, 100px);
    line-height: .95;
    font-weight: 500;
    letter-spacing: -.055em;
    cursor: pointer;
    transition: transform .3s ease;
}

.saudi-hero h1:hover {
    transform: translateX(8px);
}

.saudi-hero-description {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.8;
    cursor: pointer;
}


/* =========================================================
   ABOUT
========================================================= */

.saudi-about {
    padding: 110px 0;
    background: #fff;
}

.section-intro {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}

.section-label {
    padding-top: 7px;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
}

.section-intro-copy h2 {
    max-width: 900px;
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 55px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.045em;
    cursor: pointer;
    transition: transform .3s ease;
}

.section-intro-copy h2:hover {
    transform: translateX(7px);
}

.section-intro-copy p {
    max-width: 760px;
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    cursor: pointer;
    transition: color .3s ease;
}

.section-intro-copy p:hover {
    color: #000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 65px;
}

.about-image {
    overflow: hidden;
    cursor: pointer;
}

.about-image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.about-image:hover img {
    transform: scale(1.045);
}

.about-content {
    cursor: pointer;
}

.about-content p {
    margin: 0 0 22px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.95;
    cursor: pointer;
    transition:
        color .3s ease,
        transform .3s ease;
}

.about-content p:hover {
    color: #000;
    transform: translateX(6px);
}


/* =========================================================
   HOLY CITIES
========================================================= */

.holy-cities {
    padding: 110px 0;
    background: #fff;
}

.holy-heading {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}

.holy-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 55px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.045em;
    cursor: pointer;
    transition: transform .3s ease;
}

.holy-heading h2:hover {
    transform: translateX(7px);
}

.holy-heading p {
    max-width: 700px;
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    cursor: pointer;
}

.holy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 55px;
}

.holy-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.holy-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.holy-card:hover img {
    transform: scale(1.06);
}

.holy-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 35%,
        rgba(0,0,0,.82)
    );
}

.holy-card-content {
    position: absolute;
    z-index: 2;
    left: 35px;
    right: 35px;
    bottom: 32px;
    cursor: pointer;
}

.holy-card-content span {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
}

.holy-card h3 {
    margin: 0 0 10px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -.04em;
    cursor: pointer;
}

.holy-card p {
    max-width: 520px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.8;
    cursor: pointer;
    transition: color .3s ease;
}

.holy-card p:hover {
    color: #fff;
}


/* =========================================================
   HAJJ
========================================================= */

.hajj-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #fff;
    color: #000;
}

.hajj-background,
.hajj-overlay {
    display: none;
}

.hajj-header {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}

.hajj-eyebrow {
    padding-top: 7px;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
}

.hajj-header h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 55px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -.045em;
    cursor: pointer;
    transition: transform .3s ease;
}

.hajj-header h2:hover {
    transform: translateX(7px);
}

.hajj-header p {
    max-width: 700px;
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    cursor: pointer;
}

.hajj-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 55px;
}

.hajj-content p {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    cursor: pointer;
    transition:
        color .3s ease,
        transform .3s ease;
}

.hajj-content p:hover {
    color: #000;
    transform: translateY(-5px);
}


/* =========================================================
   EVERYTHING POINTER
========================================================= */

.saudi-page h1,
.saudi-page h2,
.saudi-page h3,
.saudi-page p,
.saudi-page span,
.saudi-page div,
.saudi-page img {
    cursor: pointer;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .saudi-container {
        width: calc(100% - 50px);
    }

    .section-intro,
    .holy-heading,
    .hajj-header {
        grid-template-columns: 170px 1fr;
        gap: 35px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image img {
        height: 420px;
    }

    .hajj-content {
        gap: 25px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .saudi-container {
        width: calc(100% - 32px);
    }

    .saudi-hero {
        min-height: 560px;
    }

    .saudi-hero-content {
        padding: 80px 0;
    }

    .saudi-hero h1 {
        font-size: 52px;
    }

    .saudi-about,
    .holy-cities,
    .hajj-section {
        padding: 75px 0;
    }

    .section-intro,
    .holy-heading,
    .hajj-header {
        display: block;
    }

    .section-label,
    .hajj-eyebrow {
        margin-bottom: 18px;
    }

    .section-intro-copy h2,
    .holy-heading h2,
    .hajj-header h2 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 45px;
    }

    .about-image img {
        height: 320px;
    }

    .holy-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 45px;
    }

    .holy-card {
        min-height: 380px;
    }

    .hajj-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 45px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .saudi-container {
        width: calc(100% - 26px);
    }

    .saudi-hero h1 {
        font-size: 46px;
    }

    .section-intro-copy h2,
    .holy-heading h2,
    .hajj-header h2 {
        font-size: 29px;
    }

    .about-image img {
        height: 280px;
    }

    .holy-card {
        min-height: 340px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .saudi-page *,
    .saudi-page *::before,
    .saudi-page *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   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;
    }

}