/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM 2026 HEADER
   FULL RESPONSIVE SYSTEM
   POPPINS / BLACK HEADER / GREEN DESTINATION HOVER
========================================================= */

@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: #fff;
    color: #111;

    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%;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --black: #000;
    --black-soft: #080808;
    --black-panel: #101010;

    --white: #fff;
    --white-soft: #f7f7f7;
    --white-hover: #ededed;

    --green: #32633E;
    --green-light: #6dab78;

    --text-dark: #111;
    --text-mid: #555;
    --text-muted: #888;

    --border-light: rgba(0,0,0,.08);
    --border-white: rgba(255,255,255,.12);
    --border-white-strong: rgba(255,255,255,.24);

    --shadow-header:
        0 14px 45px rgba(0,0,0,.28);

    --shadow-dropdown:
        0 24px 65px rgba(0,0,0,.24);

    --radius-small: 5px;
    --radius-medium: 7px;
    --radius-large: 9px;

    --header-height: 94px;
    --contact-height: 48px;

    --container-width: 1580px;

    --ease: cubic-bezier(.22,1,.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 / INFO BAR
========================================================= */

.header-info {
    width: 100%;
    min-height: var(--contact-height);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    padding: 9px 30px;

    background: #000;
    color: #fff;

    border-bottom: 1px solid rgba(255,255,255,.14);

    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: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: .15px;

    white-space: nowrap;

    transition:
        color .25s ease,
        opacity .25s ease;
}

.header-info .contact-item a:hover {
    color: var(--green-light);
}

.header-info .contact-item i {
    font-size: 11px;

    color: var(--green-light);
}

.contact-divider {
    width: 1px;
    height: 17px;

    flex: 0 0 auto;

    background: rgba(255,255,255,.28);
}


/* =========================================================
   MAIN HEADER
   ALWAYS BLACK
========================================================= */

.main-header {
    width: 100%;
    height: var(--header-height);

    position: sticky;
    top: 0;

    z-index: 1000;

    background: #000;
    color: #fff;

    border-bottom: 1px solid rgba(255,255,255,.13);

    transition:
        background-color .35s ease,
        box-shadow .35s ease;
}

.main-header.scrolled {
    background: #000;

    box-shadow: var(--shadow-header);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
    width: min(calc(100% - 70px), var(--container-width));

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    position: relative;

    overflow: visible;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 215px;
    min-width: 215px;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    position: relative;

    z-index: 1400;

    transition:
        opacity .25s ease,
        transform .3s var(--ease);
}

.logo:hover {
    opacity: .92;
}

.logo-image {
    width: auto;

    height: 72px;

    max-width: 205px;

    object-fit: contain;

    transition:
        transform .35s var(--ease);
}

.logo:hover .logo-image {
    transform: scale(1.035);
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    height: 100%;

    margin-left: auto;

    display: flex;
    align-items: center;

    overflow: visible;
}

.menu {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 4px;

    overflow: visible;
}

.menu-items {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;

    overflow: visible;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.main-nav-link,
.sub-btn {
    height: 50px;

    display: inline-flex;
    align-items: center;

    position: relative;

    padding: 0 18px;

    color: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: .1px;

    line-height: 1;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .25s ease,
        background-color .25s ease;
}

.main-nav-link:hover,
.sub-btn:hover {
    color: var(--green-light);
}

.main-nav-link::after,
.sub-btn::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;

    bottom: 3px;

    height: 1px;

    background: var(--green-light);

    transform: scaleX(0);

    transform-origin: right center;

    transition:
        transform .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;
}

.dropdown-icon {
    font-size: 8px;

    opacity: .65;

    transition:
        transform .35s var(--ease),
        opacity .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
   BLACK / WHITE / GREEN ICON
========================================================= */

.all-destinations-item {
    margin-right: 5px;
}

.world-map-link {
    min-width: 150px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;

    gap: 10px;

    padding: 0 17px;

    color: #fff;

    background: transparent;

    border-radius: 7px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    cursor: pointer;

    transform: none;

    transition:
        color .25s ease;
}


/* =========================================================
   WORLD ICON
========================================================= */

.world-map-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    font-size: 18px;

    color: var(--green-light);

    transition:
        color .25s ease,
        transform .35s var(--ease);
}


/* =========================================================
   DESTINATION TEXT
========================================================= */

.world-map-link::after {
    content: "All Destinations";

    display: inline-block;

    color: inherit;

    font-family: "Poppins", sans-serif;

    font-size: inherit;
    font-weight: inherit;

    white-space: nowrap;
}


/* =========================================================
   GREEN UNDERLINE
   WHOLE ICON + TEXT
========================================================= */

.world-map-link::before {
    content: "";

    position: absolute;

    left: 17px;
    right: 17px;

    bottom: 3px;

    height: 1px;

    background: var(--green-light);

    transform: scaleX(0);

    transform-origin: right center;

    transition:
        transform .35s var(--ease);
}

.world-map-link:hover::before,
.world-map-link:focus-visible::before {
    transform: scaleX(1);

    transform-origin: left center;
}


/* =========================================================
   ALL DESTINATIONS HOVER
   NO WHITE BACKGROUND
========================================================= */

.world-map-link:hover {
    color: var(--green-light);

    background: transparent;

    transform: none;
}

.world-map-link:hover i {
    color: var(--green-light);

    transform: translateX(2px);
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.contact-item-nav {
    margin-left: 12px;
}

.contact-nav-link {
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    color: #fff;

    border: 1px solid rgba(255,255,255,.48);

    border-radius: 7px;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: .1px;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s var(--ease),
        box-shadow .3s ease;
}

.contact-nav-link:hover {
    background: #fff;

    color: #000;

    border-color: #fff;

    transform: translateY(-1px);

    box-shadow:
        0 9px 28px rgba(255,255,255,.08);
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    top: calc(100% - 1px);
    left: 50%;

    width: 215px;

    padding: 7px;

    background: #fff;
    color: #111;

    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 .22s ease,
        visibility .22s ease,
        transform .35s var(--ease);
}

@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;
    }
}


/* =========================================================
   DROPDOWN WIDTHS
========================================================= */

.north-america-menu {
    width: 205px;
}

.africa-menu {
    width: 205px;
}

.asia-sub-menu {
    width: 225px;
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.dropdown-item,
.asia-destination-item {
    position: relative;

    border-radius: var(--radius-small);
}

.dropdown-link,
.asia-destination-link {
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 0 13px;

    color: #111;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;
    font-weight: 500;

    line-height: 1.2;

    border-radius: var(--radius-small);

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        padding-left .3s var(--ease);
}

.dropdown-link:hover,
.asia-destination-link:hover {
    background: #f1f1f1;

    color: #000;

    padding-left: 18px;
}


/* =========================================================
   DROPDOWN ARROWS
========================================================= */

.dropdown-link-arrow,
.pakistan-link-arrow {
    font-size: 12px;

    line-height: 1;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity .25s ease,
        transform .3s var(--ease);
}

.dropdown-link:hover .dropdown-link-arrow,
.asia-destination-link:hover .dropdown-link-arrow,
.pakistan-link:hover .pakistan-link-arrow {
    opacity: .8;

    transform: translateX(0);
}


/* =========================================================
   PAKISTAN NESTED MENU
========================================================= */

.has-nested-menu {
    position: relative;

    border-radius: var(--radius-small);
}

.nested-sub-btn {
    width: 100%;

    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 13px;

    color: #111;

    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 .25s ease,
        color .25s ease,
        padding-left .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: #000;

    padding-left: 18px;
}

.nested-dropdown-icon {
    font-size: 8px;

    opacity: .55;

    transition:
        transform .3s var(--ease),
        opacity .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: 285px;

    max-height: min(calc(100vh - 110px), 580px);

    overflow-y: auto;
    overflow-x: hidden;

    padding: 8px;

    background: #fff;
    color: #111;

    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 .22s ease,
        visibility .22s ease,
        transform .35s var(--ease);

    scrollbar-width: thin;

    scrollbar-color: #bbb 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: 34px;

    margin-top: 3px;

    padding: 7px 10px;

    color: #777;

    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: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        padding-left .3s var(--ease);
}

.pakistan-category-title::before {
    content: "";

    width: 2px;
    height: 0;

    margin-right: 7px;

    background: var(--green);

    border-radius: 20px;

    transition:
        height .3s var(--ease);
}

.pakistan-category-title:hover {
    background: #f1f1f1;

    color: #111;

    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 DESTINATION LINKS
========================================================= */

.pakistan-link-item {
    position: relative;

    border-radius: var(--radius-small);
}

.pakistan-link {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 0 11px;

    color: #151515;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 500;

    line-height: 1.2;

    border-radius: var(--radius-small);

    cursor: pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        padding-left .3s var(--ease);
}

.pakistan-link:hover {
    background: #f1f1f1;

    color: #000;

    padding-left: 17px;
}


/* =========================================================
   SCROLLBAR
========================================================= */

.nested-sub-menu::-webkit-scrollbar {
    width: 4px;
}

.nested-sub-menu::-webkit-scrollbar-track {
    background: transparent;
}

.nested-sub-menu::-webkit-scrollbar-thumb {
    background: #bbb;

    border-radius: 20px;
}

.nested-sub-menu::-webkit-scrollbar-thumb:hover {
    background: #777;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    width: 48px;
    height: 48px;

    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,.28);

    border-radius: 7px;

    background: #000;

    transition:
        background-color .3s ease,
        border-color .3s ease;
}

.menu-toggle:hover {
    background: #fff;

    border-color: #fff;
}

.menu-toggle-line {
    width: 20px;
    height: 1.5px;

    background: #fff;

    transition:
        transform .3s var(--ease),
        opacity .25s ease,
        background-color .25s ease;
}

.menu-toggle:hover .menu-toggle-line {
    background: #000;
}

.menu-toggle.active {
    background: #fff;

    border-color: #fff;
}

.menu-toggle.active .menu-toggle-line {
    background: #000;
}

.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);
}


/* =========================================================
   IMAGE AFTER HEADER
========================================================= */

.header-after {
    width: 100%;

    position: relative;

    overflow: hidden;

    background: #000;

    line-height: 0;
}

.header-after-image {
    width: 100%;
    height: auto;

    max-width: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    filter:
        brightness(.84)
        saturate(.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),
                1650px
            );
    }

    .logo {
        width: 235px;
        min-width: 235px;
    }

    .logo-image {
        height: 78px;
        max-width: 225px;
    }

    .main-nav-link,
    .sub-btn {
        font-size: 13.5px;

        padding-left: 19px;
        padding-right: 19px;
    }

    .main-nav-link::after,
    .sub-btn::after {
        left: 19px;
        right: 19px;
    }

    .world-map-link {
        font-size: 13.5px;

        min-width: 158px;
    }

    .world-map-link i {
        font-size: 19px;
    }

    .world-map-link::before {
        left: 17px;
        right: 17px;
    }

    .contact-nav-link {
        font-size: 12px;

        padding-left: 23px;
        padding-right: 23px;
    }

    .sub-menu {
        width: 220px;
    }

    .north-america-menu,
    .africa-menu {
        width: 210px;
    }

    .asia-sub-menu {
        width: 230px;
    }

    .nested-sub-menu {
        width: 290px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width:1250px) {

    :root {
        --header-height: 88px;
    }

    .header-inner {
        width: calc(100% - 42px);
    }

    .logo {
        width: 195px;
        min-width: 195px;
    }

    .logo-image {
        height: 67px;
        max-width: 185px;
    }

    .main-nav-link,
    .sub-btn {
        padding-left: 10px;
        padding-right: 10px;

        font-size: 11.5px;
    }

    .main-nav-link::after,
    .sub-btn::after {
        left: 10px;
        right: 10px;
    }

    .menu {
        gap: 1px;
    }

    .world-map-link {
        min-width: 135px;

        padding-left: 10px;
        padding-right: 10px;

        font-size: 11.5px;
    }

    .world-map-link i {
        font-size: 16px;
    }

    .world-map-link::before {
        left: 10px;
        right: 10px;
    }

    .contact-item-nav {
        margin-left: 5px;
    }

    .contact-nav-link {
        padding-left: 14px;
        padding-right: 14px;

        font-size: 10.5px;
    }

    .sub-menu {
        width: 200px;
    }

    .north-america-menu,
    .africa-menu {
        width: 195px;
    }

    .asia-sub-menu {
        width: 210px;
    }

    .nested-sub-menu {
        width: 260px;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width:900px) {

    :root {
        --header-height: 78px;
        --contact-height: 43px;
    }


    /* =====================================================
       TOP INFO
    ===================================================== */

    .header-info {
        gap: 17px;

        padding: 7px 15px;

        background: #000;
        color: #fff;
    }

    .header-info .contact-item a {
        font-size: 9.5px;

        gap: 7px;

        color: #fff;
    }

    .header-info .contact-item i {
        font-size: 9px;

        color: var(--green-light);
    }

    .contact-divider {
        height: 13px;

        background: rgba(255,255,255,.28);
    }


    /* =====================================================
       MAIN HEADER
    ===================================================== */

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;

        border-bottom: 1px solid rgba(255,255,255,.13);

        box-shadow:
            0 10px 30px rgba(0,0,0,.25);

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header-inner {
        width: calc(100% - 28px);
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .logo {
        width: auto;

        min-width: 0;
    }

    .logo-image {
        height: 61px;

        max-width: 175px;
    }


    /* =====================================================
       MOBILE TOGGLE
    ===================================================== */

    .menu-toggle {
        display: flex;

        background: #000;

        border:
            1px solid rgba(255,255,255,.28);
    }

    .menu-toggle:hover {
        background: #fff;

        border-color: #fff;
    }

    .menu-toggle-line {
        background: #fff;
    }

    .menu-toggle:hover .menu-toggle-line {
        background: #000;
    }

    .menu-toggle.active {
        background: #fff;

        border-color: #fff;
    }

    .menu-toggle.active .menu-toggle-line {
        background: #000;
    }


    /* =====================================================
       MOBILE NAVIGATION
       WHITE OPEN MENU
    ===================================================== */

    .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: #fff;

        color: #000;

        overflow-y: auto;
        overflow-x: hidden;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-12px);

        pointer-events: none;

        z-index: 1300;

        border-top: 1px solid #e5e5e5;

        transition:
            opacity .28s ease,
            visibility .28s ease,
            transform .35s var(--ease);

        scrollbar-width: thin;

        scrollbar-color: #aaa 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: #aaa;

        border-radius: 20px;
    }


    /* =====================================================
       MOBILE MENU
    ===================================================== */

    .menu {
        width: 100%;

        height: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 6px;
    }

    .menu-items {
        width: 100%;

        height: auto;

        display: block;

        overflow: visible;
    }


    /* =====================================================
       MOBILE MAIN LINKS
    ===================================================== */

    .main-nav-link,
    .sub-btn {
        width: 100%;

        height: 53px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0 16px;

        color: #000;

        background: #fff;

        font-size: 13px;

        font-weight: 500;

        border:
            1px solid #dedede;

        border-radius: 7px;

        cursor: pointer;

        transition:
            background-color .25s ease,
            border-color .25s ease,
            color .25s ease,
            transform .25s ease;
    }

    .main-nav-link::after,
    .sub-btn::after {
        display: none;
    }

    .main-nav-link:hover,
    .sub-btn:hover {
        color: #000;

        background: #f5f5f5;

        border-color: #c8c8c8;

        transform: translateY(-1px);
    }

    .dropdown-icon {
        color: #000;

        opacity: .7;
    }


    /* =====================================================
       MOBILE ALL DESTINATIONS
       NO WHITE HOVER
    ===================================================== */

    .all-destinations-item {
        margin: 0;
    }

    .world-map-link {
        width: 100%;

        min-width: 0;

        height: 53px;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        position: relative;

        gap: 12px;

        padding: 0 16px;

        color: #000;

        background: #fff;

        border:
            1px solid #dedede;

        border-radius: 7px;

        font-size: 13px;

        font-weight: 500;

        transform: none;

        transition:
            color .25s ease,
            border-color .25s ease;
    }

    .world-map-link i {
        display: inline-flex;

        width: 21px;
        min-width: 21px;

        align-items: center;
        justify-content: center;

        font-size: 18px;

        color: var(--green);

        transition:
            color .25s ease,
            transform .3s ease;
    }

    .world-map-link::after {
        content: "All Destinations";

        display: inline-block;

        color: #000;

        font-family: "Poppins", sans-serif;

        font-size: 13px;

        font-weight: 500;

        white-space: nowrap;
    }

    .world-map-link::before {
        content: "";

        position: absolute;

        left: 16px;
        right: 16px;

        bottom: 3px;

        height: 1px;

        background: var(--green);

        transform: scaleX(0);

        transform-origin: right center;

        transition:
            transform .35s var(--ease);
    }

    .world-map-link:hover::before,
    .world-map-link:focus-visible::before {
        transform: scaleX(1);

        transform-origin: left center;
    }

    .world-map-link:hover {
        background: #fff;

        color: var(--green);

        border-color: #dedede;

        transform: none;
    }

    .world-map-link:hover i {
        color: var(--green);

        transform: translateX(2px);
    }


    /* =====================================================
       MOBILE DROPDOWNS
    ===================================================== */

    .sub-menu {
        position: static;

        width: 100% !important;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        margin-top: 0;

        background: #fff;

        color: #111;

        border:
            1px solid #dedede;

        border-radius: 7px;

        box-shadow:
            0 10px 30px rgba(0,0,0,.08);

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

        z-index: auto;

        transition:
            max-height .48s var(--ease),
            margin-top .3s ease,
            padding .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: 48px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0 13px;

        color: #111;

        background: #fff;

        font-family: "Poppins", sans-serif;

        font-size: 12px;

        font-weight: 500;

        border-radius: 5px;

        cursor: pointer;

        transition:
            background-color .22s ease,
            color .22s ease,
            padding-left .3s var(--ease);
    }

    .dropdown-link:hover,
    .asia-destination-link:hover {
        background: #f0f0f0;

        color: #000;

        padding-left: 18px;
    }

    .dropdown-link-arrow {
        opacity: .55;

        transform: none;

        color: #000;
    }

    .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: #fff;

        border-radius: 5px;
    }

    .nested-sub-btn {
        width: 100%;

        min-height: 48px;

        padding: 0 13px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        color: #111;

        background: #fff;

        font-size: 12px;

        font-weight: 600;

        border-radius: 5px;

        cursor: pointer;

        transition:
            background-color .22s ease,
            color .22s ease,
            padding-left .3s var(--ease);
    }

    .nested-sub-btn:hover,
    .has-nested-menu.open > .nested-sub-btn {
        background: #ededed;

        color: #000;

        padding-left: 18px;
    }

    .nested-dropdown-icon {
        color: #000;

        opacity: .55;

        transition:
            transform .3s var(--ease),
            opacity .25s ease;
    }

    .has-nested-menu.open >
    .nested-sub-btn
    .nested-dropdown-icon {

        transform: rotate(90deg);

        opacity: 1;
    }


    /* =====================================================
       MOBILE NESTED PANEL
    ===================================================== */

    .nested-sub-menu {
        position: static;

        width: 100% !important;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        margin: 0;

        background: #fff;

        color: #111;

        border: 0;

        border-radius: 5px;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

        z-index: auto;

        transition:
            max-height .48s var(--ease),
            padding .3s ease,
            margin .3s ease;
    }

    .has-nested-menu.open >
    .nested-sub-menu {

        max-height: 1800px;

        padding: 6px;

        margin-top: 3px;
    }


    /* =====================================================
       MOBILE PAKISTAN CATEGORIES
    ===================================================== */

    .pakistan-category-title {
        min-height: 36px;

        margin-top: 3px;

        padding: 8px 10px;

        color: #777;

        background: #fff;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 700;

        letter-spacing: 1.25px;

        line-height: 1.3;

        border-radius: 4px;

        cursor: pointer;

        transition:
            background-color .22s ease,
            color .22s ease,
            padding-left .3s var(--ease);
    }

    .pakistan-category-title::before {
        background: var(--green);
    }

    .pakistan-category-title:hover {
        background: #ededed;

        color: #111;

        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: 45px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding:
            0 11px 0 17px;

        color: #202020;

        background: #fff;

        font-family: "Poppins", sans-serif;

        font-size: 11.5px;

        font-weight: 500;

        border-radius: 5px;

        cursor: pointer;

        transition:
            background-color .22s ease,
            color .22s ease,
            padding-left .3s var(--ease);
    }

    .pakistan-link:hover {
        background: #eaeaea;

        color: #000;

        padding-left: 22px;
    }

    .pakistan-link-arrow {
        color: #000;

        opacity: .5;

        transform: none;
    }

    .pakistan-link:hover .pakistan-link-arrow {
        opacity: 1;

        transform: translateX(2px);
    }


    /* =====================================================
       MOBILE CONTACT
    ===================================================== */

    .contact-item-nav {
        width: 100%;

        margin:
            8px 0 0;
    }

    .contact-nav-link {
        width: 100%;

        height: 50px;

        border-radius: 7px;

        font-size: 12px;

        background: #000;

        color: #fff;

        border-color: #000;

        box-shadow: none;
    }

    .contact-nav-link:hover {
        background: #222;

        color: #fff;

        border-color: #222;

        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: 72px;
        --contact-height: 39px;
    }

    .header-info {
        gap: 9px;

        padding:
            6px 9px;

        background: #000;
        color: #fff;
    }

    .header-info .contact-item a {
        font-size: 8px;

        gap: 5px;

        color: #fff;
    }

    .header-info .contact-item i {
        font-size: 8px;

        color: var(--green-light);
    }

    .contact-divider {
        height: 11px;
    }

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;
    }

    .header-inner {
        width: calc(100% - 20px);
    }

    .logo-image {
        height: 55px;

        max-width: 165px;
    }


    /* TOGGLE */

    .menu-toggle {
        width: 44px;
        height: 44px;

        background: #000;

        border-color:
            rgba(255,255,255,.28);
    }

    .menu-toggle-line {
        background: #fff;
    }

    .menu-toggle:hover {
        background: #fff;

        border-color: #fff;
    }

    .menu-toggle:hover .menu-toggle-line {
        background: #000;
    }


    /* OPEN MENU */

    .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));

        background: #fff;

        color: #000;
    }


    /* MAIN LINKS */

    .main-nav-link,
    .sub-btn,
    .world-map-link {
        height: 51px;

        min-height: 51px;
    }

    .main-nav-link,
    .sub-btn {
        font-size: 12.5px;

        padding-left: 14px;
        padding-right: 14px;

        background: #fff;

        color: #000;

        border-color: #dedede;
    }


    /* DESTINATIONS */

    .world-map-link {
        padding-left: 14px;
        padding-right: 14px;

        gap: 11px;

        font-size: 12.5px;

        background: #fff;

        color: #000;
    }

    .world-map-link i {
        width: 20px;
        min-width: 20px;

        font-size: 17px;

        color: var(--green);
    }

    .world-map-link::after {
        font-size: 12.5px;

        color: #000;
    }

    .world-map-link::before {
        left: 14px;
        right: 14px;

        bottom: 3px;
    }

    .world-map-link:hover {
        background: #fff;

        color: var(--green);

        border-color: #dedede;
    }


    /* DROPDOWN */

    .has-dropdown.open > .sub-menu {
        padding: 6px;
    }

    .dropdown-link,
    .asia-destination-link {
        min-height: 46px;

        font-size: 11.5px;

        padding-left: 12px;
        padding-right: 12px;

        background: #fff;

        color: #111;
    }

    .dropdown-link:hover,
    .asia-destination-link:hover {
        padding-left: 17px;

        background: #f0f0f0;

        color: #000;
    }


    /* PAKISTAN */

    .nested-sub-btn {
        min-height: 46px;

        font-size: 11.5px;

        padding-left: 12px;
        padding-right: 12px;

        background: #fff;

        color: #111;
    }

    .pakistan-category-title {
        font-size: 7.5px;

        letter-spacing: 1.15px;

        background: #fff;
    }

    .pakistan-link {
        min-height: 44px;

        font-size: 11px;

        padding-left: 15px;

        background: #fff;

        color: #202020;
    }

    .pakistan-link:hover {
        padding-left: 20px;

        background: #eaeaea;
    }


    /* CONTACT */

    .contact-nav-link {
        height: 48px;

        font-size: 11.5px;

        background: #000;

        color: #fff;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width:390px) {

    .header-info {
        gap: 6px;

        background: #000;
    }

    .header-info .contact-item a {
        font-size: 7px;

        color: #fff;
    }

    .header-info .contact-item i {
        font-size: 7px;

        color: var(--green-light);
    }

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;
    }

    .logo-image {
        max-width: 150px;

        height: 51px;
    }

    .menu-toggle {
        width: 41px;
        height: 41px;

        background: #000;

        border-color:
            rgba(255,255,255,.28);
    }

    .menu-toggle-line {
        background: #fff;
    }

    .menu-toggle:hover {
        background: #fff;
    }

    .menu-toggle:hover .menu-toggle-line {
        background: #000;
    }

    .navigation {
        padding-left: 8px;
        padding-right: 8px;

        background: #fff;

        color: #000;
    }

    .main-nav-link,
    .sub-btn {
        font-size: 11.5px;

        color: #000;

        background: #fff;
    }

    .world-map-link {
        font-size: 11.5px;

        gap: 10px;

        color: #000;

        background: #fff;
    }

    .world-map-link i {
        font-size: 16px;

        color: var(--green);
    }

    .world-map-link::after {
        font-size: 11.5px;

        color: #000;
    }

    .world-map-link::before {
        left: 12px;
        right: 12px;
    }

    .world-map-link:hover {
        background: #fff;

        color: var(--green);
    }

    .dropdown-link,
    .asia-destination-link {
        font-size: 11px;

        color: #111;

        background: #fff;
    }

    .nested-sub-btn {
        font-size: 11px;

        color: #111;

        background: #fff;
    }

    .pakistan-link {
        font-size: 10.5px;

        color: #202020;

        background: #fff;
    }
}


/* =========================================================
   LANDSCAPE PHONES
========================================================= */

@media (max-width:900px) and (orientation:landscape) {

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;
    }

    .header-info {
        background: #000;

        color: #fff;
    }

    .navigation {
        padding-bottom:
            max(
                50px,
                env(safe-area-inset-bottom)
            );

        background: #fff;

        color: #000;
    }

    .main-nav-link,
    .sub-btn,
    .world-map-link {
        height: 49px;

        min-height: 49px;
    }

    .dropdown-link,
    .asia-destination-link {
        min-height: 43px;
    }

    .pakistan-link {
        min-height: 41px;
    }
}


/* =========================================================
   NARROW TABLETS
========================================================= */

@media (min-width:601px) and (max-width:900px) {

    .main-header,
    .main-header.scrolled {
        background: #000;

        color: #fff;
    }

    .header-info {
        background: #000;

        color: #fff;
    }

    .navigation {
        padding-left: 18px;
        padding-right: 18px;

        background: #fff;

        color: #000;
    }

    .main-nav-link,
    .sub-btn,
    .world-map-link {
        height: 55px;

        background: #fff;

        color: #000;
    }

    .dropdown-link,
    .asia-destination-link {
        min-height: 49px;

        font-size: 12.5px;

        background: #fff;

        color: #111;
    }

    .nested-sub-btn {
        min-height: 49px;

        font-size: 12.5px;

        background: #fff;

        color: #111;
    }

    .pakistan-link {
        min-height: 46px;

        font-size: 11.5px;

        background: #fff;

        color: #202020;
    }

    .world-map-link {
        font-size: 13px;

        background: #fff;

        color: #000;
    }

    .world-map-link i {
        font-size: 18px;

        color: var(--green);
    }

    .world-map-link::before {
        left: 16px;
        right: 16px;
    }

    .world-map-link:hover {
        background: #fff;

        color: var(--green);
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover:none) {

    .header-after:hover .header-after-image {
        transform: none;
    }

    .logo:hover .logo-image {
        transform: none;
    }

    .world-map-link:hover {
        background: transparent;
        transform: none;
    }

    .world-map-link:hover i {
        transform: none;
    }

    .contact-nav-link:hover {
        transform: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .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:
        2px solid var(--green);

    outline-offset: 3px;
}


/* =========================================================
   PRINT
========================================================= */

@media print {

    .header-info,
    .main-header {
        position: static;

        background: #fff;

        color: #000;

        box-shadow: none;
    }

    .navigation,
    .menu-toggle {
        display: none;
    }

    .logo-image {
        filter: brightness(0);
    }
}


/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM 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: 400px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
    text-align: left;

    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;
    }

}