/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER
   PREMIUM / STABLE DROPDOWNS / MOBILE FRIENDLY
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CONTACT BAR
========================================================= */

.header-info {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    min-height: 52px;

    padding: 7px 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 28px;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 2000;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 6px 10px;

    color: #fff;

    text-decoration: none;

    font-size: .86rem;
    font-weight: 600;

    border-radius: 999px;

    transition:
        background .2s ease,
        color .2s ease;
}

.contact-item a:hover {
    background: rgba(255, 255, 255, .08);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: fixed;

    top: 52px;
    left: 0;

    width: 100%;

    min-height: 82px;

    padding: 9px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(0, 0, 0, .96);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    z-index: 1500;

    transition:
        min-height .3s ease,
        padding .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.header-scrolled {
    min-height: 68px;

    padding: 7px 32px;

    background: #000;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo img {
    display: block;

    width: 180px;
    height: auto;

    object-fit: contain;

    transition:
        width .3s ease,
        transform .3s ease;
}

.logo:hover img {
    transform: scale(1.015);
}

.header-scrolled .logo img {
    width: 150px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex: 1;

    min-width: 0;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 4px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.menu-items {
    position: relative;

    list-style: none;

    flex-shrink: 0;
}


/* =========================================================
   MAIN NAVIGATION LINKS
========================================================= */

.menu-items > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 8px 10px;

    color: #fff;

    text-decoration: none;

    white-space: nowrap;

    font-size: clamp(.78rem, 1vw, .98rem);

    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease;
}

.menu-items > a:hover {
    color: #aaa;
}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.menu-items > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    background: #fff;

    border-radius: 99px;

    transform: translateX(-50%);

    transition: width .25s ease;
}

.menu-items > a:hover::after {
    width: 55%;
}


/* =========================================================
   DESKTOP DROPDOWNS
========================================================= */

.sub-menu {
    position: absolute;

    /*
       IMPORTANT:
       No 5px gap here.
       The dropdown touches the navigation item.
    */
    top: 100%;
    left: 0;

    width: 250px;

    max-height: 65vh;

    overflow-y: auto;
    overflow-x: hidden;

    padding: 7px 0;

    margin: 0;

    list-style: none;

    background: #fff;

    border-radius: 13px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;

    z-index: 3000;
}


/* =========================================================
   INVISIBLE HOVER BRIDGE
   Prevents dropdown from disappearing while moving
   the mouse from the menu item into the dropdown.
========================================================= */

.sub-menu::before {
    content: "";

    position: absolute;

    top: -10px;
    left: 0;

    width: 100%;
    height: 10px;

    background: transparent;
}


/* =========================================================
   DESKTOP DROPDOWN OPEN STATE
========================================================= */

@media (min-width: 901px) {

    .menu-items:hover > .sub-menu,
    .menu-items:focus-within > .sub-menu {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.sub-menu li {
    position: relative;

    list-style: none;
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.sub-menu a {
    display: block;

    width: 100%;

    padding: 11px 17px;

    color: #000 !important;

    text-decoration: none !important;

    font-size: .92rem;

    font-weight: 550;

    line-height: 1.4;

    transition:
        background .2s ease,
        padding-left .2s ease,
        color .2s ease;
}

.sub-menu a:hover {
    background: #f1f1f1;

    padding-left: 22px;
}


/* =========================================================
   DROPDOWN SCROLLBAR
========================================================= */

.sub-menu::-webkit-scrollbar {
    width: 6px;
}

.sub-menu::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.sub-menu::-webkit-scrollbar-thumb {
    background: #bbb;

    border-radius: 20px;
}


/* =========================================================
   RIGHT-SIDE DROPDOWN
   Prevents dropdown from leaving the screen.
========================================================= */

@media (min-width: 901px) {

    .menu-items:last-child > .sub-menu {
        left: auto;
        right: 0;
    }

}


/* =========================================================
   HIDE DONATE
   Code can remain in HTML.
========================================================= */

.donate-menu-item {
    display: none !important;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 1.65rem;

    line-height: 1;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.menu-toggle::before {
    content: "☰";
}

.menu-toggle.active::before {
    content: "✕";
}


/* =========================================================
   DROPDOWN ICON
========================================================= */

.dropdown-icon {
    display: none;

    margin-left: auto;

    font-size: .7rem;

    transition: transform .3s ease;
}


/* =========================================================
   HEADER IMAGE / CONTENT AFTER HEADER
========================================================= */

.header-after {
    width: 100%;

    margin-top: 154px;

    overflow: hidden;
}

.header-after img {
    display: block;

    width: 100%;

    height: auto;

    min-height: 280px;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .main-header {
        padding: 8px 22px;

        gap: 18px;
    }

    .main-header.header-scrolled {
        padding: 7px 22px;
    }

    .logo img {
        width: 160px;
    }

    .header-scrolled .logo img {
        width: 145px;
    }

    .menu {
        gap: 2px;
    }

    .menu-items > a {
        padding: 8px 7px;

        font-size: .79rem;
    }

    .sub-menu {
        width: 235px;
    }

    .header-after {
        margin-top: 146px;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 48px;

        padding: 6px 12px;

        gap: 8px;
    }

    .contact-item a {
        font-size: .72rem;

        padding: 5px 8px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 48px;

        min-height: 72px;

        padding: 8px 18px;

        gap: 15px;
    }

    .main-header.header-scrolled {
        min-height: 63px;

        padding: 6px 18px;
    }


    /* LOGO */

    .logo img {
        width: 150px;
    }

    .header-scrolled .logo img {
        width: 140px;
    }


    /* MOBILE BUTTON */

    .menu-toggle {
        display: flex;
    }


    /* MOBILE NAVIGATION */

    .navigation {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        max-height: calc(100vh - 120px);

        overflow-y: auto;

        padding: 6px 0 15px;

        background: #fff;

        border-bottom: 2px solid #000;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, .25);

        z-index: 2500;
    }

    .navigation.active {
        display: block;
    }


    /* MOBILE MENU */

    .menu {
        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        width: 100%;
    }


    /* MENU ITEMS */

    .menu-items {
        width: 100%;
    }


    /* MAIN MOBILE LINKS */

    .menu-items > a {
        width: 100%;

        min-height: 56px;

        justify-content: flex-start;

        padding: 14px 20px;

        color: #000;

        background: #fff;

        border-bottom: 1px solid #ededed;

        font-size: .98rem;
    }

    .menu-items > a:hover {
        color: #000;

        background: #f5f5f5;
    }


    /* REMOVE DESKTOP UNDERLINE */

    .menu-items > a::after {
        display: none;
    }


    /* =====================================================
       MOBILE DROPDOWN
    ===================================================== */

    .sub-menu {
        position: static;

        display: none;

        width: 100%;

        max-height: none;

        overflow: visible;

        padding: 0;

        margin: 0;

        border-radius: 0;

        box-shadow: none;

        background: #f6f6f6;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none;

        transition: none;
    }


    /* MOBILE DROPDOWN OPEN */

    .sub-menu.visible {
        display: block;
    }


    /* REMOVE HOVER BRIDGE ON MOBILE */

    .sub-menu::before {
        display: none;
    }


    /* MOBILE SUB LINKS */

    .sub-menu a {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 48px;

        padding: 12px 20px 12px 38px;

        color: #000 !important;

        background: #f6f6f6;

        font-size: .91rem;

        border-bottom: 1px solid #e6e6e6;
    }

    .sub-menu a:hover {
        padding-left: 43px;

        background: #e9e9e9;
    }


    /* DROPDOWN ICON */

    .dropdown-icon {
        display: inline-block;

        margin-left: auto;

        font-size: .7rem;

        color: #000;

        transition: transform .3s ease;
    }

    .menu-items.open .dropdown-icon {
        transform: rotate(180deg);
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 130px;
    }

    .header-after img {
        min-height: 250px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 44px;

        padding: 4px 6px;

        gap: 3px;
    }

    .contact-item a {
        min-height: 32px;

        padding: 4px 6px;

        font-size: .61rem;

        gap: 5px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 44px;

        min-height: 66px;

        padding: 7px 13px;
    }

    .main-header.header-scrolled {
        min-height: 58px;

        padding: 6px 13px;
    }


    /* LOGO */

    .logo img {
        width: 132px;
    }

    .header-scrolled .logo img {
        width: 125px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 42px;
        height: 42px;

        font-size: 1.55rem;
    }


    /* MENU */

    .menu-items > a {
        min-height: 54px;

        padding: 14px 17px;

        font-size: .94rem;
    }


    /* SUB MENU */

    .sub-menu a {
        min-height: 47px;

        padding: 12px 17px 12px 33px;

        font-size: .87rem;
    }

    .sub-menu a:hover {
        padding-left: 38px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 112px;
    }

    .header-after img {
        min-height: 210px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    /* CONTACT BAR */

    .header-info {
        min-height: 41px;

        padding: 4px 5px;

        gap: 2px;
    }

    .contact-item a {
        font-size: .55rem;

        padding: 3px 5px;

        gap: 4px;
    }


    /* MAIN HEADER */

    .main-header {
        top: 41px;

        min-height: 62px;

        padding: 6px 10px;
    }

    .main-header.header-scrolled {
        min-height: 55px;

        padding: 5px 10px;
    }


    /* LOGO */

    .logo img {
        width: 118px;
    }

    .header-scrolled .logo img {
        width: 112px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 40px;
        height: 40px;

        font-size: 1.45rem;
    }


    /* MAIN LINKS */

    .menu-items > a {
        min-height: 52px;

        padding: 13px 15px;

        font-size: .9rem;
    }


    /* SUB LINKS */

    .sub-menu a {
        min-height: 47px;

        padding: 11px 15px 11px 30px;

        font-size: .84rem;
    }

    .sub-menu a:hover {
        padding-left: 35px;
    }


    /* HEADER IMAGE */

    .header-after {
        margin-top: 104px;
    }

    .header-after img {
        min-height: 180px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 340px) {

    /* CONTACT TEXT */

    .contact-item a span {
        display: none;
    }

    .contact-item a {
        width: 34px;
        height: 30px;

        padding: 0;

        justify-content: center;
    }


    /* LOGO */

    .logo img {
        width: 108px;
    }

    .header-scrolled .logo img {
        width: 104px;
    }


    /* MENU BUTTON */

    .menu-toggle {
        width: 38px;
        height: 38px;
    }
}


/* =========================================================
   ACCESSIBILITY / KEYBOARD
========================================================= */

.menu-items > a:focus-visible,
.sub-menu a:focus-visible,
.menu-toggle:focus-visible,
.contact-item a:focus-visible {
    outline: 2px solid #fff;

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   ADVENTURE LEOPARDS — RESPONSIVE HEADER END
========================================================= */
/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM DESTINATION HEADING
   ========================================================= */

.destinations-heading {
    width: min(90%, 900px);
    margin: 0 auto 65px;
    text-align: center;
    box-sizing: border-box;
}

.destinations-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #657c55;
}

.destinations-heading h1 {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.8px;
    color: #173d2b;
}

.destinations-heading h1::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 23px auto 21px;
    background: #657c55;
}

.destinations-heading p {
    max-width: 720px;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
    color: #707070;
}


/* TABLET */
@media (max-width: 850px) {

    .destinations-heading {
        width: 90%;
        margin-bottom: 50px;
    }

    .destinations-eyebrow {
        font-size: 9px;
        letter-spacing: 3.5px;
    }

    .destinations-heading h1 {
        font-size: 43px;
        letter-spacing: -1.2px;
    }

    .destinations-heading p {
        font-size: 13.5px;
        line-height: 1.8;
    }
}


/* MOBILE */
@media (max-width: 600px) {

    .destinations-heading {
        width: 92%;
        margin-bottom: 40px;
    }

    .destinations-eyebrow {
        margin-bottom: 11px;
        font-size: 8px;
        letter-spacing: 3px;
    }

    .destinations-heading h1 {
        font-size: 32px;
        line-height: 1.12;
        letter-spacing: -.8px;
    }

    .destinations-heading h1::after {
        width: 45px;
        height: 2px;
        margin: 17px auto 17px;
    }

    .destinations-heading p {
        font-size: 12px;
        line-height: 1.75;
    }
}


/* SMALL PHONES */
@media (max-width: 400px) {

    .destinations-heading h1 {
        font-size: 28px;
    }

    .destinations-heading p {
        font-size: 11.5px;
    }
}

/* MAIN GRID — 4 CARDS PER ROW */
.main-section {
  max-width: 1400px;
  margin: 6rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ⭐ 4 cards per row */
  gap: 2rem;
  padding: 1.5rem;
}

/* CARD BOX */
.card-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* IMAGE */
.im img {
  width: 150%;
  height: auto;
  border-radius: 8px;
}

/* TEXT AREA */
.img-inform {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.imge h2 {
  font-size: 1.4rem;
  margin: 0;
  color: #ffffff;
}

.imge p {
  font-size: 1rem;
  color: #666;
  margin: 0.3rem 0;
}

/* ICON + TEXT ROW */
.bn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #221314;
  font-weight: 500;
}

.bn i {
  color: #221314;
}

/* PRICE + BUTTON ROW */
.img-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.tn {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.nn {
  text-decoration: none;
  color: #fff;
  background: #000000;
  border-radius: 20px;
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
  border: 2px solid black;
}

.nn:hover {
  background: #ffffff;
  color: black;
}

/* ===========================
   RESPONSIVE
=========================== */

/* Tablet — 2 cards per row */
@media (max-width: 992px) {
  .main-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — 1 card per row */
@media (max-width: 600px) {
  .main-section {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =========================================================
   ADVENTURE LEOPARDS
   PREMIUM DESTINATION CARDS
   BALANCED TRAVEL DESIGN
   ========================================================= */

.destinations {
    position: relative;
    width: 100%;
    padding: 95px 0 125px;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(0,0,0,.025),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(0,0,0,.02),
            transparent 32%
        ),
        #f8f8f7;
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   GRID
   ========================================================= */

.destination-grid {
    position: relative;
    z-index: 2;

    width: min(90%, 1380px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 42px;

    box-sizing: border-box;
}


/* =========================================================
   CARD
   ========================================================= */

.destination-card {
    position: relative;
    min-width: 0;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fcfcfc 55%,
            #f5f5f4 100%
        );

    border: 1px solid #e3e3e1;
    border-radius: 20px;

    box-shadow:
        0 14px 40px rgba(0,0,0,.055),
        0 3px 10px rgba(0,0,0,.025);

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform .45s cubic-bezier(.16,1,.3,1),
        box-shadow .45s ease,
        border-color .45s ease;
}


.destination-card:hover {
    transform: translateY(-7px);

    border-color: #d5d5d3;

    box-shadow:
        0 25px 65px rgba(0,0,0,.10),
        0 5px 16px rgba(0,0,0,.035);
}


/* =========================================================
   IMAGE
   ========================================================= */

.destination-image {
    position: relative;
    display: block;

    width: 100%;
    height: 355px;

    overflow: hidden;

    background: #111;

    text-decoration: none;

    box-sizing: border-box;
}


.destination-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.01) 0%,
            transparent 45%,
            rgba(0,0,0,.38) 100%
        );

    pointer-events: none;
}


.destination-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;

    border: 1px solid rgba(255,255,255,.15);

    pointer-events: none;
}


.destination-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center;

    transform: scale(1.01);

    filter:
        brightness(.97)
        contrast(1.03)
        saturate(.94);

    box-sizing: border-box;

    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        filter .8s ease;
}


.destination-card:hover .destination-image img {
    transform: scale(1.055);

    filter:
        brightness(.93)
        contrast(1.04)
        saturate(.99);
}


/* =========================================================
   NUMBER
   ========================================================= */

.destination-number {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;

    background: rgba(0,0,0,.10);

    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #fff;
}


/* =========================================================
   LOCATION
   ========================================================= */

.destination-location {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 8px;

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;

    color: #fff;
}


.destination-location i {
    font-size: 9px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.destination-content {
    position: relative;
    z-index: 4;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    padding: 30px 32px 34px;

    box-sizing: border-box;
}


/* =========================================================
   LABEL
   ========================================================= */

.destination-label {
    display: block;

    margin-bottom: 9px;

    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #999;
}


/* =========================================================
   LARGE DESTINATION TITLE
   ========================================================= */

.destination-content h2 {
    margin: 0 0 12px;
    padding: 0;

    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 3vw, 43px);
    line-height: 1.08;

    letter-spacing: -1px;
    font-weight: 700;

    color: #111;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.destination-content p {
    width: min(100%, 470px);

    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.8;

    color: #686868;
}


/* =========================================================
   LINK
   ========================================================= */

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    margin-bottom: 3px;
    padding-bottom: 8px;

    border-bottom: 1px solid #c7c7c7;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;

    color: #111;
    text-decoration: none;

    transition:
        gap .3s ease,
        border-color .3s ease;
}


.destination-link i {
    font-size: 9px;
}


.destination-link:hover {
    gap: 16px;
    border-color: #111;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1500px) {

    .destinations {
        padding: 110px 0 145px;
    }

    .destination-grid {
        width: min(88%, 1480px);
        gap: 50px;
    }

    .destination-image {
        height: 385px;
    }

    .destination-content {
        padding: 34px 36px 38px;
    }

    .destination-content h2 {
        font-size: 46px;
    }

    .destination-content p {
        font-size: 14.5px;
    }

}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    .destinations {
        padding: 80px 0 110px;
    }

    .destination-grid {
        width: 90%;
        gap: 32px;
    }

    .destination-image {
        height: 320px;
    }

    .destination-content {
        padding: 27px 28px 31px;
        gap: 20px;
    }

    .destination-content h2 {
        font-size: 35px;
    }

    .destination-content p {
        font-size: 13px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .destinations {
        padding: 70px 0 95px;
    }

    .destination-grid {
        width: 90%;
        max-width: 700px;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .destination-image {
        height: 380px;
    }

    .destination-content {
        padding: 29px 30px 34px;
    }

    .destination-content h2 {
        font-size: 38px;
    }

    .destination-content p {
        font-size: 13.5px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .destinations {
        padding: 55px 0 75px;
    }

    .destination-grid {
        width: 92%;
        gap: 25px;
    }

    .destination-card {
        border-radius: 17px;
    }

    .destination-image {
        height: 270px;
    }

    .destination-number {
        top: 17px;
        left: 18px;

        width: 36px;
        height: 36px;

        font-size: 9px;
    }

    .destination-location {
        left: 19px;
        bottom: 18px;

        font-size: 8.5px;
        letter-spacing: 1.4px;
    }

    .destination-content {
        display: block;

        padding: 23px 22px 27px;
    }

    .destination-label {
        margin-bottom: 8px;

        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .destination-content h2 {
        margin-bottom: 10px;

        font-size: 29px;
        line-height: 1.1;
    }

    .destination-content p {
        width: 100%;

        font-size: 13px;
        line-height: 1.75;
    }

    .destination-link {
        margin-top: 20px;
        font-size: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .destinations {
        padding: 45px 0 65px;
    }

    .destination-grid {
        width: 93%;
        gap: 22px;
    }

    .destination-image {
        height: 235px;
    }

    .destination-content {
        padding: 21px 19px 25px;
    }

    .destination-content h2 {
        font-size: 26px;
    }

    .destination-content p {
        font-size: 12px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    .destination-image {
        height: 215px;
    }

    .destination-content h2 {
        font-size: 24px;
    }

    .destination-content p {
        font-size: 11.5px;
    }

}


/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover: none) {

    .destination-card:hover {
        transform: none;

        border-color: #e3e3e1;

        box-shadow:
            0 14px 40px rgba(0,0,0,.055),
            0 3px 10px rgba(0,0,0,.025);
    }

    .destination-card:hover .destination-image img {
        transform: scale(1.01);

        filter:
            brightness(.97)
            contrast(1.03)
            saturate(.94);
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.destination-image:focus-visible,
.destination-link:focus-visible {
    outline: 3px solid #777;
    outline-offset: 5px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .destination-card,
    .destination-image img,
    .destination-link {
        transition: none;
    }

}/* =========================================
   ADVENTURE LEOPARDS — PREMIUM BLACK FOOTER
========================================= */

.premium-footer {
    position: relative;
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(209, 209, 209, 0.7);
}

.footer-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    padding-top: 75px;
}

/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 1fr;
    gap: 80px;
    padding-bottom: 65px;
}

/* =========================================
   BRAND
========================================= */

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    width: 110px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-brand h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-description {
    max-width: 480px;
    margin: 0 0 22px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================
   DISCOVER LINK
========================================= */

.footer-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-explore span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-explore:hover {
    color: #ccc;
}

.footer-explore:hover span {
    transform: translateX(4px);
    border-color: #fff;
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h3 {
    position: relative;
    margin: 5px 0 25px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #fff;
}

/* =========================================
   MENU LINKS
========================================= */

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact > p {
    max-width: 280px;
    margin: 0 0 20px;
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

.footer-email,
.footer-website {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-email:hover,
.footer-website:hover {
    color: #fff;
}

/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 85px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 12px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: #000;
    border: 1px solid #333;
    border-radius: 50%;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .footer-main {
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 650px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .footer-container {
        width: 88%;
        padding-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-brand {
        grid-column: auto;
        max-width: 100%;
    }

    .footer-logo {
        width: 95px;
    }

    .footer-brand h2 {
        font-size: 30px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }

    .footer-socials {
        gap: 7px;
    }

    .footer-socials a {
        width: 35px;
        height: 35px;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .footer-container {
        width: 86%;
    }

    .footer-brand h2 {
        font-size: 27px;
    }

    .footer-description {
        font-size: 12.5px;
    }
}

/* Section Layout */
.left-image-section {
    padding: 60px 20px;
}

.left-image-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Image */
.left-image-box {
    flex: 1;
}

.left-image-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

/* Right Content */
.left-image-content {
    flex: 1;
}

.left-image-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.left-image-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 12px 26px;
    border: 3px solid #000;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.read-more-btn:hover {
    transform: translateX(-6px);
    background-color: #000;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .left-image-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-image-box img {
        height: 260px;
    }
}
