/* =====================================================
   MODERN FLOATING TRAVEL HEADER
===================================================== */

.tt-header {
    position: fixed;

    top: 14px;
    left: 30px;
    right: 30px;

    z-index: 9999;

    max-width: 1500px;

    margin: 0 auto;

    font-family: Arial, Helvetica, sans-serif;
}


/* =====================================================
   HEADER CONTAINER
===================================================== */

.tt-header-inner {
    height: 80px;

    display: flex;
    align-items: center;

    padding: 0 8px 0 22px;

    /* background: rgba(255, 255, 255, 0.94); */
    background: #ffffff;

    border: 1px solid rgba(20, 60, 50, 0.10);

    border-radius: 20px;

    box-shadow:
        0 8px 30px rgba(20, 50, 45, 0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* =====================================================
   LOGO
===================================================== */

.tt-brand {
    display: flex;
    align-items: center;

    gap: 9px;

    text-decoration: none;

    min-width: 190px;
}


.tt-brand-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #16805c;

    font-size: 20px;
}


.tt-brand-name {
    color: #15191a;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: -0.3px;

    white-space: nowrap;
}


.tt-brand-name span {
    color: #16805c;

    font-weight: 500;
}


/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.tt-desktop-nav {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    padding: 10px;

    background: #f0f1f1;

    border-radius: 30px;

    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.025);
}


.tt-nav-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 38px;

    padding: 0 17px;

    color: #000;

    font-size: 12px;

    font-weight: 500;

    text-decoration: none;

    border-radius: 24px;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.tt-nav-item:hover {
    color: #16805c;
}


.tt-nav-item.active {
    color: #151918;

    background: #ffffff;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.07);
}


/* =====================================================
   RIGHT SIDE
===================================================== */

.tt-header-right {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 8px;
}


/* =====================================================
   SIGN IN
===================================================== */

.tt-signin {
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    color: #050733;

    border: 1px solid #050733;

    border-radius: 24px;

    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.25s ease;
}


.tt-signin:hover {
    color: #ffffff;

    background: #0d117b;

    border-color: #fff;
}


/* =====================================================
   GET STARTED
===================================================== */

.tt-get-started {
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 21px;

    color: #ffffff;

    background: #0d117b;

    border: 1px solid #050733;

    border-radius: 24px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s ease;
}


.tt-get-started:hover {
    color: #ffffff;

    background: #0d117b;

    border-color: #050733;

    transform: translateY(-1px);
}


/* =====================================================
   USER ACCOUNT
===================================================== */

.tt-account {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 3px 12px 3px 3px;

    color: #202624;

    text-decoration: none;

    border-radius: 30px;

    transition: background 0.2s ease;
}


.tt-account:hover {
    color: #176d59;

    background: #f1f5f3;
}


.tt-account-avatar {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #176d59;

    background: #e7f2ed;

    border-radius: 50%;

    font-size: 12px;
}


.tt-account-name {
    max-width: 110px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 12px;

    font-weight: 600;
}


/* =====================================================
   ACCOUNT DROPDOWN
===================================================== */

.tt-account-dropdown {
    min-width: 220px;

    margin-top: 10px !important;

    padding: 7px;

    border: 1px solid rgba(20, 60, 50, 0.08);

    border-radius: 14px;

    box-shadow:
        0 15px 40px rgba(20, 50, 45, 0.13);
}


.tt-account-heading {
    display: flex;
    flex-direction: column;

    gap: 2px;

    padding: 10px 12px;
}


.tt-account-heading small {
    color: #929a97;

    font-size: 10px;
}


.tt-account-heading strong {
    color: #1c302a;

    font-size: 13px;
}


.tt-account-dropdown .dropdown-item {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 9px 10px;

    color: #3e4744;

    font-size: 12px;

    border-radius: 8px;
}


.tt-account-dropdown .dropdown-item:hover {
    color: #176d59;

    background: #edf6f2;
}


.tt-account-dropdown .dropdown-item i {
    width: 17px;

    color: #176d59;

    text-align: center;
}


.tt-account-dropdown .tt-logout {
    color: #d54a4a;
}


.tt-account-dropdown .tt-logout i {
    color: #d54a4a;
}


.tt-account-dropdown .tt-logout:hover {
    color: #c23838;

    background: #fff2f2;
}


/* =====================================================
   MOBILE TOGGLE
===================================================== */

.tt-mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    margin-left: auto;

    padding: 0;

    background: #f0f2f1;

    border: 0;

    border-radius: 12px;

    cursor: pointer;
}


.tt-mobile-toggle span {
    display: block;

    width: 18px;
    height: 2px;

    margin: 4px auto;

    background: #1b2925;

    border-radius: 5px;

    transition: all 0.25s ease;
}


/* Hamburger animation */

.tt-mobile-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.tt-mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.tt-mobile-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.tt-mobile-menu {
    display: none;

    margin-top: 8px;

    padding: 10px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(20, 60, 50, 0.09);

    border-radius: 18px;

    box-shadow:
        0 15px 35px rgba(20, 50, 45, 0.12);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);
}


.tt-mobile-menu.open {
    display: block;

    animation: ttMobileMenu 0.22s ease;
}


@keyframes ttMobileMenu {

    from {
        opacity: 0;

        transform: translateY(-6px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


/* =====================================================
   MOBILE LINKS
===================================================== */

.tt-mobile-links {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.tt-mobile-links a {
    display: flex;
    align-items: center;

    min-height: 44px;

    padding: 0 14px;

    color: #353d3a;

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;

    border-radius: 10px;

    transition: all 0.2s ease;
}


.tt-mobile-links a:hover {
    color: #176d59;

    background: #edf6f2;
}


.tt-mobile-links a.active {
    color: #176d59;

    background: #edf6f2;

    font-weight: 600;
}


/* =====================================================
   MOBILE ACTIONS
===================================================== */

.tt-mobile-actions {
    display: flex;

    gap: 8px;

    margin-top: 9px;

    padding-top: 10px;

    border-top: 1px solid #edf0ef;
}


.tt-mobile-signin,
.tt-mobile-start {
    flex: 1;

    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 22px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;
}


.tt-mobile-signin {
    color: #176d59;

    border: 1px solid #176d59;
}


.tt-mobile-start {
    gap: 7px;

    color: #ffffff;

    background: #176d59;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .tt-header {
        left: 20px;
        right: 20px;
    }

    .tt-brand {
        min-width: 160px;
    }

    .tt-nav-item {
        padding: 0 12px;
    }

    .tt-nav-item {
        font-size: 11px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .tt-header {
        top: 10px;

        left: 12px;
        right: 12px;
    }


    .tt-header-inner {
        height: 60px;

        padding: 0 8px 0 16px;

        border-radius: 17px;
    }


    .tt-brand {
        min-width: auto;
    }


    .tt-brand-name {
        font-size: 14px;
    }


    .tt-brand-icon {
        width: 30px;
        height: 30px;

        font-size: 18px;
    }


    /* Hide desktop navigation */

    .tt-desktop-nav {
        display: none;
    }


    /* Hide desktop buttons */

    .tt-header-right {
        display: none;
    }


    /* Show hamburger */

    .tt-mobile-toggle {
        display: block;
    }


    .tt-mobile-menu {
        display: none;
    }


    .tt-mobile-menu.open {
        display: block;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .tt-header {
        left: 10px;
        right: 10px;
    }


    .tt-header-inner {
        height: 58px;

        padding-left: 13px;
    }


    .tt-brand-name {
        font-size: 13px;
    }


    .tt-mobile-toggle {
        width: 40px;
        height: 40px;
    }

}

/* =====================================================
   LOGO
===================================================== */

.tt-brand {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;

    width: 190px;
}


.tt-brand-logo {
    display: block;

    width: auto;
    height: 48px;

    max-width: 180px;

    object-fit: contain;

    object-position: left center;
}



/* =====================================================
   TRAVEL FOOTER
===================================================== */

.tt-footer {
    position: relative;

    overflow: hidden;

    background: #050733;

    color: #ffffff;

    padding-top: 85px;

}


/* =====================================================
   ANIMATION LAYER
===================================================== */

.tt-footer-animation {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.tt-footer-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(70px);

    opacity: 0.16;

    animation: ttGlowMove 10s ease-in-out infinite;
}


.tt-footer-glow-left {
    left: -250px;

    top: -220px;

    background: #176d59;
}


.tt-footer-glow-right {
    right: -250px;

    bottom: -250px;

    background: #dca52e;

    animation-delay: -5s;
}


@keyframes ttGlowMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 30px);
    }

}


/* =====================================================
   AIRPLANE
===================================================== */

.tt-airplane {
    position: absolute;

    top: 75px;

    left: -100px;

    z-index: 1;

    color: rgba(255, 255, 255, 0.16);

    font-size: 25px;

    transform: rotate(-8deg);

    animation:
        ttPlaneFly 18s linear infinite;
}


@keyframes ttPlaneFly {

    0% {
        left: -100px;

        top: 120px;

        opacity: 0;

        transform: rotate(-8deg);
    }

    8% {
        opacity: 1;
    }

    50% {
        top: 55px;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 100px);

        top: 105px;

        opacity: 0;

        transform: rotate(-8deg);
    }

}


/* =====================================================
   SECOND AIRPLANE
===================================================== */

.tt-airplane-small {
    position: absolute;

    right: -80px;

    top: 310px;

    color: rgba(220, 165, 46, 0.22);

    font-size: 16px;

    transform: rotate(-10deg);

    animation:
        ttPlaneReverse 25s linear infinite;
}


@keyframes ttPlaneReverse {

    0% {
        right: -80px;

        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        top: 270px;
    }

    90% {
        opacity: 1;
    }

    100% {
        right: calc(100% + 80px);

        top: 320px;

        opacity: 0;
    }

}


/* =====================================================
   PALM TREES
===================================================== */

.tt-palm {
    position: absolute;

    bottom: -15px;

    z-index: 1;

    color: rgba(255, 255, 255, 0.08);

    font-size: 150px;

    transform-origin: bottom center;

    animation:
        ttPalmSway 5s ease-in-out infinite;
}


.tt-palm-left {
    left: -30px;

    transform: rotate(-4deg);
}


.tt-palm-right {
    right: -30px;

    transform: scaleX(-1) rotate(-4deg);

    animation-delay: -2s;
}


.tt-palm-small {
    position: absolute;

    bottom: -5px;

    left: 105px;

    font-size: 90px;

    opacity: 0.65;

    transform: rotate(8deg);
}


.tt-palm-right .tt-palm-small {
    left: 105px;
}


@keyframes ttPalmSway {

    0%,
    100% {
        transform:
            rotate(-4deg);
    }

    50% {
        transform:
            rotate(3deg);
    }

}


/* Right palm animation */

.tt-palm-right {
    animation-name: ttPalmSwayRight;
}


@keyframes ttPalmSwayRight {

    0%,
    100% {
        transform:
            scaleX(-1)
            rotate(-4deg);
    }

    50% {
        transform:
            scaleX(-1)
            rotate(3deg);
    }

}


/* =====================================================
   TRAVEL STARS
===================================================== */

.tt-travel-star {
    position: absolute;

    color: rgba(220, 165, 46, 0.40);

    font-size: 15px;

    animation:
        ttStarFloat 4s ease-in-out infinite;
}


.tt-star-1 {
    left: 18%;

    top: 105px;

    animation-delay: -1s;
}


.tt-star-2 {
    left: 38%;

    top: 260px;

    font-size: 10px;

    animation-delay: -2s;
}


.tt-star-3 {
    right: 28%;

    top: 120px;

    font-size: 18px;

    animation-delay: -3s;
}


.tt-star-4 {
    right: 15%;

    top: 250px;

    font-size: 11px;

    animation-delay: -1.5s;
}


.tt-star-5 {
    left: 65%;

    top: 360px;

    font-size: 9px;

    animation-delay: -2.5s;
}


@keyframes ttStarFloat {

    0%,
    100% {
        opacity: 0.25;

        transform:
            translateY(0)
            scale(1);
    }

    50% {
        opacity: 0.75;

        transform:
            translateY(-10px)
            scale(1.25);
    }

}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.tt-footer-container {
    position: relative;

    z-index: 5;
}


/* =====================================================
   CTA
===================================================== */

.tt-footer-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding-bottom: 70px;
}


.tt-footer-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: #dca52e;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.tt-footer-cta h2 {
    max-width: 650px;

    margin: 0 0 16px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.tt-footer-cta h2 span {
    color: #dca52e;

    font-style: italic;
}


.tt-footer-cta p {
    max-width: 560px;

    margin: 0;

    color: rgba(255,255,255,0.58);

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   CTA BUTTON
===================================================== */

.tt-footer-cta-button {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 7px 7px 7px 22px;

    color: #ffffff;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.14);

    border-radius: 40px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}


.tt-footer-cta-button:hover {
    color: #ffffff;

    background: rgba(255,255,255,0.12);

    border-color: rgba(255,255,255,0.25);

    transform: translateY(-3px);
}


.tt-footer-arrow {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #050733;

    background: #dca52e;

    border-radius: 50%;

    transition: transform 0.3s ease;
}


.tt-footer-cta-button:hover .tt-footer-arrow {
    transform: rotate(-45deg);
}


/* =====================================================
   DIVIDER
===================================================== */

.tt-footer-divider {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.14),
            transparent
        );
}


/* =====================================================
   MAIN FOOTER
===================================================== */

.tt-footer-main {
    padding-top: 65px;

    padding-bottom: 65px;
}


/* =====================================================
   LOGO
===================================================== */

.tt-footer-logo {
    display: inline-flex;

    align-items: center;

    margin-bottom: 22px;

    text-decoration: none;
}


.tt-footer-logo img {
    display: block;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}


/* =====================================================
   BRAND TEXT
===================================================== */

.tt-footer-brand p {
    max-width: 340px;

    margin: 0 0 25px;

    color: rgba(255,255,255,0.53);

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   SOCIAL
===================================================== */

.tt-footer-socials {
    display: flex;

    align-items: center;

    gap: 8px;
}


.tt-footer-socials a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,0.62);

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.tt-footer-socials a:hover {
    color: #050733;

    background: #dca52e;

    transform:
        translateY(-5px)
        rotate(-5deg);
}


/* =====================================================
   COLUMNS
===================================================== */

.tt-footer-column h5 {
    margin: 5px 0 25px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;
}


.tt-footer-column > a {
    display: flex;

    align-items: center;

    width: fit-content;

    margin-bottom: 15px;

    color: rgba(255,255,255,0.50);

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.tt-footer-column > a i {
    margin-left: 8px;

    color: #dca52e;

    font-size: 8px;

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.tt-footer-column > a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.tt-footer-column > a:hover i {
    opacity: 1;

    transform: translateX(0);
}


/* =====================================================
   CONTACT
===================================================== */

.tt-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;
}


.tt-contact-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #dca52e;

    background: rgba(220,165,46,0.08);

    border: 1px solid rgba(220,165,46,0.12);

    border-radius: 9px;

    font-size: 11px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.tt-contact-item:hover .tt-contact-icon {
    transform:
        translateY(-3px)
        rotate(-5deg);

    background: rgba(220,165,46,0.15);
}


.tt-contact-item span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,0.32);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.tt-contact-item p {
    margin: 0;

    color: rgba(255,255,255,0.65);

    font-size: 12px;

    line-height: 1.6;
}


/* =====================================================
   BOTTOM
===================================================== */

.tt-footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    min-height: 72px;

    border-top: 1px solid rgba(255,255,255,0.08);
}


.tt-footer-copyright {
    display: flex;

    gap: 4px;

    color: rgba(255,255,255,0.34);

    font-size: 10px;
}


.tt-footer-legal {
    display: flex;

    align-items: center;

    gap: 14px;
}


.tt-footer-legal a {
    color: rgba(255,255,255,0.38);

    font-size: 10px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.tt-footer-legal a:hover {
    color: #dca52e;
}


.tt-footer-legal span {
    width: 3px;
    height: 3px;

    background: rgba(255,255,255,0.25);

    border-radius: 50%;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .tt-footer-cta {
        align-items: flex-start;

        flex-direction: column;

        padding-bottom: 55px;
    }

    .tt-footer-main {
        padding-top: 50px;

        padding-bottom: 45px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tt-footer {
        margin-top: 50px;

        padding-top: 55px;
    }


    .tt-footer-cta {
        gap: 25px;

        padding-bottom: 45px;
    }


    .tt-footer-cta h2 {
        font-size: 38px;
    }


    .tt-footer-cta p {
        font-size: 13px;
    }


    .tt-footer-cta-button {
        width: 100%;

        justify-content: space-between;
    }


    .tt-footer-main {
        padding-top: 45px;

        padding-bottom: 30px;
    }


    .tt-footer-column {
        margin-bottom: 15px;
    }


    .tt-footer-logo img {
        height: 48px;
    }


    .tt-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 12px;

        padding: 20px 0;
    }


    .tt-footer-copyright {
        flex-wrap: wrap;
    }


    /* Smaller palms */

    .tt-palm {
        font-size: 100px;
    }


    .tt-palm-small {
        font-size: 65px;

        left: 70px;
    }


    /* Keep animation subtle on mobile */

    .tt-airplane {
        font-size: 18px;
    }


    .tt-airplane-small {
        font-size: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .tt-footer-cta h2 {
        font-size: 34px;
    }


    .tt-palm {
        font-size: 75px;

        bottom: -8px;
    }


    .tt-palm-small {
        font-size: 50px;

        left: 50px;
    }


    .tt-footer-glow {
        width: 300px;
        height: 300px;
    }

}

/* =====================================================
   DISCOVER DESTINATIONS
===================================================== */

.tt-discover-section {
    position: relative;

    padding: 100px 0;

    background: var(--tt-lighter);

    overflow: hidden;
}


/* =====================================================
   TOP GRID
===================================================== */

.tt-discover-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 32px;

    align-items: stretch;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.tt-discover-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}


.tt-section-eyebrow {
    display: inline-flex;

    align-items: center;

    width: fit-content;

    margin-bottom: 12px;

    color: var(--tt-accent);

    font-family: var(--tt-font);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.4px;
}


.tt-section-eyebrow::before {
    content: "";

    width: 22px;
    height: 2px;

    margin-right: 8px;

    background: var(--tt-accent);

    border-radius: 10px;
}


/* =====================================================
   TITLE
===================================================== */

.tt-discover-title {
    max-width: 620px;

    margin: 0 0 18px;

    color: var(--tt-dark);

    font-family: var(--tt-font-display);

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.tt-discover-title span {
    color: var(--tt-primary);
}


/* =====================================================
   DESCRIPTION
===================================================== */

.tt-discover-description {
    max-width: 600px;

    margin: 0 0 30px;

    color: var(--tt-text);

    font-family: var(--tt-font);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   SMALL IMAGES
===================================================== */

.tt-discover-small-images {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-top: auto;
}


.tt-discover-image-card {
    position: relative;

    display: block;

    height: 295px;

    overflow: hidden;

    border-radius: var(--tt-radius);

    text-decoration: none;

    box-shadow: var(--tt-shadow);

    background: var(--tt-light);
}


.tt-discover-image-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}


.tt-discover-image-card:hover img {
    transform: scale(1.08);

    filter: saturate(1.08);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.tt-image-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 16px 15px;

    color: var(--tt-lighter);

    background:
        linear-gradient(
            to top,
            rgba(5, 7, 51, 0.78),
            rgba(5, 7, 51, 0)
        );

    font-size: 13px;

    font-weight: 600;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.tt-discover-image-card:hover .tt-image-overlay {
    opacity: 1;

    transform: translateY(0);
}


.tt-image-overlay i {
    color: var(--tt-accent);

    transition: transform 0.25s ease;
}


.tt-discover-image-card:hover .tt-image-overlay i {
    transform: translateX(4px);
}


/* =====================================================
   FEATURED IMAGE
===================================================== */

.tt-discover-featured {
    min-height: 470px;
}


.tt-featured-image {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    min-height: 470px;

    overflow: hidden;

    border-radius: var(--tt-radius-lg);

    box-shadow: var(--tt-shadow-lg);

    text-decoration: none;
}


.tt-featured-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.9s ease,
        filter 0.9s ease;
}


.tt-featured-image:hover img {
    transform: scale(1.05);

    filter: saturate(1.08);
}


/* =====================================================
   FEATURED OVERLAY
===================================================== */

.tt-featured-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 7, 51, 0.82) 0%,
            rgba(5, 7, 51, 0.12) 55%,
            rgba(5, 7, 51, 0) 100%
        );
}


.tt-featured-overlay {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 26px;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;
}


.tt-featured-overlay span {
    display: block;

    margin-bottom: 6px;

    color: var(--tt-accent);

    font-family: var(--tt-font);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.tt-featured-overlay h3 {
    margin: 0;

    color: var(--tt-lighter);

    font-family: var(--tt-font-display);

    font-size: 34px;

    font-weight: 600;
}


.tt-featured-arrow {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tt-primary-dark);

    background: var(--tt-accent);

    border-radius: 50%;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.tt-featured-image:hover .tt-featured-arrow {
    transform: rotate(45deg);

    background: var(--tt-lighter);
}


/* =====================================================
   SERVICES
===================================================== */

.tt-discover-services {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    margin-top: 70px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.tt-service-card {
    position: relative;

    min-height: 330px;

    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 30px 24px 25px;

    overflow: hidden;

    text-align: center;

    background: var(--tt-primary);

    border: 1px solid rgba(212, 160, 60, 0.20);

    border-radius: var(--tt-radius);

    box-shadow: var(--tt-shadow);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* Decorative diagonal lines */

.tt-service-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 28px,
            rgba(255,255,255,0.045) 29px,
            rgba(255,255,255,0.045) 32px
        );

    pointer-events: none;
}


.tt-service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--tt-shadow-lg);
}


/* =====================================================
   SERVICE ICON
===================================================== */

.tt-service-icon-wrapper {
    position: relative;

    width: 94px;
    height: 94px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
}


.tt-service-icon {
    position: relative;

    z-index: 2;

    width: 72px;
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tt-accent);

    background: var(--tt-lighter);

    border-radius: 50%;

    font-size: 23px;

    box-shadow:
        0 8px 20px rgba(5, 7, 51, 0.18);

    transition:
        transform 0.4s ease,
        color 0.3s ease;
}


.tt-service-card:hover .tt-service-icon {
    transform: rotate(-8deg) scale(1.08);

    color: var(--tt-accent-dark);
}


/* =====================================================
   ICON DOTS
===================================================== */

.tt-service-dot {
    position: absolute;

    z-index: 3;

    width: 16px;
    height: 16px;

    background: var(--tt-accent);

    border: 3px solid var(--tt-primary);

    border-radius: 50%;

    transition:
        transform 0.35s ease;
}


.tt-service-dot-1 {
    top: 7px;
    left: 8px;
}


.tt-service-dot-2 {
    right: 7px;
    bottom: 8px;

    background: var(--tt-primary-dark);
}


.tt-service-card:hover .tt-service-dot-1 {
    transform: translate(-3px, -3px);
}


.tt-service-card:hover .tt-service-dot-2 {
    transform: translate(3px, 3px);
}


/* =====================================================
   SERVICE TITLE
===================================================== */

.tt-service-card h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    color: var(--tt-lighter);

    font-family: var(--tt-font);

    font-size: 16px;

    font-weight: 700;

    line-height: 1.3;
}


/* =====================================================
   SERVICE DESCRIPTION
===================================================== */

.tt-service-card p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: rgba(255,255,255,0.78);

    font-family: var(--tt-font);

    font-size: 11.5px;

    line-height: 1.75;
}


/* =====================================================
   SERVICE LINK
===================================================== */

.tt-service-link {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;
    padding-top: 18px;

    color: var(--tt-accent);

    font-family: var(--tt-font);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    opacity: 0;

    transform: translateY(6px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        color 0.2s ease;
}


.tt-service-card:hover .tt-service-link {
    opacity: 1;

    transform: translateY(0);
}


.tt-service-link:hover {
    color: var(--tt-lighter);
}


.tt-service-link i {
    transition: transform 0.25s ease;
}


.tt-service-link:hover i {
    transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .tt-discover-services {
        grid-template-columns: repeat(2, 1fr);
    }


    .tt-discover-title {
        font-size: 44px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tt-discover-section {
        padding: 70px 0;
    }


    .tt-discover-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .tt-discover-title {
        font-size: 40px;
    }


    .tt-discover-description {
        font-size: 13px;
    }


    .tt-discover-small-images {
        gap: 12px;

        margin-top: 0;
    }


    .tt-discover-image-card {
        height: 230px;
    }


    .tt-image-overlay {
        opacity: 1;

        transform: none;
    }


    .tt-discover-featured {
        min-height: 380px;
    }


    .tt-featured-image {
        min-height: 380px;
    }


    .tt-featured-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }


    .tt-featured-overlay h3 {
        font-size: 28px;
    }


    .tt-discover-services {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 45px;
    }


    .tt-service-card {
        min-height: 310px;
    }


    .tt-service-link {
        opacity: 1;

        transform: none;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .tt-discover-title {
        font-size: 35px;
    }


    .tt-discover-small-images {
        grid-template-columns: 1fr 1fr;
    }


    .tt-discover-image-card {
        height: 190px;
    }


    .tt-featured-image {
        min-height: 340px;
    }


    .tt-featured-overlay h3 {
        font-size: 24px;
    }

}


/* =====================================================
   GO & DISCOVER DESTINATIONS
===================================================== */

.tt-destination-section {
    position: relative;

    overflow: hidden;

    padding: 105px 0 95px;

}


/* =====================================================
   BACKGROUND
===================================================== */

.tt-destination-bg {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;
}


/* Soft geometric shapes */

.tt-bg-shape {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(13, 17, 123, 0.035);

    animation: ttDestinationFloat 12s ease-in-out infinite;
}


.tt-bg-shape-1 {
    width: 650px;
    height: 650px;

    left: -480px;
    top: 60px;
}


.tt-bg-shape-2 {
    width: 500px;
    height: 500px;

    right: -350px;
    bottom: -280px;

    animation-delay: -5s;
}


@keyframes ttDestinationFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

}


/* =====================================================
   TRAVEL DOODLES
===================================================== */

.tt-travel-doodle {
    position: absolute;

    color: rgba(212, 160, 60, 0.18);

    pointer-events: none;
}


.tt-doodle-left {
    left: 0;

    bottom: 65px;

    font-size: 130px;

    transform: rotate(-20deg);

    animation:
        ttDoodleFloat 7s ease-in-out infinite;
}


.tt-doodle-right {
    right: 25px;

    top: 90px;

    color: rgba(13, 17, 123, 0.12);

    font-size: 45px;

    transform: rotate(-15deg);

    animation:
        ttPlaneFloat 8s ease-in-out infinite;
}


@keyframes ttDoodleFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-20deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(-14deg);
    }

}


@keyframes ttPlaneFloat {

    0%,
    100% {
        transform:
            translate(0, 0)
            rotate(-15deg);
    }

    50% {
        transform:
            translate(-18px, -10px)
            rotate(-10deg);
    }

}


/* =====================================================
   HEADER
===================================================== */

.tt-destination-header {
    position: relative;

    z-index: 2;

    max-width: 680px;

    margin: 0 auto 48px;

    text-align: center;
}


.tt-destination-eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--tt-accent);

    font-family: var(--tt-font);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


.tt-destination-title {
    margin: 0 0 17px;

    color: var(--tt-dark);

    font-family: var(--tt-font-display);

    font-size: clamp(40px, 4.2vw, 58px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.tt-destination-title span {
    color: var(--tt-primary);
}


.tt-destination-description {
    max-width: 610px;

    margin: 0 auto;

    color: var(--tt-text-muted);

    font-family: var(--tt-font);

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   CAROUSEL
===================================================== */

.tt-destination-carousel {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 20px;
}


.tt-destination-viewport {
    width: 100%;

    overflow: hidden;

    padding: 5px 0 12px;
}


.tt-destination-track {
    display: flex;

    gap: 24px;

    transition:
        transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* =====================================================
   CARD
===================================================== */

.tt-destination-card {
    position: relative;

    flex: 0 0 calc((100% - 48px) / 3);

    min-width: 0;

    display: block;

    color: var(--tt-dark);

    text-decoration: none;
}


.tt-destination-image {
    position: relative;

    width: 100%;

    height: 325px;

    overflow: hidden;

    border-radius: var(--tt-radius);

    background: var(--tt-light);

    box-shadow: var(--tt-shadow);

    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.tt-destination-card:hover .tt-destination-image {
    transform: translateY(-5px);

    box-shadow: var(--tt-shadow-lg);
}


.tt-destination-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 0.5s ease;
}


.tt-destination-card:hover .tt-destination-image img {
    transform: scale(1.07);

    filter: saturate(1.08);
}


/* =====================================================
   TRIP BADGE
===================================================== */

.tt-trip-badge {
    position: absolute;

    top: 12px;
    left: 12px;

    display: inline-flex;

    align-items: center;

    padding: 5px 10px;

    color: var(--tt-lighter);

    background: var(--tt-primary);

    border-radius: 20px;

    font-family: var(--tt-font);

    font-size: 10px;

    font-weight: 700;

    box-shadow:
        0 3px 10px rgba(5, 7, 51, 0.18);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.tt-destination-card:hover .tt-trip-badge {
    background: var(--tt-accent);

    transform: translateY(-2px);
}


/* =====================================================
   DESTINATION NAME
===================================================== */

.tt-destination-name {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 17px 2px 0;

    color: var(--tt-dark);

    font-family: var(--tt-font);

    font-size: 15px;

    font-weight: 700;
}


.tt-destination-name i {
    color: var(--tt-primary);

    font-size: 11px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.tt-destination-card:hover .tt-destination-name i {
    color: var(--tt-accent);

    transform: translateX(5px);
}


/* =====================================================
   CAROUSEL ARROWS
===================================================== */

.tt-carousel-arrow {
    position: relative;

    z-index: 5;

    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tt-primary);

    background: var(--tt-lighter);

    border: 1px solid var(--tt-border);

    border-radius: 50%;

    cursor: pointer;

    box-shadow: var(--tt-shadow-sm);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.tt-carousel-arrow:hover {
    color: var(--tt-lighter);

    background: var(--tt-primary);

    border-color: var(--tt-primary);

    transform: translateY(-2px);
}


.tt-carousel-arrow:active {
    transform: scale(0.94);
}


.tt-carousel-arrow:disabled {
    opacity: 0.35;

    cursor: not-allowed;

    transform: none;
}


/* =====================================================
   DOTS
===================================================== */

.tt-carousel-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 32px;
}


.tt-carousel-dots button {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    background: var(--tt-border);

    border-radius: 10px;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.tt-carousel-dots button.active {
    width: 24px;

    background: var(--tt-accent);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .tt-destination-section {
        padding: 80px 0;
    }


    .tt-destination-header {
        margin-bottom: 38px;
    }


    .tt-destination-card {
        flex-basis: calc((100% - 24px) / 2);
    }


    .tt-destination-image {
        height: 300px;
    }


    .tt-doodle-left {
        font-size: 90px;

        left: -20px;
    }


    .tt-doodle-right {
        right: 10px;

        font-size: 35px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tt-destination-section {
        padding: 65px 0 70px;
    }


    .tt-destination-header {
        margin-bottom: 30px;
    }


    .tt-destination-title {
        font-size: 39px;

        letter-spacing: -1px;
    }


    .tt-destination-description {
        font-size: 12px;

        padding: 0 12px;
    }


    .tt-destination-carousel {
        gap: 10px;
    }


    .tt-destination-card {
        flex-basis: 100%;
    }


    .tt-destination-image {
        height: 360px;
    }


    .tt-carousel-arrow {
        width: 36px;
        height: 36px;

        font-size: 10px;
    }


    .tt-destination-track {
        gap: 15px;
    }


    .tt-destination-name {
        padding-top: 14px;

        font-size: 14px;
    }


    .tt-doodle-left {
        left: -35px;
        bottom: 30px;

        font-size: 70px;

        opacity: 0.6;
    }


    .tt-doodle-right {
        top: 55px;

        right: 5px;

        font-size: 25px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .tt-destination-title {
        font-size: 34px;
    }


    .tt-destination-image {
        height: 310px;
    }


    .tt-carousel-arrow {
        width: 34px;
        height: 34px;
    }


    .tt-destination-carousel {
        gap: 7px;
    }

}

/* =====================================================
   MODERN CINEMATIC HERO
===================================================== */

.tt-hero-slider {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 700px;

    overflow: hidden;

    background: var(--tt-primary-dark);
}


/* =====================================================
   SLIDES
===================================================== */

.tt-hero-slides {
    position: absolute;

    inset: 0;
}


.tt-hero-slide {
    position: absolute;

    inset: 0;

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 1s ease,
        visibility 1s ease;
}


.tt-hero-slide.active {
    visibility: visible;

    opacity: 1;
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.tt-hero-background {
    position: absolute;

    inset: 0;

    overflow: hidden;
}


.tt-hero-background img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.08);

    transition:
        transform 7s cubic-bezier(0.2, 0.6, 0.2, 1);
}


.tt-hero-slide.active
.tt-hero-background img {
    transform: scale(1);
}


/* =====================================================
   OVERLAY
===================================================== */

.tt-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 51, 0.88) 0%,
            rgba(5, 7, 51, 0.65) 38%,
            rgba(5, 7, 51, 0.20) 70%,
            rgba(5, 7, 51, 0.42) 100%
        );
}


/* Bottom darkness */

.tt-hero-overlay::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 250px;

    background:
        linear-gradient(
            to top,
            rgba(5, 7, 51, 0.72),
            transparent
        );
}


/* =====================================================
   ATMOSPHERIC GLOW
===================================================== */

.tt-hero-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    left: -250px;
    top: 10%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(13, 17, 123, 0.35),
            transparent 68%
        );

    filter: blur(20px);

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

.tt-hero-container {
    position: relative;

    z-index: 5;

    height: 100%;
}


.tt-hero-content {
    position: absolute;

    left: 12px;

    top: 50%;

    transform: translateY(-43%);

    max-width: 720px;
}


/* =====================================================
   EYEBROW
===================================================== */

.tt-hero-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--tt-accent);

    font-family: var(--tt-font);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    opacity: 0;

    transform: translateY(20px);
}


.tt-hero-slide.active .tt-hero-eyebrow {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.7s ease 0.25s,
        transform 0.7s ease 0.25s;
}


.tt-hero-eyebrow-line {
    width: 32px;
    height: 1px;

    background: var(--tt-accent);
}


/* =====================================================
   HEADING
===================================================== */

.tt-hero-content h1 {
    max-width: 720px;

    margin: 0 0 24px;

    color: var(--tt-lighter);

    font-family: var(--tt-font-display);

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 600;

    line-height: 0.98;

    letter-spacing: -2.5px;

    opacity: 0;

    transform: translateY(30px);
}


.tt-hero-slide.active .tt-hero-content h1 {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.8s ease 0.35s,
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s;
}


.tt-hero-content h1 span {
    color: var(--tt-accent);

    font-style: italic;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.tt-hero-content > p {
    max-width: 570px;

    margin: 0 0 30px;

    color: rgba(255,255,255,0.76);

    font-family: var(--tt-font);

    font-size: 15px;

    line-height: 1.8;

    opacity: 0;

    transform: translateY(25px);
}


.tt-hero-slide.active .tt-hero-content > p {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.8s ease 0.5s,
        transform 0.8s ease 0.5s;
}


/* =====================================================
   BUTTONS
===================================================== */

.tt-hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    opacity: 0;

    transform: translateY(20px);
}


.tt-hero-slide.active .tt-hero-actions {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.7s ease 0.65s,
        transform 0.7s ease 0.65s;
}


/* Primary */

.tt-hero-primary-btn {
    height: 52px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 0 7px 0 21px;

    color: var(--tt-primary-dark);

    background: var(--tt-accent);

    border: 1px solid var(--tt-accent);

    border-radius: 30px;

    font-family: var(--tt-font);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.tt-hero-primary-btn span {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--tt-lighter);

    border-radius: 50%;

    transition:
        transform 0.3s ease;
}


.tt-hero-primary-btn:hover {
    color: var(--tt-primary-dark);

    transform: translateY(-3px);

    background: var(--tt-accent);

    box-shadow:
        0 12px 30px rgba(212,160,60,0.22);
}


.tt-hero-primary-btn:hover span {
    transform: rotate(-45deg);
}


/* Secondary */

.tt-hero-secondary-btn {
    height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 22px;

    color: var(--tt-lighter);

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.30);

    border-radius: 30px;

    font-family: var(--tt-font);

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}


.tt-hero-secondary-btn:hover {
    color: var(--tt-lighter);

    background: rgba(255,255,255,0.14);

    border-color: rgba(255,255,255,0.50);

    transform: translateY(-3px);
}


/* =====================================================
   STATS
===================================================== */

.tt-hero-stats {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 42px;

    opacity: 0;

    transform: translateY(20px);
}


.tt-hero-slide.active .tt-hero-stats {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.7s ease 0.8s,
        transform 0.7s ease 0.8s;
}


.tt-hero-stat {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.tt-hero-stat strong {
    color: var(--tt-lighter);

    font-family: var(--tt-font);

    font-size: 17px;

    font-weight: 700;
}


.tt-hero-stat span {
    color: rgba(255,255,255,0.48);

    font-family: var(--tt-font);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.tt-hero-stat-divider {
    width: 1px;

    height: 28px;

    background: rgba(255,255,255,0.18);
}


/* =====================================================
   LOCATION
===================================================== */

.tt-hero-location {
    position: absolute;

    z-index: 10;

    right: 45px;

    bottom: 145px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,0.65);

    font-family: var(--tt-font);

    font-size: 10px;

    letter-spacing: 0.5px;
}


.tt-hero-location i {
    color: var(--tt-accent);

    font-size: 12px;
}


/* =====================================================
   BOTTOM CONTROLS
===================================================== */

.tt-hero-bottom {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 40px;

    z-index: 20;
}


.tt-hero-slider-controls {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================================
   COUNTER
===================================================== */

.tt-hero-counter {
    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,0.45);

    font-family: var(--tt-font);

    font-size: 10px;

    font-weight: 600;
}


.tt-current-slide {
    color: var(--tt-lighter);

    font-size: 13px;
}


.tt-counter-line {
    width: 35px;

    height: 1px;

    background: rgba(255,255,255,0.30);
}


/* =====================================================
   PROGRESS
===================================================== */

.tt-hero-progress {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 6px;
}


.tt-hero-progress span {
    width: 35px;
    height: 2px;

    background: rgba(255,255,255,0.25);

    border-radius: 5px;

    overflow: hidden;
}


.tt-hero-progress span.active {
    background: var(--tt-accent);
}


/* =====================================================
   ARROWS
===================================================== */

.tt-hero-arrows {
    display: flex;

    align-items: center;

    gap: 7px;
}


.tt-hero-arrow {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--tt-lighter);

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.22);

    border-radius: 50%;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.tt-hero-arrow:hover {
    color: var(--tt-primary-dark);

    background: var(--tt-accent);

    border-color: var(--tt-accent);

    transform: translateY(-2px);
}


/* =====================================================
   SCROLL
===================================================== */

.tt-hero-scroll {
    position: absolute;

    z-index: 20;

    left: 50%;

    bottom: 42px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,0.40);

    font-family: var(--tt-font);

    font-size: 8px;

    letter-spacing: 2px;

    pointer-events: none;
}


.tt-hero-scroll i {
    color: var(--tt-accent);

    font-size: 10px;

    animation:
        ttHeroScroll 1.8s ease-in-out infinite;
}


@keyframes ttHeroScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .tt-hero-slider {
        min-height: 680px;
    }


    .tt-hero-content {
        left: 15px;

        max-width: 650px;
    }


    .tt-hero-content h1 {
        font-size: clamp(46px, 7vw, 70px);
    }


    .tt-hero-location {
        right: 25px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tt-hero-slider {
        height: 100svh;

        min-height: 650px;
    }


    /* Stronger mobile overlay */

    .tt-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5,7,51,0.55) 0%,
                rgba(5,7,51,0.35) 35%,
                rgba(5,7,51,0.88) 100%
            );
    }


    .tt-hero-overlay::after {
        display: none;
    }


    .tt-hero-container {
        padding-left: 24px;
        padding-right: 24px;
    }


    .tt-hero-content {
        left: 24px;
        right: 24px;

        top: 48%;

        max-width: none;

        transform: translateY(-40%);
    }


    .tt-hero-eyebrow {
        margin-bottom: 17px;

        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .tt-hero-eyebrow-line {
        width: 23px;
    }


    .tt-hero-content h1 {
        margin-bottom: 18px;

        font-size: clamp(42px, 12vw, 58px);

        line-height: 0.98;

        letter-spacing: -1.5px;
    }


    .tt-hero-content > p {
        margin-bottom: 23px;

        font-size: 12px;

        line-height: 1.7;
    }


    .tt-hero-actions {
        width: 100%;

        gap: 8px;
    }


    .tt-hero-primary-btn {
        height: 47px;

        flex: 1;

        padding-left: 16px;

        font-size: 10px;
    }


    .tt-hero-primary-btn span {
        width: 34px;
        height: 34px;
    }


    .tt-hero-secondary-btn {
        height: 47px;

        flex: 0 0 auto;

        padding: 0 15px;

        font-size: 10px;
    }


    .tt-hero-stats {
        gap: 12px;

        margin-top: 28px;
    }


    .tt-hero-stat strong {
        font-size: 13px;
    }


    .tt-hero-stat span {
        font-size: 7px;

        letter-spacing: 0.5px;
    }


    .tt-hero-stat-divider {
        height: 24px;
    }


    .tt-hero-location {
        right: auto;

        left: 24px;

        bottom: 125px;

        font-size: 9px;
    }


    .tt-hero-bottom {
        bottom: 24px;
    }


    .tt-hero-progress {
        display: none;
    }


    .tt-hero-scroll {
        display: none;
    }


    .tt-hero-arrow {
        width: 37px;
        height: 37px;

        font-size: 10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .tt-hero-content {
        top: 47%;
    }


    .tt-hero-content h1 {
        font-size: 40px;
    }


    .tt-hero-content > p {
        font-size: 11px;
    }


    .tt-hero-secondary-btn {
        display: none;
    }


    .tt-hero-primary-btn {
        flex: none;

        width: fit-content;
    }


    .tt-hero-stats {
        gap: 9px;
    }


    .tt-hero-stat strong {
        font-size: 12px;
    }


    .tt-hero-stat span {
        font-size: 6.5px;
    }

}