/* =========================================================
   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
   KALASH FESTIVALS — PREMIUM DESTINATION DESIGN
========================================================= */

.kalash-bw-section {
    width: 100%;
    margin-top: 6em;
    padding: 90px 20px 120px;
    background: #f7f7f5;
    font-family: 'Poppins', sans-serif;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.kalash-bw-wrapper {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;

    background: #ffffff;

    border: 1px solid #e5e5e1;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   IMAGE — FULL VISIBILITY
========================================================= */

.kalash-bw-image {
    position: relative;

    width: 100%;
    height: 650px;

    overflow: hidden;

    background: #111;
}


/* Image */

.kalash-bw-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 1s cubic-bezier(.2, .65, .3, 1),
        filter 0.6s ease;
}


/* Very subtle image overlay */

.kalash-bw-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0) 65%,
            rgba(0,0,0,0.14) 100%
        );

    pointer-events: none;
}


/* Gentle premium zoom */

.kalash-bw-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   CONTENT
========================================================= */

.kalash-bw-content {
    position: relative;

    max-width: 1100px;

    margin: 0 auto;

    padding: 65px 70px 75px;

    color: #151515;
}


/* =========================================================
   TOP BRAND LINE
========================================================= */

.kalash-bw-content::before {
    content: "ADVENTURE LEOPARDS  /  PAKISTAN";

    display: block;

    margin-bottom: 18px;

    color: #477858;

    font-size: 0.66rem;

    font-weight: 700;

    letter-spacing: 2.6px;
}


/* =========================================================
   TITLE
========================================================= */

.kalash-bw-title {
    margin: 0;

    color: #111111;

    font-size: clamp(2.5rem, 5vw, 4.3rem);

    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -2px;
}


/* Green detail */

.kalash-bw-title::after {
    content: "";

    display: block;

    width: 55px;
    height: 2px;

    margin-top: 24px;

    background: #477858;
}


/* =========================================================
   INTRO
========================================================= */

.kalash-bw-intro {
    max-width: 850px;

    margin: 25px 0 55px;

    color: #5e5e5e;

    font-size: 1.05rem;

    line-height: 1.9;
}


/* =========================================================
   HEADINGS
========================================================= */

.kalash-bw-heading {
    margin: 38px 0 18px;

    color: #161616;

    font-size: 1.5rem;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -0.3px;
}


/* Small green line */

.kalash-bw-heading::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 10px;

    background: #477858;
}


/* =========================================================
   FESTIVAL GRID
========================================================= */

.kalash-bw-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin: 0;

    padding: 0;

    list-style: none;
}


/* Festival card */

.kalash-bw-list li {
    position: relative;

    min-height: 95px;

    padding: 22px 25px 22px 48px;

    display: flex;

    align-items: center;

    color: #5c5c5c;

    font-size: 0.92rem;

    line-height: 1.65;

    background: #fafbf9;

    border: 1px solid #e8eae7;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


/* Green marker */

.kalash-bw-list li::before {
    content: "";

    position: absolute;

    left: 22px;
    top: 50%;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #477858;

    transform: translateY(-50%);
}


/* Festival name */

.kalash-bw-list li strong {
    color: #202020;

    font-weight: 700;
}


/* Hover */

.kalash-bw-list li:hover {
    transform: translateY(-3px);

    background: #f6f9f6;

    border-color: rgba(71, 120, 88, 0.22);
}


/* =========================================================
   CULTURAL TEXT
========================================================= */

.kalash-bw-text {
    max-width: 900px;

    margin: 0;

    color: #5e5e5e;

    font-size: 0.98rem;

    line-height: 1.9;
}


/* =========================================================
   DESKTOP EXTRA WIDTH
========================================================= */

@media (min-width: 1400px) {

    .kalash-bw-image {
        height: 720px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .kalash-bw-section {
        padding: 70px 18px 90px;
    }

    .kalash-bw-image {
        height: 520px;
    }

    .kalash-bw-content {
        padding: 50px 45px 60px;
    }

    .kalash-bw-title {
        font-size: 3rem;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .kalash-bw-section {
        margin-top: 4em;

        padding: 45px 10px 70px;
    }

    .kalash-bw-wrapper {
        border-radius: 2px;
    }

    .kalash-bw-image {
        height: 360px;
    }

    .kalash-bw-content {
        padding: 38px 23px 45px;
    }

    .kalash-bw-content::before {
        margin-bottom: 14px;

        font-size: 0.55rem;

        letter-spacing: 1.7px;
    }

    .kalash-bw-title {
        font-size: 2.15rem;

        letter-spacing: -1px;
    }

    .kalash-bw-intro {
        margin: 22px 0 35px;

        font-size: 0.9rem;

        line-height: 1.8;
    }

    .kalash-bw-heading {
        font-size: 1.15rem;

        margin-top: 30px;
    }

    .kalash-bw-list {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .kalash-bw-list li {
        min-height: auto;

        padding: 15px 15px 15px 40px;

        font-size: 0.84rem;
    }

    .kalash-bw-list li::before {
        left: 18px;
    }

    .kalash-bw-text {
        font-size: 0.88rem;

        line-height: 1.8;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .kalash-bw-image {
        height: 300px;
    }

    .kalash-bw-content {
        padding: 32px 18px 38px;
    }

    .kalash-bw-title {
        font-size: 1.9rem;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .kalash-bw-image img,
    .kalash-bw-list li {
        transition: none;
    }

    .kalash-bw-image:hover img {
        transform: none;
    }

    .kalash-bw-list li:hover {
        transform: none;
    }

}
/*kalash end*/
/* =========================================
   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;
    }
}