﻿
@media screen and (max-width: 610px) {
    .mobile-logo {
        width: 75%;
    }
    .mobileresponsive{
        padding:15px;
    }
}
@media screen and (max-width: 767px) {
    
    .mobileresponsive {
        padding: 15px;
    }
}
/* =========================================================
   TRIP TASTIC
   QUICK TRAVEL EXPERIENCES
========================================================= */
.tt-experience-section {
    background: #f8f6f0;
    padding: 50px 0 50px;
    overflow: hidden;
}


/* =========================================================
   TOP SECTION
========================================================= */

.tt-experience-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}


.tt-experience-heading {
    width: 35%;
}


.tt-experience-title {
    color: #111b38;
    font-family: Georgia, "Times New Roman", serif;
    font-size: /*56px*/ 40px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
}


    .tt-experience-title span {
        /* display: block;*/
        color: #c7a154;
        font-style: italic;
        margin-top: 2px;
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.tt-experience-description {
    width: 38%;
    padding-bottom: 5px;
}


    .tt-experience-description p {
        margin: 0;
        max-width: 470px;
        color: #5f6675;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.75;
    }


/* =========================================================
   RIGHT ACTION
========================================================= */

.tt-experience-action {
    width: 27%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}


.tt-experience-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c39a4a;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    white-space: nowrap;
}


.tt-gold-line {
    width: 35px;
    height: 1px;
    background: #c39a4a;
    display: inline-block;
}


.tt-experience-btn {
    height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 17px;
    color: #111b38;
    border: 1px solid #cfd0d0;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}


    .tt-experience-btn span {
        font-size: 18px;
        line-height: 1;
        transition: transform .3s ease;
    }


    .tt-experience-btn:hover {
        color: #fff;
        background: #111b38;
        border-color: #111b38;
    }


        .tt-experience-btn:hover span {
            transform: translateX(5px);
        }


/* =========================================================
   COUNT
========================================================= */

.tt-experience-count {
    display: flex;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 20px;
}


.tt-count-number {
    color: #c7a154;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}


.tt-count-content {
    margin-left: 18px;
    display: flex;
    flex-direction: column;
}


    .tt-count-content strong {
        color: #111b38;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 4px;
    }


    .tt-count-content span {
        color: #687080;
        font-size: 12px;
        font-weight: 400;
    }


/* =========================================================
   EXPERIENCE GRID
========================================================= */

.tt-experience-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 245px 245px;
    gap: 15px;
    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.tt-experience-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 0;
    background: #111b38;
    text-decoration: none;
    isolation: isolate;
}


.tt-card-large {
    grid-row: 1 / 3;
}


.tt-card-wide {
    grid-column: 2 / 4;
}


/* =========================================================
   IMAGE
========================================================= */

.tt-experience-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}


.tt-experience-card:hover img {
    transform: scale(1.07);
}


/* =========================================================
   OVERLAY
========================================================= */

.tt-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to bottom, rgba(0,0,0,0.03) 20%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.86) 100% );
    transition: background .4s ease;
}


.tt-experience-card:hover .tt-card-overlay {
    background: linear-gradient( to bottom, rgba(0,0,0,0.08) 10%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.92) 100% );
}


/* =========================================================
   CARD NUMBER
========================================================= */

.tt-card-number {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 3;
    color: rgba(255,255,255,.9);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.tt-card-content {
    position: absolute;
    z-index: 3;
    /* left: 2px; */
    /* right: 16px; */
    bottom: 0px;
    color: #fff;
    background: #00000047;
    padding: 15px 0px 5px 15px;
}


.tt-card-label {
    display: block;
    margin-bottom: 5px;
    color: #C9A45C;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}


.tt-card-content h3 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
}


.tt-card-content p {
    max-width: 400px;
    margin: 9px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
    padding-right: 55px;
}


.tt-experience-card:hover
.tt-card-content p {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   ROUND ARROW
========================================================= */

.tt-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 4;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111b38;
    background: #c7a154;
    border-radius: 50%;
    font-size: 17px;
    transition: transform .35s ease, background .35s ease;
}


.tt-experience-card:hover
.tt-card-arrow {
    transform: rotate(7deg) scale(1.05);
    background: #d8b66c;
}


/* =========================================================
   MOBILE HINT
========================================================= */

/*.tt-experience-mobile-hint {
    display: none;
}*/
/* =========================================================
   MOBILE EXPERIENCE CONTROLS
========================================================= */

.tt-experience-mobile-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}


.tt-experience-mobile-label {
    color: #687080;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}


.tt-experience-nav {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #111b38;
    background: transparent;
    border: 1px solid #c9c9c5;
    border-radius: 50%;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}


    .tt-experience-nav:hover {
        color: #fff;
        background: #111b38;
        border-color: #111b38;
    }


    .tt-experience-nav:active {
        transform: scale(.92);
    }

/* =========================================================
   1400px
========================================================= */

@media screen and (max-width: 1400px) {

    .tt-experience-section {
        padding: 85px 0 90px;
    }


    .tt-experience-title {
        font-size: 50px;
    }


    .tt-experience-grid {
        grid-template-rows: 230px 230px;
    }
}


/* =========================================================
   1200px
========================================================= */

@media screen and (max-width: 1200px) {

    .tt-experience-top {
        gap: 30px;
    }


    .tt-experience-title {
        font-size: 45px;
    }


    .tt-experience-description {
        width: 34%;
    }


    .tt-experience-action {
        width: 31%;
        gap: 12px;
    }


    .tt-experience-label {
        font-size: 9px;
    }


    .tt-experience-btn {
        padding: 0 13px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .tt-experience-section {
        padding: 75px 0 80px;
    }


    .tt-experience-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }


    .tt-experience-heading {
        width: auto;
    }


    .tt-experience-description {
        width: auto;
        align-self: end;
    }


    .tt-experience-action {
        width: auto;
        grid-column: 1 / 3;
        justify-content: flex-start;
        margin-top: 5px;
    }


    .tt-experience-count {
        margin-bottom: 35px;
    }


    .tt-experience-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 260px 260px;
    }


    .tt-card-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }


    .tt-card-wide {
        grid-column: 1 / 3;
    }


    .tt-card-content p {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   760px
========================================================= */

@media screen and (max-width: 760px) {

    .tt-experience-section {
        padding: 65px 0 70px;
    }


    .tt-experience-top {
        display: block;
    }


    .tt-experience-heading {
        width: 100%;
    }


    .tt-experience-title {
        font-size: 42px;
        line-height: 1.08;
    }


    .tt-experience-description {
        width: 100%;
        margin-top: 24px;
    }


        .tt-experience-description p {
            max-width: 600px;
            font-size: 14px;
            line-height: 1.7;
        }


    .tt-experience-action {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 28px;
    }


    .tt-experience-label {
        font-size: 10px;
        letter-spacing: 1.7px;
    }


    .tt-experience-btn {
        height: 45px;
        font-size: 11px;
        padding: 0 15px;
    }


    .tt-experience-count {
        margin-top: 28px;
        margin-bottom: 30px;
    }


    .tt-count-number {
        font-size: 42px;
    }


    .tt-count-content span {
        font-size: 11px;
    }


    /*
       Slick will take control of the cards
    */

    .tt-experience-grid {
        display: block;
        margin: 0;
    }


        .tt-experience-grid
        .slick-list {
            overflow: visible;
        }


        .tt-experience-grid
        .slick-slide {
            margin-right: 14px;
        }


    .tt-experience-card,
    .tt-card-large,
    .tt-card-wide {
        width: 82vw;
        height: 390px;
    }


    .tt-card-large,
    .tt-card-wide {
        grid-column: auto;
        grid-row: auto;
    }


    .tt-card-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }


        .tt-card-content h3 {
            font-size: 26px;
        }


        .tt-card-content p {
            opacity: 1;
            transform: none;
            font-size: 12px;
        }


    .tt-card-arrow {
        width: 38px;
        height: 38px;
        right: 18px;
        bottom: 18px;
    }


    /*.tt-experience-mobile-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        color: #687080;
        font-size: 10px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }*/
    .tt-experience-mobile-controls {
        display: flex;
    }

    .tt-experience-mobile-hint i {
        width: 40px;
        height: 1px;
        display: block;
        background: #c7a154;
    }
}


/* =========================================================
   430px
========================================================= */

@media screen and (max-width: 430px) {

    .tt-experience-section {
        padding: 55px 0 60px;
    }


    .tt-experience-title {
        font-size: 37px;
    }


    .tt-experience-description {
        margin-top: 20px;
    }


    .tt-experience-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }


    .tt-experience-btn {
        width: auto;
    }


    .tt-experience-count {
        margin-top: 25px;
    }


    .tt-count-number {
        font-size: 38px;
    }


    .tt-count-content {
        margin-left: 13px;
    }


        .tt-count-content strong {
            font-size: 12px;
        }


        .tt-count-content span {
            font-size: 10px;
        }


    .tt-experience-card,
    .tt-card-large,
    .tt-card-wide {
        width: 88vw;
        height: 370px;
    }


    .tt-card-content h3 {
        font-size: 24px;
    }
}


/* =========================================================
   358px
========================================================= */

@media screen and (max-width: 358px) {

    .tt-experience-title {
        font-size: 34px;
    }


    .tt-experience-card,
    .tt-card-large,
    .tt-card-wide {
        width: 90vw;
        height: 350px;
    }
}
/* =========================================================
   FEATURED TRAVEL ZONES
========================================================= */

.tt-featured-zones {
    position: relative;
    padding: 50px 0 50px;
    background: #111b38;
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.tt-zones-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 30px;
}


.tt-zones-heading {
    width: 50%;
}


.tt-zones-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #c7a154;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
}


    .tt-zones-eyebrow span {
        display: inline-block;
        width: 38px;
        height: 1px;
        background: #c7a154;
    }


.tt-zones-heading h2 {
    max-width: 670px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1px;
}


    .tt-zones-heading h2 em {
        /* display: block;*/
        color: #c7a154;
        font-style: italic;
    }


/* =========================================================
   HEADER RIGHT
========================================================= */

.tt-zones-intro {
    width: 38%;
    padding-bottom: 3px;
}


    .tt-zones-intro p {
        max-width: 470px;
        margin: 0 0 22px;
        color: rgba(255,255,255,.65);
        font-size: 13px;
        line-height: 1.75;
    }


.tt-zones-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    height: 43px;
    padding: 0 17px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all .3s ease;
}


    .tt-zones-all-btn span {
        font-size: 18px;
        transition: transform .3s ease;
    }


    .tt-zones-all-btn:hover {
        color: #111b38;
        background: #c7a154;
        border-color: #c7a154;
    }


        .tt-zones-all-btn:hover span {
            transform: translateX(5px);
        }


/* =========================================================
   ZONE SLIDER / GRID
========================================================= */

.tt-zones-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}


/* =========================================================
   ZONE CARD
========================================================= */

.tt-zone-card {
    position: relative;
    display: block;
    height: 560px;
    overflow: hidden;
    background: #000;
    text-decoration: none;
    isolation: isolate;
}


    /* =========================================================
   IMAGE
========================================================= */

    .tt-zone-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .7s ease;
    }


    .tt-zone-card:hover img {
        transform: scale(1.07);
        filter: saturate(1.08);
    }


/* =========================================================
   OVERLAY
========================================================= */

.tt-zone-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.05) 30%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.90) 100% );
    transition: background .5s ease;
}


.tt-zone-card:hover
.tt-zone-overlay {
    background: linear-gradient( to bottom, rgba(0,0,0,.12) 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.95) 100% );
}


/* =========================================================
   TOP
========================================================= */

.tt-zone-top {
    position: absolute;
    top: 22px;
    /*  left: 22px;
    right: 22px;*/
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    background: #111b389c;
}


.tt-zone-number {
    color: rgba(255,255,255,.9);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
}


.tt-zone-tag {
    color: rgba(255,255,255,.75);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-align: right;
}


/* =========================================================
   CONTENT
========================================================= */

.tt-zone-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 27px;
    z-index: 3;
    color: #fff;
}


.tt-zone-small-title {
    display: block;
    margin-bottom: 8px;
    color: #dfbd75;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}


.tt-zone-content h3 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.05;
}


    .tt-zone-content h3 em {
        display: block;
        color: #e1c17d;
        font-size: 25px;
        font-style: italic;
        margin-top: 3px;
    }


.tt-zone-content p {
    max-width: 370px;
    margin: 13px 0 16px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    line-height: 1.65;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease;
}


.tt-zone-card:hover
.tt-zone-content p {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   DESTINATION TAGS
========================================================= */

.tt-zone-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}


    .tt-zone-destinations span {
        display: inline-block;
        padding: 5px 8px;
        color: rgba(255,255,255,.78);
        border: 1px solid rgba(255,255,255,.25);
        font-size: 13px;
        line-height: 1;
        transition: all .3s ease;
    }


.tt-zone-card:hover
.tt-zone-destinations span {
    border-color: rgba(199,161,84,.7);
    color: #fff;
}


/* =========================================================
   ARROW
========================================================= */

.tt-zone-arrow {
    position: absolute;
    right: 22px;
    bottom: 25px;
    z-index: 4;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111b38;
    background: #c7a154;
    border-radius: 50%;
    font-size: 18px;
    transition: transform .35s ease, background .35s ease;
}


.tt-zone-card:hover
.tt-zone-arrow {
    transform: rotate(7deg) scale(1.06);
    background: #dfbd75;
}


/* =========================================================
   MOBILE CONTROLS
========================================================= */

.tt-zones-mobile-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    color: rgba(255,255,255,.55);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
}


.tt-zones-nav {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 17px;
    cursor: pointer;
    transition: all .3s ease;
}


    .tt-zones-nav:hover {
        color: #111b38;
        background: #c7a154;
        border-color: #c7a154;
    }


    .tt-zones-nav:active {
        transform: scale(.9);
    }


/* =========================================================
   1200px
========================================================= */

@media screen and (max-width: 1200px) {

    .tt-featured-zones {
        padding: 85px 0 90px;
    }


    .tt-zones-heading h2 {
        font-size: 46px;
    }


    .tt-zone-card {
        height: 510px;
    }


    .tt-zone-content h3 {
        font-size: 31px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .tt-zones-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: end;
    }


    .tt-zones-heading {
        width: auto;
    }


    .tt-zones-intro {
        width: auto;
    }


    .tt-zones-slider {
        grid-template-columns: repeat(2, 1fr);
    }


    .tt-zone-card {
        height: 480px;
    }


    .tt-zone-content p {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 760px) {

    .tt-featured-zones {
        padding: 65px 0 70px;
    }


    .tt-zones-header {
        display: block;
        margin-bottom: 35px;
    }


    .tt-zones-heading {
        width: 100%;
    }


        .tt-zones-heading h2 {
            font-size: 40px;
            line-height: 1.08;
        }


    .tt-zones-intro {
        width: 100%;
        margin-top: 23px;
    }


        .tt-zones-intro p {
            font-size: 13px;
            line-height: 1.7;
        }


    .tt-zones-all-btn {
        height: 42px;
    }


    /* Slick */

    .tt-zones-slider {
        display: block;
        margin: 0;
    }


        .tt-zones-slider
        .slick-list {
            overflow: visible;
        }


        .tt-zones-slider
        .slick-slide {
            margin-right: 14px;
        }


    .tt-zone-card {
        width: 82vw;
        height: 470px;
    }


    .tt-zone-content p {
        opacity: 1;
        transform: none;
    }


    .tt-zones-mobile-controls {
        display: flex;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 430px) {

    .tt-featured-zones {
        padding: 55px 0 60px;
    }


    .tt-zones-heading h2 {
        font-size: 35px;
    }


    .tt-zone-card {
        width: 88vw;
        height: 440px;
    }


    .tt-zone-content {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }


        .tt-zone-content h3 {
            font-size: 29px;
        }


            .tt-zone-content h3 em {
                font-size: 21px;
            }


    .tt-zone-destinations span {
        font-size: 8px;
    }
}

/* =========================================================
   NORTH-EAST INDIA SHOWCASE
========================================================= */

.tt-ne-showcase {
    position: relative;
    padding: 50px 0 50px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.tt-ne-layout {
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
    gap: 55px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.tt-ne-content {
    position: relative;
    z-index: 2;
    padding: 15px 0;
}


.tt-ne-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #b48b3c;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
}


    .tt-ne-eyebrow span {
        width: 38px;
        height: 1px;
        display: block;
        background: #b48b3c;
    }


/* =========================================================
   HEADING
========================================================= */

.tt-ne-content h2 {
    max-width: 520px;
    margin: 0;
    color: #111b38;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
}


    .tt-ne-content h2 em {
        display: block;
        color: #b48b3c;
        font-style: italic;
        margin-top: 4px;
    }


/* =========================================================
   INTRO
========================================================= */

.tt-ne-intro {
    max-width: 500px;
    margin: 25px 0 32px;
    color: #687080;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   STATE HEADING
========================================================= */

.tt-ne-states-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #111b38;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.7px;
}


    .tt-ne-states-heading i {
        width: 25px;
        height: 1px;
        display: block;
        background: #c8b58d;
    }


/* =========================================================
   STATES
========================================================= */

.tt-ne-states {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    max-width: 510px;
}


/* =========================================================
   INTERACTIVE STATE SELECTORS
========================================================= */

.tt-ne-states {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    max-width: 570px;
}


.tt-ne-state {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 0 12px;
    color: #4f5768;
    background: transparent;
    border: 1px solid #d8d4c9;
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}


    /* Hover */

    .tt-ne-state:hover {
        color: #111b38;
        border-color: #b9a77d;
        background: rgba(199,161,84,.08);
    }


    /* Active */

    .tt-ne-state.active {
        color: #fff;
        background: #111b38;
        border-color: #111b38;
    }


    /* Click */

    .tt-ne-state:active {
        transform: scale(.96);
    }


/* =========================================================
   IMAGE TRANSITION
========================================================= */

#ttNeStateImage {
    opacity: 1;
    transform: scale(1);
    transition: opacity .35s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}


    #ttNeStateImage.tt-ne-image-changing {
        opacity: 0;
        transform: scale(1.04);
    }


.tt-ne-states span:hover {
    color: #fff;
    background: #111b38;
    border-color: #111b38;
}


/* =========================================================
   CTA
========================================================= */

.tt-ne-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    height: 48px;
    margin-top: 32px;
    padding: 0 18px;
    color: #fff;
    background: #111b38;
    border: 1px solid #111b38;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}


    .tt-ne-btn span {
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111b38;
        background: #c7a154;
        border-radius: 50%;
        font-size: 14px;
        transition: transform .3s ease;
    }


    .tt-ne-btn:hover {
        color: #111b38;
        background: transparent;
    }


        .tt-ne-btn:hover span {
            transform: rotate(8deg);
        }


/* =========================================================
   VISUAL
========================================================= */

.tt-ne-visual {
    position: relative;
    min-height: 610px;
    padding: 0 22px 22px 0;
}


.tt-ne-image-wrap {
    position: relative;
    width: 100%;
    height: 610px;
    overflow: hidden;
    background: #1b2735;
    z-index: 2;
}


    .tt-ne-image-wrap img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: opacity .35s ease, transform 1s cubic-bezier(.2,.7,.2,1);
    }


    .tt-ne-image-wrap:hover img {
        transform: scale(1.04);
    }

    .tt-ne-image-wrap:hover img {
        transform: scale(1.04);
    }


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.tt-ne-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,.02) 20%, rgba(0,0,0,.12) 50%, rgba(0,0,0,.65) 100% );
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.tt-ne-image-label {
    position: absolute;
    top: 22px;
    /* left: 23px;
    right: 23px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 5px 22px;
    background: #00000047;
}


.tt-ne-image-number {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-style: italic;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.tt-ne-image-caption {
    position: absolute;
    left: 28px;
    bottom: 27px;
    display: flex;
    flex-direction: column;
    color: #fff;
}


    .tt-ne-image-caption span {
        margin-bottom: 4px;
        color: #dfbd75;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
    }


    .tt-ne-image-caption strong {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 31px;
        font-weight: 400;
        line-height: 1;
    }


/* =========================================================
   DECORATIVE FRAME
========================================================= */

.tt-ne-frame {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 82%;
    height: 82%;
    border: 1px solid #c7a154;
    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   DESTINATION STRIP
========================================================= */

.tt-ne-destination-strip {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    margin-top: 55px;
    border-top: 1px solid #d9d5ca;
    border-bottom: 1px solid #d9d5ca;
}


.tt-ne-strip-title {
    display: flex;
    align-items: center;
    padding: 20px 15px 20px 0;
    color: #9a8b6b;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
}


/* =========================================================
   DESTINATION ITEM
========================================================= */

.tt-ne-destination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 65px;
    padding: 0 18px;
    color: #111b38;
    border-left: 1px solid #d9d5ca;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s ease;
}


    .tt-ne-destination span {
        margin-right: 10px;
        color: #b69a5c;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 11px;
        font-style: italic;
    }


    .tt-ne-destination b {
        color: #b69a5c;
        font-family: Arial, sans-serif;
        font-size: 15px;
        font-weight: 400;
        opacity: 0;
        transform: translateX(-5px);
        transition: all .3s ease;
    }


    .tt-ne-destination:hover {
        color: #b48b3c;
        background: rgba(199,161,84,.05);
    }


        .tt-ne-destination:hover b {
            opacity: 1;
            transform: translateX(0);
        }


/* =========================================================
   1200px
========================================================= */

@media screen and (max-width: 1200px) {

    .tt-ne-showcase {
        padding: 90px 0 90px;
    }


    .tt-ne-layout {
        grid-template-columns: 46% 54%;
        gap: 35px;
    }


    .tt-ne-content h2 {
        font-size: 46px;
    }


    .tt-ne-visual,
    .tt-ne-image-wrap {
        min-height: 540px;
        height: 540px;
    }


    .tt-ne-destination {
        padding: 0 12px;
        font-size: 14px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .tt-ne-layout {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }


    .tt-ne-content h2 {
        font-size: 41px;
    }


    .tt-ne-intro {
        font-size: 13px;
        line-height: 1.7;
    }


    .tt-ne-visual,
    .tt-ne-image-wrap {
        min-height: 500px;
        height: 500px;
    }


    .tt-ne-destination-strip {
        grid-template-columns: repeat(2, 1fr);
    }


    .tt-ne-strip-title {
        grid-column: 1 / 3;
        min-height: 45px;
        padding: 15px 0;
        border-bottom: 1px solid #d9d5ca;
    }


    .tt-ne-destination:nth-child(4) {
        border-top: 1px solid #d9d5ca;
    }


    .tt-ne-destination:nth-child(5) {
        border-top: 1px solid #d9d5ca;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 760px) {

    .tt-ne-showcase {
        padding: 65px 0 70px;
    }


    .tt-ne-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }


    .tt-ne-content {
        width: 100%;
        padding: 0;
    }


        .tt-ne-content h2 {
            font-size: 39px;
            line-height: 1.07;
        }


    .tt-ne-intro {
        margin-top: 21px;
        font-size: 13px;
    }


    .tt-ne-states {
        gap: 6px;
    }


        .tt-ne-states span {
            min-height: 29px;
            padding: 0 10px;
            font-size: 9px;
        }


    .tt-ne-btn {
        margin-top: 27px;
    }


    .tt-ne-visual {
        width: 100%;
        min-height: 460px;
        height: 460px;
        padding: 0 12px 12px 0;
    }


    .tt-ne-image-wrap {
        height: 460px;
        min-height: 460px;
    }


    .tt-ne-frame {
        width: 90%;
        height: 90%;
    }


    .tt-ne-destination-strip {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 42px;
    }


    .tt-ne-strip-title {
        grid-column: auto;
        min-height: 45px;
        padding: 15px 0;
    }


    .tt-ne-destination {
        min-height: 58px;
        border-left: 0;
        border-top: 1px solid #d9d5ca;
    }


        .tt-ne-destination:nth-child(4),
        .tt-ne-destination:nth-child(5) {
            border-top: 1px solid #d9d5ca;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 430px) {

    .tt-ne-showcase {
        padding: 55px 0 60px;
    }


    .tt-ne-content h2 {
        font-size: 35px;
    }


    .tt-ne-intro {
        font-size: 12px;
    }


    .tt-ne-image-wrap {
        height: 400px;
        min-height: 400px;
    }


    .tt-ne-visual {
        height: 400px;
        min-height: 400px;
    }


    .tt-ne-image-caption strong {
        font-size: 27px;
    }


    .tt-ne-destination {
        font-size: 15px;
    }
}
/* =========================================================
   WHY TRIP TASTIC TOURS
========================================================= */

.tt-why-us {
    position: relative;
    padding: 50px 0 50px;
    background: #111b38;
    color: #fff;
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.tt-why-header {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: end;
    gap: 50px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,.14);
}


.tt-why-heading {
    max-width: 670px;
}


.tt-why-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #c7a154;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
}


    .tt-why-eyebrow span {
        width: 38px;
        height: 1px;
        display: block;
        background: #c7a154;
    }


/* =========================================================
   HEADING
========================================================= */

.tt-why-heading h2 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -1.4px;
}


    .tt-why-heading h2 em {
        /* display: block;*/
        color: #c7a154;
        font-style: italic;
    }


/* =========================================================
   INTRO
========================================================= */

.tt-why-intro {
    padding-bottom: 3px;
}


    .tt-why-intro p {
        max-width: 470px;
        margin: 0;
        color: rgba(255,255,255,.62);
        font-size: 13px;
        line-height: 1.8;
    }


/* =========================================================
   BENEFIT GRID
========================================================= */

.tt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}


/* =========================================================
   BENEFIT ITEM
========================================================= */

.tt-why-item {
    position: relative;
    min-height: 237px;
    padding: 20px 25px 20px;
    border-right: 1px solid rgba(255,255,255,.14);
    transition: background .4s ease;
}


    .tt-why-item:first-child {
        border-left: 1px solid rgba(255,255,255,.14);
    }


    .tt-why-item:hover {
        background: rgba(255,255,255,.035);
    }


/* =========================================================
   TOP
========================================================= */

.tt-why-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}


.tt-why-number {
    color: #c7a154;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
}


.tt-why-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c7a154;
    border: 1px solid rgba(199,161,84,.45);
    border-radius: 50%;
    font-size: 20px;
    transition: color .35s ease, background .35s ease, transform .35s ease;
}


.tt-why-item:hover
.tt-why-icon {
    color: #111b38;
    background: #c7a154;
    transform: rotate(8deg);
}


/* =========================================================
   BENEFIT TITLE
========================================================= */

.tt-why-item h3 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.12;
}


    .tt-why-item h3 em {
        display: block;
        color: #c7a154;
        font-size: 21px;
        font-style: italic;
        margin-top: 2px;
    }


/* =========================================================
   BENEFIT DESCRIPTION
========================================================= */

.tt-why-item p {
    max-width: 255px;
    margin: 15px 0 0;
    color: rgba(255,255,255,.52);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   BOTTOM PROMISE
========================================================= */

.tt-why-promise {
    display: grid;
    grid-template-columns: 1fr 2.4fr auto;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
}


.tt-why-promise-line {
    width: 100%;
    height: 1px;
    background: #c7a154;
}


.tt-why-promise-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}


    .tt-why-promise-text span {
        color: #c7a154;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2px;
    }


    .tt-why-promise-text strong {
        color: #fff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 20px;
        font-weight: 400;
    }


.tt-why-promise-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    height: 44px;
    padding: 0 15px;
    color: #111b38;
    background: #c7a154;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}


    .tt-why-promise-btn span {
        font-size: 17px;
        transition: transform .3s ease;
    }


    .tt-why-promise-btn:hover {
        color: #111b38;
        background: #dfbd75;
    }


        .tt-why-promise-btn:hover span {
            transform: translateX(4px);
        }


/* =========================================================
   1200px
========================================================= */

@media screen and (max-width: 1200px) {

    .tt-why-us {
        padding: 90px 0;
    }


    .tt-why-heading h2 {
        font-size: 46px;
    }


    .tt-why-item {
        padding: 27px 20px 30px;
    }


        .tt-why-item h3 {
            font-size: 22px;
        }


            .tt-why-item h3 em {
                font-size: 19px;
            }
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .tt-why-header {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding-bottom: 50px;
    }


    .tt-why-heading h2 {
        font-size: 40px;
    }


    .tt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .tt-why-item {
        min-height: 285px;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }


        .tt-why-item:nth-child(2) {
            border-right: 0;
        }


        .tt-why-item:nth-child(3) {
            border-left: 1px solid rgba(255,255,255,.14);
        }


    .tt-why-promise {
        grid-template-columns: 1fr 2fr;
        gap: 20px;
    }


    .tt-why-promise-btn {
        grid-column: 2;
        justify-self: start;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 760px) {

    .tt-why-us {
        padding: 65px 0 70px;
    }


    .tt-why-header {
        display: block;
        padding-bottom: 40px;
    }


    .tt-why-heading h2 {
        font-size: 39px;
        line-height: 1.07;
    }


    .tt-why-intro {
        margin-top: 22px;
    }


        .tt-why-intro p {
            font-size: 12px;
            line-height: 1.75;
        }


    .tt-why-grid {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }


    .tt-why-item {
        min-height: auto;
        padding: 28px 5px 30px;
        border-left: 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }


        .tt-why-item:first-child {
            border-left: 0;
        }


    .tt-why-top {
        margin-bottom: 38px;
    }


    .tt-why-item h3 {
        font-size: 25px;
    }


    .tt-why-item p {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.7;
    }


    .tt-why-promise {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-top: 35px;
    }


    .tt-why-promise-line {
        width: 45px;
    }


    .tt-why-promise-text strong {
        font-size: 19px;
        line-height: 1.3;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 430px) {

    .tt-why-us {
        padding: 55px 0 60px;
    }


    .tt-why-heading h2 {
        font-size: 35px;
    }


    .tt-why-item {
        padding-left: 0;
        padding-right: 0;
    }


    .tt-why-promise-text strong {
        font-size: 18px;
    }
}

/* =========================================================
   CUSTOMISE YOUR JOURNEY
========================================================= */

.tt-custom-journey {
    position: relative;
    padding: 115px 0;
    background: #f7f4ed;
    overflow: hidden;
}


/* =========================================================
   LAYOUT
========================================================= */

.tt-custom-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    gap: 65px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.tt-custom-content {
    padding-left: 5px;
}


.tt-custom-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #b48b3c;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
}


    .tt-custom-eyebrow span {
        width: 38px;
        height: 1px;
        display: block;
        background: #b48b3c;
    }


/* =========================================================
   HEADING
========================================================= */

.tt-custom-content h2 {
    margin: 0;
    color: #111b38;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 57px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -1.7px;
}


    .tt-custom-content h2 em {
        display: block;
        color: #b48b3c;
        font-style: italic;
    }


/* =========================================================
   DESCRIPTION
========================================================= */

.tt-custom-content > p {
    max-width: 450px;
    margin: 27px 0 0;
    color: #697181;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   NOTE
========================================================= */

.tt-custom-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 35px;
}


.tt-custom-note-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111b38;
    background: #d7bd7e;
    border-radius: 50%;
    font-size: 14px;
}


.tt-custom-note div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.tt-custom-note strong {
    color: #111b38;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 400;
}


.tt-custom-note small {
    color: #858b96;
    font-size: 9px;
    letter-spacing: .5px;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.tt-custom-form-wrap {
    position: relative;
    padding: 40px;
    background: #fff;
    border: 1px solid #e1ddd3;
    box-shadow: 0 20px 55px rgba(17,27,56,.07);
}


/* =========================================================
   FORM
========================================================= */

.tt-custom-form {
    display: flex;
    flex-direction: column;
    gap: 23px;
}


/* =========================================================
   FIELD
========================================================= */

.tt-custom-field {
    position: relative;
}


    .tt-custom-field label {
        display: block;
        margin-bottom: 9px;
        color: #7e7565;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.7px;
    }


    /* =========================================================
   SELECT / INPUT
========================================================= */

    .tt-custom-field input,
    .tt-custom-select {
        width: 100%;
        height: 48px;
        box-sizing: border-box;
        color: #182139;
        background: #faf9f5;
        border: 1px solid #ddd9cf;
        border-radius: 0;
        font-family: inherit;
        font-size: 12px;
        outline: none;
        transition: border-color .3s ease, background .3s ease;
    }


    .tt-custom-field input {
        padding: 0 13px;
    }


        .tt-custom-field input:focus {
            background: #fff;
            border-color: #bca56d;
        }


.tt-custom-select {
    position: relative;
    display: flex;
    align-items: center;
}


    .tt-custom-select select {
        width: 100%;
        height: 100%;
        padding: 0 38px 0 13px;
        color: #182139;
        background: transparent;
        border: 0;
        outline: none;
        appearance: none;
        font-family: inherit;
        font-size: 12px;
        cursor: pointer;
    }


    .tt-custom-select span {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #b48b3c;
        font-size: 15px;
        pointer-events: none;
    }


    .tt-custom-select:focus-within {
        background: #fff;
        border-color: #bca56d;
    }


/* =========================================================
   TWO COLUMN ROW
========================================================= */

.tt-custom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* =========================================================
   EXPERIENCE BUTTONS
========================================================= */

.tt-custom-experiences {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}


.tt-custom-experience {
    min-height: 34px;
    padding: 0 13px;
    color: #697181;
    background: transparent;
    border: 1px solid #ddd9cf;
    border-radius: 0;
    font-family: inherit;
    font-size: 10px;
    cursor: pointer;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .2s ease;
}


    .tt-custom-experience:hover {
        color: #111b38;
        border-color: #bca56d;
    }


    .tt-custom-experience.active {
        color: #fff;
        background: #111b38;
        border-color: #111b38;
    }


    .tt-custom-experience:active {
        transform: scale(.96);
    }


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.tt-custom-submit {
    position: relative;
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    color: #fff;
    background: #111b38;
    border: 1px solid #111b38;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
}


    .tt-custom-submit b {
        width: 29px;
        height: 29px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111b38;
        background: #c7a154;
        border-radius: 50%;
        font-size: 16px;
        font-weight: 400;
        transition: transform .3s ease;
    }


    .tt-custom-submit:hover {
        color: #111b38;
        background: transparent;
    }


        .tt-custom-submit:hover b {
            transform: translateX(4px);
        }


/* =========================================================
   FORM MESSAGE
========================================================= */

.tt-custom-form-message {
    min-height: 15px;
    color: #b48b3c;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1100px) {

    .tt-custom-journey {
        padding: 90px 0;
    }


    .tt-custom-layout {
        grid-template-columns: 38% 62%;
        gap: 35px;
    }


    .tt-custom-content h2 {
        font-size: 46px;
    }


    .tt-custom-form-wrap {
        padding: 30px;
    }
}


/* =========================================================
   TABLET / SMALL
========================================================= */

@media screen and (max-width: 900px) {

    .tt-custom-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .tt-custom-content {
        padding-left: 0;
    }


        .tt-custom-content h2 {
            font-size: 48px;
        }


        .tt-custom-content > p {
            max-width: 650px;
        }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 760px) {

    .tt-custom-journey {
        padding: 65px 0 70px;
    }


    .tt-custom-layout {
        gap: 35px;
    }


    .tt-custom-content h2 {
        font-size: 39px;
        line-height: 1.06;
    }


    .tt-custom-content > p {
        margin-top: 20px;
        font-size: 12px;
        line-height: 1.75;
    }


    .tt-custom-note {
        margin-top: 27px;
    }


    .tt-custom-form-wrap {
        padding: 25px 20px;
        box-shadow: 0 15px 40px rgba(17,27,56,.06);
    }


    .tt-custom-form {
        gap: 20px;
    }


    .tt-custom-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .tt-custom-experience {
        min-height: 33px;
        padding: 0 11px;
        font-size: 9px;
    }


    .tt-custom-submit {
        min-height: 50px;
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 430px) {

    .tt-custom-journey {
        padding: 55px 0 60px;
    }


    .tt-custom-content h2 {
        font-size: 35px;
    }


    .tt-custom-form-wrap {
        padding: 22px 16px;
    }


    .tt-custom-note small {
        font-size: 8px;
    }
}

/* =========================================================
   PREMIUM FESTIVE CALENDAR
========================================================= */

.tt-festive-section {
    position: relative;
    overflow: hidden;
}


.tt-festive-bg {
    position: relative;
    padding: 50px 0 50px;
    background: linear-gradient( rgba(10, 20, 42, .92), rgba(10, 20, 42, .96) ), url("../Content/img/bgfestive.jpg") center center / cover no-repeat;
    color: #fff;
}


    /* =========================================================
   SUBTLE DECORATION
========================================================= */

    .tt-festive-bg::before {
        content: "";
        position: absolute;
        top: 45px;
        right: -90px;
        width: 240px;
        height: 240px;
        border: 1px solid rgba(199,161,84,.12);
        border-radius: 50%;
    }


    .tt-festive-bg::after {
        content: "";
        position: absolute;
        bottom: 80px;
        left: -130px;
        width: 280px;
        height: 280px;
        border: 1px solid rgba(199,161,84,.08);
        border-radius: 50%;
    }


/* =========================================================
   HEADER
========================================================= */

.tt-festive-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    text-align: center;
}


.tt-festive-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 17px;
    color: #c7a154;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
}


    .tt-festive-eyebrow span {
        width: 35px;
        height: 1px;
        background: #c7a154;
        opacity: .75;
    }


.tt-festive-title {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tt-festive-description {
    display: /*grid*/ flex;
    grid-template-columns: 1fr 1fr;
    max-width: /*920px*/ 1370px;
    margin: 25px auto 0;
    border-top: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}


    .tt-festive-description p {
        margin: 0;
        padding: 13px 25px;
        color: rgba(255,255,255,.62);
        font-size: 13px;
        line-height: 1.8;
        text-align: left;
    }


        .tt-festive-description p + p {
            border-left: 1px solid rgba(255,255,255,.14);
        }


/* =========================================================
   GRID
========================================================= */

.tt-festive-content {
    position: relative;
    z-index: 2;
}


.tt-festive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.tt-festive-card {
    position: relative;
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,.04);
    border: 1px solid rgb(255 255 255 / 39%);
    overflow: hidden;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .35s ease, background .35s ease;
}


    .tt-festive-card:hover {
        transform: translateY(-7px);
        border-color: rgba(199,161,84,.75);
        background: rgba(255,255,255,.07);
    }


/* =========================================================
   IMAGE
========================================================= */

.tt-festive-image {
    position: relative;
    height: 205px;
    overflow: hidden;
    background: #151f38;
}


    .tt-festive-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
    }


.tt-festive-card:hover
.tt-festive-image img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.03);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.tt-festive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(8,15,31,.05) 35%, rgba(8,15,31,.75) 100% );
    pointer-events: none;
}


/* =========================================================
   NUMBER
========================================================= */

.tt-festive-number {
    position: absolute;
    top: 13px;
    left: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    background: rgba(10,20,42,.65);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(5px);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-style: italic;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.tt-festive-card-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 57px;
    padding: 0 15px;
    background: #111b38;
}


.tt-festive-month {
    position: relative;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
    transition: color .3s ease;
}


    .tt-festive-month::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -7px;
        width: 0;
        height: 1px;
        background: #c7a154;
        transition: width .4s ease;
    }


.tt-festive-card:hover
.tt-festive-month {
    color: #c7a154;
}


    .tt-festive-card:hover
    .tt-festive-month::after {
        width: 100%;
    }


/* =========================================================
   ARROW
========================================================= */

.tt-festive-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    color: #111b38;
    background: #c7a154;
    border-radius: 50%;
    font-size: 15px;
    transition: transform .35s ease, background .3s ease;
}


.tt-festive-card:hover
.tt-festive-arrow {
    transform: translateX(4px);
    background: #dfbd75;
}


/* =========================================================
   FOOTER
========================================================= */

.tt-festive-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1367px;
    margin: 40px 69px 0px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.13);
    color: rgba(255,255,255,.38);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media screen and (max-width: 1100px) {

    .tt-festive-bg {
        padding: 85px 0 75px;
    }


    .tt-festive-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }


    .tt-festive-image {
        height: 190px;
    }


    .tt-festive-title {
        font-size: 46px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 800px) {

    .tt-festive-bg {
        padding: 75px 0 65px;
    }


    .tt-festive-heading {
        margin-bottom: 45px;
    }


    .tt-festive-title {
        font-size: 42px;
    }


    .tt-festive-description {
        grid-template-columns: 1fr;
    }


        .tt-festive-description p {
            padding: 17px 20px;
            text-align: center;
        }


            .tt-festive-description p + p {
                border-top: 1px solid rgba(255,255,255,.14);
                border-left: 0;
            }


    .tt-festive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
    }


    .tt-festive-image {
        height: 210px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .tt-festive-bg {
        padding: 60px 0 55px;
    }


    .tt-festive-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }


        .tt-festive-eyebrow span {
            width: 22px;
        }


    .tt-festive-title {
        font-size: 37px;
    }


    .tt-festive-description {
        margin-top: 20px;
    }


        .tt-festive-description p {
            font-size: 10px;
            line-height: 1.75;
        }


    .tt-festive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }


    .tt-festive-image {
        height: 165px;
    }


    .tt-festive-card-bottom {
        min-height: 50px;
        padding: 0 11px;
    }


    .tt-festive-month {
        font-size: 14px;
    }


    .tt-festive-arrow {
        width: 25px;
        height: 25px;
        font-size: 13px;
    }


    .tt-festive-number {
        width: 25px;
        height: 25px;
        top: 9px;
        left: 9px;
        font-size: 8px;
    }


    .tt-festive-footer {
        flex-direction: column;
        gap: 9px;
        text-align: center;
        margin-top: 38px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 380px) {

    .tt-festive-title {
        font-size: 33px;
    }


    .tt-festive-image {
        height: 145px;
    }


    .tt-festive-card-bottom {
        min-height: 46px;
    }


    .tt-festive-month {
        font-size: 13px;
    }
}

/* =========================================================
   JOURNEYS OUR TRAVELLERS LOVE
   PREMIUM WHITE SECTION
========================================================= */

.tt-journeys-section {
    position: relative;
    padding: 50px 0 50px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.tt-journeys-header {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
}


.tt-journeys-title-area {
    max-width: 650px;
}


/* =========================================================
   EYEBROW
========================================================= */

.tt-journeys-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 7px;
    color: #b08a42;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.7px;
}


    .tt-journeys-eyebrow span {
        width: 35px;
        height: 1px;
        display: inline-block;
        background: #b08a42;
    }


/* =========================================================
   TITLE
========================================================= */

.tt-journeys-title-area
.section_title_1 {
    margin: 0;
    color: #101a35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1px;
}


/* =========================================================
   INTRO
========================================================= */

.tt-journeys-intro {
    max-width: 733px;
    margin: 10px 0 0;
    color: #858b96;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.tt-journeys-view-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    height: 45px;
    padding: 0 8px 0 18px !important;
    color: #101a35 !important;
    background: transparent !important;
    border: 1px solid #dedbd3 !important;
    border-radius: 0 !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .6px;
    text-decoration: none;
    transition: border-color .3s ease, background .3s ease, color .3s ease;
}


    .tt-journeys-view-btn b {
        width: 29px;
        height: 29px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: #b08a42;
        border-radius: 50%;
        font-size: 15px;
        font-weight: 400;
        transition: transform .3s ease;
    }


    .tt-journeys-view-btn:hover {
        color: #fff !important;
        background: #101a35 !important;
        border-color: #101a35 !important;
    }


        .tt-journeys-view-btn:hover b {
            transform: translateX(3px);
            background: #c7a154;
        }


/* =========================================================
   SLIDER
========================================================= */

.tt-journeys-section
.popular_destination__slider {
    margin-top: 0;
}


/* =========================================================
   CARD
========================================================= */

.tt-journey-card {
    position: relative;
    background: #fff;
    border: 1px solid #e8e5de;
    box-shadow: 0 8px 30px rgba(16,26,53,.055);
    overflow: hidden;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, border-color .35s ease;
}


    .tt-journey-card:hover {
        transform: translateY(-8px);
        border-color: #d2bc8a;
        box-shadow: 0 18px 45px rgba(16,26,53,.12);
    }


    /* =========================================================
   IMAGE
========================================================= */

    .tt-journey-card
    .tt-journey-image {
        position: relative;
        display: block;
        overflow: hidden;
    }


    /*
   Important:
   Existing sq_parent / sq_wrap system is retained.
*/

    .tt-journey-card
    .sq_content {
        transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
    }


    .tt-journey-card:hover
    .sq_content {
        transform: scale(1.08);
        filter: saturate(1.08) contrast(1.03);
    }


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.tt-journey-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, transparent 55%, rgba(5,12,27,.25) );
    opacity: 0;
    transition: opacity .4s ease;
}


.tt-journey-card:hover
.tt-journey-image::after {
    opacity: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.tt-journey-card
.tt-journey-content {
    display: block;
    padding: 21px 20px 13px;
    text-decoration: none;
}


.tt-journey-card
.slide_title {
    margin: 0 0 9px;
    color: #101a35;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
    transition: color .3s ease;
}


.tt-journey-card:hover
.slide_title {
    color: #b08a42;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tt-journey-card
.slide_text {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #7d8490;
    font-size: 10.5px;
    line-height: 1.7;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/* =========================================================
   FOOTER
========================================================= */

.tt-journey-card
.tt-journey-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    padding: 13px 0 17px;
    border-top: 1px solid #eeeae2;
}


/* =========================================================
   TOUR COUNT
========================================================= */

.tt-journey-card
.hours {
    color: #a18c67;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}


/* =========================================================
   VIEW TOURS
========================================================= */

.tt-journey-card
.tours_link a {
    position: relative;
    color: #101a35;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    text-decoration: none;
    transition: color .3s ease;
}


    .tt-journey-card
    .tours_link a::after {
        content: " →";
        color: #b08a42;
        font-size: 13px;
        transition: padding-left .3s ease;
    }


    .tt-journey-card
    .tours_link a:hover {
        color: #b08a42;
    }


        .tt-journey-card
        .tours_link a:hover::after {
            padding-left: 3px;
        }


/* =========================================================
   SLIDER ARROWS
========================================================= */

.tt-journeys-section
.controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}


    .tt-journeys-section
    .controls .arrow {
        width: 39px;
        height: 39px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #dedbd3;
        cursor: pointer;
        transition: background .3s ease, border-color .3s ease, color .3s ease;
    }


        .tt-journeys-section
        .controls .arrow:hover {
            background: #101a35;
            border-color: #101a35;
        }


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 1000px) {

    .tt-journeys-section {
        padding: 85px 0 90px;
    }


    .tt-journeys-header {
        margin-bottom: 35px;
    }


    .tt-journeys-title-area
    .section_title_1 {
        font-size: 40px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 700px) {

    .tt-journeys-section {
        padding: 65px 0 70px;
    }


    .tt-journeys-header {
        display: block;
        margin-bottom: 30px;
    }


    .tt-journeys-title-area
    .section_title_1 {
        font-size: 35px;
        line-height: 1.08;
    }


    .tt-journeys-intro {
        font-size: 11px;
        line-height: 1.7;
    }


    .tt-journeys-view-btn {
        margin-top: 20px;
    }


    .tt-journeys-section
    .controls {
        margin-top: 18px;
    }


        .tt-journeys-section
        .controls .arrow {
            width: 35px;
            height: 35px;
        }


    .tt-journey-card
    .tt-journey-content {
        padding: 17px 15px 11px;
    }


    .tt-journey-card
    .slide_title {
        font-size: 18px;
    }


    .tt-journey-card
    .slide_text {
        font-size: 10px;
    }


    .tt-journey-card
    .tt-journey-footer {
        margin: 0 15px;
        padding: 11px 0 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 420px) {

    .tt-journeys-title-area
    .section_title_1 {
        font-size: 31px;
    }


    .tt-journeys-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }


    .tt-journeys-intro {
        max-width: 100%;
    }
}


/* ==========================================================
   TRIP TASTIC TOURS
   PREMIUM JOURNEYS SECTION
   ALL CSS SCOPED UNDER #tt-premium-journeys
========================================================== */


/* ----------------------------------------------------------
   MAIN SECTION
---------------------------------------------------------- */

#tt-premium-journeys {
    position: relative;
    width: 100%;
    padding: 50px 0 50px;
    background: #ffffff;
    overflow: hidden;
}


    /* Very subtle decorative circle */

    #tt-premium-journeys::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        right: -150px;
        top: 80px;
        border: 1px solid rgba(176, 138, 66, 0.10);
        border-radius: 50%;
        pointer-events: none;
    }


    /* Another subtle decoration */

    #tt-premium-journeys::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        left: -100px;
        bottom: 80px;
        border: 1px solid rgba(176, 138, 66, 0.08);
        border-radius: 50%;
        pointer-events: none;
    }


    /* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */

    #tt-premium-journeys .top_part {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 28px;
    }


    /* ----------------------------------------------------------
   LEFT HEADER
---------------------------------------------------------- */

    #tt-premium-journeys .top_part_left {
        max-width: 781px;
    }


        /* Small premium eyebrow */

        #tt-premium-journeys .top_part_left::before {
            /*            content: "EXPLORE OUR FAVOURITES";
*/ display: block;
            margin-bottom: 13px;
            color: #b08a42;
            font-size: 9px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 3px;
            text-transform: uppercase;
        }


        /* Decorative line before eyebrow */

        #tt-premium-journeys .top_part_left::after {
            /*            content: "";
*/ position: absolute;
            width: 34px;
            height: 1px;
            left: 0;
            top: -4px;
            background: #b08a42;
        }


    /* ----------------------------------------------------------
   TITLE
---------------------------------------------------------- */

    #tt-premium-journeys .section_title_1 {
        margin: 0;
        color: #111b35;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 40px;
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -1px;
    }


    /* ----------------------------------------------------------
   RIGHT HEADER
---------------------------------------------------------- */

    #tt-premium-journeys .top_part_right {
        display: flex;
        align-items: center;
        gap: 0px;
    }


        /* ----------------------------------------------------------
   VIEW ALL BUTTON
---------------------------------------------------------- */

        #tt-premium-journeys .top_part_right > .btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 22px;
            color: #111b35;
            background: #ffffff;
            border: 1px solid #ddd8ce;
            border-radius: 0;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: .6px;
            text-transform: uppercase;
            text-decoration: none;
            box-shadow: none;
            transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
        }


            #tt-premium-journeys .top_part_right > .btn:hover {
                color: #ffffff;
                background: #111b35;
                border-color: #111b35;
                transform: translateY(-2px);
            }


    /* ----------------------------------------------------------
   SLIDER CONTROLS
---------------------------------------------------------- */

    #tt-premium-journeys #popular_destination__arrows {
        display: flex;
        align-items: center;
        gap: 7px;
    }


        /* Individual arrows */

        #tt-premium-journeys #popular_destination__arrows .arrow {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border: 1px solid #ddd8ce;
            cursor: pointer;
            transition: background .3s ease, border-color .3s ease, transform .3s ease;
        }


            #tt-premium-journeys #popular_destination__arrows .arrow:hover {
                background: #111b35;
                border-color: #111b35;
                transform: translateY(-2px);
            }


    /* ----------------------------------------------------------
   SECTION CONTENT
---------------------------------------------------------- */

    #tt-premium-journeys .section_content {
        position: relative;
        z-index: 2;
    }


    /* ----------------------------------------------------------
   SLIDER
---------------------------------------------------------- */

    #tt-premium-journeys #popular_destination__slider {
        position: relative;
    }


        /* ----------------------------------------------------------
   DESTINATION CARD
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_item {
            position: relative;
            background: #ffffff;
            border: 1px solid #e8e4dc;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(17, 27, 53, 0.045);
            transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, border-color .35s ease;
            border-radius: 0px;
        }


            #tt-premium-journeys
            #popular_destination__slider
            .slide_item:hover {
                transform: translateY(-7px);
                border-color: #d1b77b;
                box-shadow: 0 18px 45px rgba(17, 27, 53, 0.12);
            }


        /* ----------------------------------------------------------
   IMAGE AREA
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_item_img {
            position: relative;
            display: block;
            overflow: hidden;
        }


            /* Dark premium image overlay */

            #tt-premium-journeys
            #popular_destination__slider
            .slide_item_img::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                top: 0;
                background: linear-gradient( to bottom, rgba(0,0,0,0) 45%, rgba(5,12,28,.28) 100% );
                opacity: 0;
                pointer-events: none;
                transition: opacity .4s ease;
            }


        #tt-premium-journeys
        #popular_destination__slider
        .slide_item:hover
        .slide_item_img::after {
            opacity: 1;
        }


        /* ----------------------------------------------------------
   IMAGE ZOOM
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_item_img
        .sq_content {
            transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
            border-radius: 0px;
        }


        #tt-premium-journeys
        #popular_destination__slider
        .slide_item:hover
        .slide_item_img
        .sq_content {
            transform: scale(1.08);
            filter: saturate(1.08) contrast(1.03);
        }


        /* ----------------------------------------------------------
   CONTENT
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_item_content {
            display: block;
            padding: 14px 14px 12px;
            background: #ffffff;
            text-decoration: none;
        }


        /* ----------------------------------------------------------
   DESTINATION TITLE
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_title {
            position: relative;
            margin: 0 0 5px;
            color: #111b35;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 21px;
            font-weight: 400;
            line-height: 1.2;
            transition: color .3s ease;
        }


        #tt-premium-journeys
        #popular_destination__slider
        .slide_item:hover
        .slide_title {
            color: #b08a42;
        }


        /* ----------------------------------------------------------
   GOLD UNDERLINE
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_title::after {
            content: "";
            display: block;
            width: 0;
            height: 1px;
            margin-top: 7px;
            background: #b08a42;
            transition: width .4s ease;
        }


        #tt-premium-journeys
        #popular_destination__slider
        .slide_item:hover
        .slide_title::after {
            width: 30px;
        }


        /* ----------------------------------------------------------
   DESCRIPTION
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_text {
            display: -webkit-box;
            margin: 0;
            color: #7d8490;
            font-size: 14px;
            line-height: 1.75;
            overflow: hidden;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }


        /* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0 0px;
            padding: 15px 17px 16px;
            background: #111b38;
            border-top: 1px solid #c7a154;
            border: 0px;
            border-bottom-left-radius: 0px;
            border-bottom-right-radius: 0px;
        }


        /* ----------------------------------------------------------
   TOUR COUNT
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .hours {
            color: #c7a154;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: .6px;
            text-transform: uppercase;
        }


        /* ----------------------------------------------------------
   VIEW ALL TOURS
---------------------------------------------------------- */

        #tt-premium-journeys
        #popular_destination__slider
        .tours_link a {
            position: relative;
            color: #c7a154;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .4px;
            text-decoration: none;
            transition: color .3s ease;
        }


            #tt-premium-journeys
            #popular_destination__slider
            .tours_link a::after {
                content: " →";
                color: #b08a42;
                font-size: 13px;
                transition: margin-left .3s ease;
            }


            #tt-premium-journeys
            #popular_destination__slider
            .tours_link a:hover {
                color: #b08a42;
            }


                #tt-premium-journeys
                #popular_destination__slider
                .tours_link a:hover::after {
                    margin-left: 3px;
                }


/* ==========================================================
   TABLET
========================================================== */

@media screen and (max-width: 1100px) {

    #tt-premium-journeys {
        padding: 85px 0 85px;
    }


        #tt-premium-journeys .section_title_1 {
            font-size: 40px;
        }


        #tt-premium-journeys .top_part_right {
            gap: 15px;
        }
}


/* ==========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 767px) {

    #tt-premium-journeys {
        padding: 65px 0 70px;
    }


        /* Header becomes vertical */

        #tt-premium-journeys .top_part {
            display: block;
            margin-bottom: 30px;
        }


        #tt-premium-journeys .top_part_left {
            max-width: 100%;
        }


            #tt-premium-journeys .top_part_left::before {
                margin-bottom: 12px;
                font-size: 8px;
                letter-spacing: 2.3px;
            }


            #tt-premium-journeys .top_part_left::after {
                display: none;
            }


        #tt-premium-journeys .section_title_1 {
            font-size: 34px;
            line-height: 1.1;
        }


        /* Right side */

        #tt-premium-journeys .top_part_right {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 22px;
        }


            #tt-premium-journeys
            .top_part_right > .btn {
                min-height: 42px;
                padding: 0 17px;
                font-size: 9px;
            }


        #tt-premium-journeys
        #popular_destination__arrows {
            gap: 5px;
        }


            #tt-premium-journeys
            #popular_destination__arrows
            .arrow {
                width: 36px;
                height: 36px;
            }


        /* Card */

        #tt-premium-journeys
        #popular_destination__slider
        .slide_item_content {
            padding: 16px 15px 10px;
        }


        #tt-premium-journeys
        #popular_destination__slider
        .slide_title {
            font-size: 18px;
        }


        #tt-premium-journeys
        #popular_destination__slider
        .slide_text {
            font-size: 10px;
            line-height: 1.7;
        }


        #tt-premium-journeys
        #popular_destination__slider
        .slide_footer {
            margin: 0 0px;
            padding: 11px 20px 14px;
        }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media screen and (max-width: 420px) {

    #tt-premium-journeys {
        padding: 55px 0 60px;
    }


        #tt-premium-journeys .section_title_1 {
            font-size: 30px;
        }


        #tt-premium-journeys .top_part_right {
            gap: 8px;
        }


            #tt-premium-journeys
            .top_part_right > .btn {
                padding: 0 12px;
                font-size: 8px;
            }


        #tt-premium-journeys
        #popular_destination__arrows
        .arrow {
            width: 33px;
            height: 33px;
        }
}


/* =========================================================
   TRIP TASTIC TOURS
   PREMIUM TRAVEL STORIES
   STANDALONE SECTION
========================================================= */

#tt-travel-stories {
    --tt-navy: #101a33;
    --tt-navy-light: #182541;
    --tt-gold: #c49a52;
    --tt-gold-light: #d7b878;
    --tt-text: #182033;
    --tt-muted: #7b8190;
    --tt-border: #e8e4dc;
    --tt-bg: #faf9f6;
    position: relative;
    width: 100%;
    padding: 50px 0 50px;
    background: /* #ffffff*/ #111b38;
    overflow: hidden;
    box-sizing: border-box;
}


    /* =========================================================
   CONTAINER
========================================================= */

    #tt-travel-stories .tt-ts-container {
        width: calc(100% - 50px);
        max-width: 1180px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        box-sizing: border-box;
    }


    /* =========================================================
   HEADER
========================================================= */

    #tt-travel-stories .tt-ts-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 60px;
        margin-bottom: 25px;
    }


    /* =========================================================
   EYEBROW
========================================================= */

    #tt-travel-stories .tt-ts-eyebrow {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: var(--tt-gold);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
        line-height: 1;
    }


    #tt-travel-stories .tt-ts-line {
        display: block;
        width: 35px;
        height: 1px;
        background: var(--tt-gold);
    }


    /* =========================================================
   MAIN TITLE
========================================================= */

    #tt-travel-stories .tt-ts-title {
        margin: 0;
        color: /*var(--tt-navy)*/ #ffffff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 40px;
        font-weight: 400;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }


        #tt-travel-stories .tt-ts-title em {
            /*            display: block;
*/ color: var(--tt-gold);
            font-weight: 400;
            font-style: italic;
        }


    /* =========================================================
   INTRO
========================================================= */

    #tt-travel-stories .tt-ts-intro-area {
        width: 360px;
        padding-bottom: 4px;
    }


        #tt-travel-stories .tt-ts-intro-area p {
            margin: 0 0 23px;
            color: /*var(--tt-muted)*/ rgba(255,255,255,.62);
            font-size: 13px;
            line-height: 1.85;
        }


    /* =========================================================
   VIEW ALL
========================================================= */

    #tt-travel-stories .tt-ts-all-link {
        display: inline-flex;
        align-items: center;
        gap: 13px;
        color: /* var(--tt-navy)*/ #ffffff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-decoration: none;
    }


        #tt-travel-stories .tt-ts-all-link i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 31px;
            height: 31px;
            color: #111b38;
            background: /*var(--tt-navy)*/ #c7a154;
            border-radius: 50%;
            font-size: 14px;
            font-style: normal;
            transition: transform .3s ease, background .3s ease;
        }


        #tt-travel-stories .tt-ts-all-link:hover i {
            transform: rotate(45deg);
            background: var(--tt-gold);
        }


    /* =========================================================
   MAIN GRID
========================================================= */

    #tt-travel-stories .tt-ts-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
        gap: 30px;
        align-items: stretch;
    }


    /* =========================================================
   FEATURE CARD
========================================================= */

    #tt-travel-stories .tt-ts-feature-card {
        position: relative;
        min-width: 0;
        background: var(--tt-navy);
        overflow: hidden;
    }


    /* =========================================================
   FEATURE IMAGE
========================================================= */

    #tt-travel-stories .tt-ts-image-wrap {
        position: relative;
        display: block;
        width: 100%;
        height: 390px;
        overflow: hidden;
        text-decoration: none;
    }


        #tt-travel-stories .tt-ts-image-wrap img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform .8s cubic-bezier(.2,.7,.2,1);
        }


    #tt-travel-stories .tt-ts-feature-card:hover
    .tt-ts-image-wrap img {
        transform: scale(1.07);
    }


    /* =========================================================
   IMAGE SHADE
========================================================= */

    #tt-travel-stories .tt-ts-image-shade {
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0,0,0,.05) 25%, rgba(0,0,0,.58) 100% );
        border-top: 1px solid #faf9f6;
        border-left: 1px solid #faf9f6;
        border-right: 1px solid #faf9f6;
    }


    /* =========================================================
   CATEGORY
========================================================= */

    #tt-travel-stories .tt-ts-category {
        position: absolute;
        top: 20px;
        /*left: 20px;*/
        padding: 8px 12px;
        color: #ffffff;
        background: rgba(12,24,46,.82);
        border: 1px solid rgba(255,255,255,.25);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        backdrop-filter: blur(5px);
    }


    /* =========================================================
   IMAGE ARROW
========================================================= */

    #tt-travel-stories .tt-ts-image-arrow {
        position: absolute;
        right: 20px;
        bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 43px;
        height: 43px;
        color: var(--tt-navy);
        background: var(--tt-gold);
        border-radius: 50%;
        font-size: 20px;
        transition: transform .35s ease;
    }


    #tt-travel-stories .tt-ts-feature-card:hover
    .tt-ts-image-arrow {
        transform: rotate(45deg);
    }


    /* =========================================================
   FEATURE CONTENT
========================================================= */

    #tt-travel-stories .tt-ts-feature-content {
        padding: 28px 30px 32px;
        background: var(--tt-navy);
        border-bottom: 1px solid #faf9f6;
        border-left: 1px solid #faf9f6;
        border-right: 1px solid #faf9f6;
    }


    /* =========================================================
   META
========================================================= */

    #tt-travel-stories .tt-ts-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
        color: var(--tt-gold-light);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.4px;
    }


        #tt-travel-stories .tt-ts-meta b {
            width: 22px;
            height: 1px;
            background: var(--tt-gold);
            display: block;
        }


    /* =========================================================
   FEATURE TITLE
========================================================= */

    #tt-travel-stories .tt-ts-feature-content h3 {
        margin: 0;
        max-width: 550px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 31px;
        font-weight: 400;
        line-height: 1.15;
    }


        #tt-travel-stories .tt-ts-feature-content h3 a {
            color: #ffffff;
            text-decoration: none;
            transition: color .3s ease;
        }


            #tt-travel-stories .tt-ts-feature-content h3 a:hover {
                color: var(--tt-gold-light);
            }


    /* =========================================================
   FEATURE DESCRIPTION
========================================================= */

    #tt-travel-stories .tt-ts-feature-content p {
        max-width: 550px;
        margin: 14px 0 22px;
        color: rgba(255,255,255,.62);
        font-size: 13px;
        line-height: 1.8;
    }


    /* =========================================================
   READ ARTICLE
========================================================= */

    #tt-travel-stories .tt-ts-read {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-decoration: none;
    }


        #tt-travel-stories .tt-ts-read span {
            color: var(--tt-gold);
            font-size: 17px;
            transition: transform .3s ease;
        }


        #tt-travel-stories .tt-ts-read:hover span {
            transform: translateX(5px);
        }


    /* =========================================================
   RIGHT SIDE
========================================================= */

    #tt-travel-stories .tt-ts-side {
        display: grid;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 30px;
        min-width: 0;
    }


    /* =========================================================
   SMALL CARD
========================================================= */

    #tt-travel-stories .tt-ts-small-card {
        display: grid;
        grid-template-columns: 42% 58%;
        min-width: 0;
        background: var(--tt-bg);
        border: 1px solid var(--tt-border);
        overflow: hidden;
        transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    }


        #tt-travel-stories .tt-ts-small-card:hover {
            transform: translateY(-5px);
            border-color: #d6c29e;
            box-shadow: 0 15px 35px rgba(16,26,51,.10);
        }


    /* =========================================================
   SMALL IMAGE
========================================================= */

    #tt-travel-stories .tt-ts-small-image {
        position: relative;
        display: block;
        min-height: 250px;
        overflow: hidden;
    }


        #tt-travel-stories .tt-ts-small-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform .7s ease;
        }


    #tt-travel-stories .tt-ts-small-card:hover
    .tt-ts-small-image img {
        transform: scale(1.08);
    }


    #tt-travel-stories .tt-ts-small-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, rgba(0,0,0,.05), rgba(0,0,0,.25) );
    }


    /* =========================================================
   STORY NUMBER
========================================================= */

    #tt-travel-stories .tt-ts-small-number {
        position: absolute;
        top: 15px;
        left: 15px;
        color: #ffffff;
        font-family: Georgia, serif;
        font-size: 18px;
        font-style: italic;
    }


    /* =========================================================
   SMALL CONTENT
========================================================= */

    #tt-travel-stories .tt-ts-small-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 14px 20px;
    }


        /* =========================================================
   SMALL TITLE
========================================================= */

        #tt-travel-stories .tt-ts-small-content h3 {
            margin: 0;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 22px;
            font-weight: 400;
            line-height: 1.2;
        }


            #tt-travel-stories .tt-ts-small-content h3 a {
                color: var(--tt-navy);
                text-decoration: none;
                transition: color .3s ease;
            }


                #tt-travel-stories .tt-ts-small-content h3 a:hover {
                    color: var(--tt-gold);
                }


        /* =========================================================
   SMALL DESCRIPTION
========================================================= */

        #tt-travel-stories .tt-ts-small-content p {
            margin: 12px 0 17px;
            color: var(--tt-muted);
            font-size: 13px;
            line-height: 1.75;
        }


    /* =========================================================
   SMALL READ LINK
========================================================= */

    #tt-travel-stories .tt-ts-small-read {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--tt-navy);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-decoration: none;
    }


        #tt-travel-stories .tt-ts-small-read span {
            color: var(--tt-gold);
            font-size: 15px;
            transition: transform .3s ease;
        }


        #tt-travel-stories .tt-ts-small-read:hover span {
            transform: translate(3px,-3px);
        }


    /* =========================================================
   BOTTOM STATEMENT
========================================================= */

    #tt-travel-stories .tt-ts-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        margin-top: 55px;
    }


    #tt-travel-stories .tt-ts-bottom-line {
        width: 55px;
        height: 1px;
        background: var(--tt-border);
    }


    #tt-travel-stories .tt-ts-bottom p {
        margin: 0;
        color: #a6a7aa;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2.5px;
    }


    /* =========================================================
   REVEAL ANIMATION
========================================================= */

    #tt-travel-stories .tt-ts-reveal {
        opacity: 0;
        transform: translateY(25px);
        transition: opacity .7s ease, transform .7s ease;
    }


        #tt-travel-stories .tt-ts-reveal.tt-ts-visible {
            opacity: 1;
            transform: translateY(0);
        }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    #tt-travel-stories {
        padding: 85px 0;
    }


        #tt-travel-stories .tt-ts-header {
            gap: 35px;
        }


        #tt-travel-stories .tt-ts-title {
            font-size: 43px;
        }


        #tt-travel-stories .tt-ts-intro-area {
            width: 310px;
        }


        #tt-travel-stories .tt-ts-grid {
            grid-template-columns: 1fr;
        }


        #tt-travel-stories .tt-ts-feature-card {
            max-width: none;
        }


        #tt-travel-stories .tt-ts-image-wrap {
            height: 360px;
        }


        #tt-travel-stories .tt-ts-side {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-template-rows: none;
        }


        #tt-travel-stories .tt-ts-small-card {
            grid-template-columns: 1fr;
        }


        #tt-travel-stories .tt-ts-small-image {
            height: 220px;
            min-height: 0;
        }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    #tt-travel-stories {
        padding: 65px 0 60px;
    }


        #tt-travel-stories .tt-ts-container {
            width: calc(100% - 30px);
        }


        #tt-travel-stories .tt-ts-header {
            display: block;
            margin-bottom: 38px;
        }


        #tt-travel-stories .tt-ts-title {
            font-size: 38px;
            letter-spacing: -1px;
        }


        #tt-travel-stories .tt-ts-intro-area {
            width: 100%;
            margin-top: 22px;
        }


            #tt-travel-stories .tt-ts-intro-area p {
                max-width: 500px;
            }


        #tt-travel-stories .tt-ts-grid {
            display: block;
        }


        #tt-travel-stories .tt-ts-feature-card {
            margin-bottom: 20px;
        }


        #tt-travel-stories .tt-ts-image-wrap {
            height: 270px;
        }


        #tt-travel-stories .tt-ts-feature-content {
            padding: 24px 20px 27px;
        }


            #tt-travel-stories .tt-ts-feature-content h3 {
                font-size: 27px;
            }


        #tt-travel-stories .tt-ts-side {
            display: block;
        }


        #tt-travel-stories .tt-ts-small-card {
            display: grid;
            grid-template-columns: 42% 58%;
            margin-bottom: 20px;
        }


        #tt-travel-stories .tt-ts-small-image {
            height: 230px;
            min-height: 0;
        }


        #tt-travel-stories .tt-ts-small-content {
            padding: 20px 18px;
        }


            #tt-travel-stories .tt-ts-small-content h3 {
                font-size: 19px;
            }


            #tt-travel-stories .tt-ts-small-content p {
                font-size: 9px;
                line-height: 1.65;
            }


        #tt-travel-stories .tt-ts-bottom {
            margin-top: 38px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #tt-travel-stories .tt-ts-title {
        font-size: 33px;
    }


    #tt-travel-stories .tt-ts-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }


    #tt-travel-stories .tt-ts-line {
        width: 25px;
    }


    #tt-travel-stories .tt-ts-image-wrap {
        height: 230px;
    }


    #tt-travel-stories .tt-ts-feature-content h3 {
        font-size: 24px;
    }


    #tt-travel-stories .tt-ts-small-card {
        display: block;
    }


    #tt-travel-stories .tt-ts-small-image {
        height: 220px;
    }


    #tt-travel-stories .tt-ts-small-content {
        padding: 22px 20px 25px;
    }


        #tt-travel-stories .tt-ts-small-content h3 {
            font-size: 21px;
        }


    #tt-travel-stories .tt-ts-bottom-line {
        width: 30px;
    }


    #tt-travel-stories .tt-ts-bottom p {
        font-size: 10px;
        letter-spacing: 1.7px;
        text-align: center;
    }
}

/* =========================================================
   TRIP TASTIC TOURS
   PREMIUM FOOTER
   STANDALONE / NO TEMPLATE CLASS DEPENDENCY
========================================================= */

#tt-premium-footer {
    --ttf-navy: #0c162c;
    --ttf-navy-2: #111d36;
    --ttf-gold: #c49a52;
    --ttf-gold-light: #d9bd83;
    --ttf-white: #ffffff;
    --ttf-muted: rgba(255,255,255,.58);
    --ttf-border: rgba(255,255,255,.12);
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--ttf-navy);
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}


    /* =========================================================
   CONTAINER
========================================================= */

    #tt-premium-footer .tt-footer-container {
        width: calc(100% - 50px);
        max-width: 1340px;
        margin: 0 auto;
        box-sizing: border-box;
    }


    /* =========================================================
   CTA AREA
========================================================= */

    #tt-premium-footer .tt-footer-cta {
        position: relative;
        padding: 15px 62px;
        background: linear-gradient( 135deg, #111e39 0%, #0d172d 100% );
        border-bottom: 1px solid var(--ttf-border);
    }


        #tt-premium-footer .tt-footer-cta::after {
            content: "";
            position: absolute;
            right: -120px;
            top: -180px;
            width: 420px;
            height: 420px;
            border: 1px solid rgba(196,154,82,.12);
            border-radius: 50%;
            pointer-events: none;
        }


        /* =========================================================
   CTA FLEX
========================================================= */

        #tt-premium-footer .tt-footer-cta
        .tt-footer-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 70px;
        }


    /* =========================================================
   EYEBROW
========================================================= */

    #tt-premium-footer .tt-footer-eyebrow {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        color: var(--ttf-gold);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
    }


        #tt-premium-footer .tt-footer-eyebrow::before {
            content: "";
            width: 32px;
            height: 1px;
            background: var(--ttf-gold);
        }


    /* =========================================================
   CTA TITLE
========================================================= */

    #tt-premium-footer .tt-footer-cta h2 {
        margin: 0;
        color: #ffffff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 43px;
        font-weight: 400;
        line-height: 1.08;
        letter-spacing: -1px;
    }


        #tt-premium-footer .tt-footer-cta h2 em {
            color: var(--ttf-gold-light);
            font-style: italic;
        }


    /* =========================================================
   CTA RIGHT
========================================================= */

    #tt-premium-footer .tt-footer-cta-right {
        width: 350px;
    }


        #tt-premium-footer .tt-footer-cta-right p {
            margin: 0 0 15px;
            color: var(--ttf-muted);
            font-size: 13px;
            line-height: 1.8;
        }


    /* =========================================================
   CTA BUTTON
========================================================= */

    #tt-premium-footer .tt-footer-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 0;
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-decoration: none;
    }


        #tt-premium-footer .tt-footer-cta-btn b {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            color: var(--ttf-navy);
            background: var(--ttf-gold);
            border-radius: 50%;
            font-size: 16px;
            font-weight: 400;
            transition: transform .35s ease, background .35s ease;
        }


        #tt-premium-footer .tt-footer-cta-btn:hover b {
            transform: rotate(45deg);
            background: #ffffff;
        }


    /* =========================================================
   MAIN FOOTER
========================================================= */

    #tt-premium-footer .tt-footer-main {
        padding: 20px 62px 20px;
        background: var(--ttf-navy);
    }


    /* =========================================================
   FOOTER GRID
========================================================= */

    #tt-premium-footer .tt-footer-grid {
        display: grid;
        grid-template-columns: 1.35fr .75fr 1fr 1.25fr;
        gap: 35px;
        align-items: start;
    }


    /* =========================================================
   LOGO
========================================================= */

    #tt-premium-footer .tt-footer-logo {
        display: inline-block;
        margin-bottom: 22px;
    }


        #tt-premium-footer .tt-footer-logo img {
            display: block;
            width: auto;
            max-width: 175px;
            max-height: 65px;
            object-fit: contain;
            filter: brightness(1.12) contrast(1.08) saturate(1.08) drop-shadow(0 5px 14px rgba(0, 0, 0, 0.45));
        }


    /* =========================================================
   BRAND DESCRIPTION
========================================================= */

    #tt-premium-footer .tt-footer-description {
        max-width: 366px;
        margin: 0;
        color: var(--ttf-muted);
        font-size: 13px;
        line-height: 1.9;
    }


    /* =========================================================
   SOCIAL
========================================================= */

    #tt-premium-footer .tt-footer-socials {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-top: 27px;
    }


        #tt-premium-footer .tt-footer-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 33px;
            height: 33px;
            color: rgba(255,255,255,.72);
            border: 1px solid rgba(255,255,255,.18);
            border-radius: 25%;
            font-size: 20px;
            text-decoration: none;
            transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
        }


            #tt-premium-footer .tt-footer-socials a:hover {
                color: var(--ttf-navy);
                background: var(--ttf-gold);
                border-color: var(--ttf-gold);
                transform: translateY(-3px);
            }


    /* =========================================================
   COLUMN TITLE
========================================================= */

    #tt-premium-footer .tt-footer-column-title {
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
    }


    #tt-premium-footer .tt-footer-column-line {
        display: block;
        width: 70px;
        height: 1px;
        margin: 24px 0 21px;
        background: var(--ttf-gold);
    }


    /* =========================================================
   LINKS
========================================================= */

    #tt-premium-footer .tt-footer-column ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }


    #tt-premium-footer .tt-footer-column li {
        margin: 0 0 13px;
        padding: 0;
    }


        #tt-premium-footer .tt-footer-column li a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            color: rgba(255,255,255,.58);
            font-size: 14px;
            line-height: 1.5;
            text-decoration: none;
            transition: color .3s ease, padding-left .3s ease;
        }


            #tt-premium-footer .tt-footer-column li a span {
                color: var(--ttf-gold);
                opacity: 0;
                transform: translateX(-5px);
                transition: opacity .3s ease, transform .3s ease;
            }


            #tt-premium-footer .tt-footer-column li a:hover {
                color: #ffffff;
                padding-left: 4px;
            }


                #tt-premium-footer .tt-footer-column li a:hover span {
                    opacity: 1;
                    transform: translateX(0);
                }


    /* =========================================================
   CONTACT
========================================================= */

    #tt-premium-footer .tt-footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }


    #tt-premium-footer .tt-footer-contact-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        color: var(--ttf-gold);
        border: 1px solid rgba(196,154,82,.35);
        border-radius: 50%;
        font-size: 11px;
    }


    #tt-premium-footer .tt-footer-contact-item small {
        display: block;
        margin-bottom: 5px;
        color: var(--ttf-gold);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }


    #tt-premium-footer .tt-footer-contact-item p {
        /*max-width: 230px;*/
        margin: 0;
        color: var(--ttf-muted);
        font-size: 13px;
        font-weight: 400;
        line-height: 1.65;
    }


    /* =========================================================
   EMAIL
========================================================= */

    #tt-premium-footer .tt-footer-email {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-top: 2px;
        color: #ffffff;
        font-size: 13px;
        text-decoration: none;
        transition: color .3s ease;
    }


        #tt-premium-footer .tt-footer-email i {
            color: var(--ttf-gold);
            font-size: 11px;
        }


        #tt-premium-footer .tt-footer-email:hover {
            color: var(--ttf-gold-light);
        }


    /* =========================================================
   BOTTOM
========================================================= */

    #tt-premium-footer .tt-footer-bottom {
        background: #080f20;
        border-top: 1px solid rgba(255,255,255,.07);
        padding: 15px 62px;
    }


    #tt-premium-footer .tt-footer-bottom-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20%;
    }


    #tt-premium-footer .tt-footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.42);
        font-size: 12px;
        line-height: 1.5;
    }


    #tt-premium-footer .tt-footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 10px;
    }


        #tt-premium-footer .tt-footer-bottom-links a {
            color: rgba(255,255,255,.42);
            font-size: 12px;
            text-decoration: none;
            transition: color .3s ease;
        }


            #tt-premium-footer .tt-footer-bottom-links a:hover {
                color: var(--ttf-gold);
            }


        #tt-premium-footer .tt-footer-bottom-links span {
            width: 3px;
            height: 3px;
            background: var(--ttf-gold);
            border-radius: 50%;
        }


    #tt-premium-footer .tt-footer-made {
        color: rgba(255,255,255,.35);
        font-size: 12px;
        letter-spacing: 1.5px;
    }


        #tt-premium-footer .tt-footer-made strong {
            color: var(--ttf-gold);
            font-weight: 700;
        }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    #tt-premium-footer .tt-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 45px;
    }


    #tt-premium-footer .tt-footer-brand {
        grid-column: span 3;
        padding-bottom: 15px;
    }


    #tt-premium-footer .tt-footer-description {
        max-width: 500px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    #tt-premium-footer .tt-footer-container {
        width: calc(100% - 30px);
    }


    /* CTA */

    #tt-premium-footer .tt-footer-cta {
        padding: 50px 15px;
    }


        #tt-premium-footer .tt-footer-cta
        .tt-footer-container {
            display: block;
        }


        #tt-premium-footer .tt-footer-cta h2 {
            font-size: 36px;
        }


    #tt-premium-footer .tt-footer-cta-right {
        width: 100%;
        max-width: 500px;
        margin-top: 25px;
    }


    /* MAIN */

    #tt-premium-footer .tt-footer-main {
        padding: 55px 15px 45px;
    }


    #tt-premium-footer .tt-footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 42px 25px;
    }


    #tt-premium-footer .tt-footer-brand {
        grid-column: span 2;
        padding-bottom: 10px;
    }


    #tt-premium-footer .tt-footer-logo img {
        max-width: 160px;
    }


    #tt-premium-footer .tt-footer-description {
        max-width: 450px;
    }


    /* CONTACT */

    #tt-premium-footer .tt-footer-contact {
        grid-column: span 2;
    }


    /* BOTTOM */

    #tt-premium-footer .tt-footer-bottom-inner {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    #tt-premium-footer .tt-footer-cta h2 {
        font-size: 31px;
    }


    #tt-premium-footer .tt-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    #tt-premium-footer .tt-footer-brand,
    #tt-premium-footer .tt-footer-contact {
        grid-column: span 1;
    }


    #tt-premium-footer .tt-footer-column {
        width: 100%;
    }


    #tt-premium-footer .tt-footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =========================================
   HEADER SEARCH
========================================= */

.header-search {
    margin-left: 15px;
    margin-top: 15px !important;
}

    .header-search form {
        margin: 0;
    }

.search-box {
    width: 180px;
    height: 38px;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .search-box:focus-within {
        width: 210px;
        border-color: #c9a227;
        box-shadow: 0 4px 15px rgba(201, 162, 39, 0.15);
    }

    .search-box input {
        width: 100%;
        height: 100%;
        border: 0;
        outline: none;
        background: transparent;
        padding: 0 8px 0 16px;
        font-size: 13px;
        color: #333;
    }

        .search-box input::placeholder {
            color: #999;
        }

    .search-box button {
        width: 42px;
        height: 38px;
        min-width: 42px;
        border: 0;
        outline: none;
        background: transparent;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .search-box button:hover {
            color: #c9a227;
        }

        .search-box button i {
            font-size: 14px;
        }


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .header-search {
        margin-left: 8px;
    }

    .search-box {
        width: 150px;
    }

        .search-box:focus-within {
            width: 170px;
        }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .header-search {
        width: 100%;
        margin: 20px 0 10px;
        padding: 0 15px;
    }

        .header-search form {
            width: 100%;
        }

    .search-box {
        width: 100%;
        height: 44px;
        border-radius: 24px;
    }

        .search-box:focus-within {
            width: 100%;
        }

        .search-box input {
            font-size: 14px;
        }

        .search-box button {
            width: 48px;
            min-width: 48px;
            height: 44px;
        }
}


/* =========================================================
   TRIP TASTIC TOURS
   PREMIUM HERO
========================================================= */

#tt-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 674px;
    max-height: 900px;
    overflow: hidden;
    background: #0b152a;
    color: #ffffff;
    box-sizing: border-box;
}


    /* =========================================================
   SLIDE
========================================================= */

    #tt-hero .tt-hero-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
        transition: opacity 1s ease, visibility 1s ease;
    }


        #tt-hero .tt-hero-slide.tt-hero-active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }


    /* =========================================================
   BACKGROUND IMAGE
========================================================= */

    #tt-hero .tt-hero-bg {
        position: absolute;
        inset: -15px;
        width: calc(100% + 30px);
        height: calc(100% + 30px);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        transform: scale(1.04);
        transition: transform 7s ease;
    }


    #tt-hero .tt-hero-slide.tt-hero-active
    .tt-hero-bg {
        transform: scale(1.10);
    }


    /* =========================================================
   OVERLAY
========================================================= */

    #tt-hero .tt-hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 90deg, rgba(5,14,31,.88) 0%, rgba(5,14,31,.64) 38%, rgba(5,14,31,.22) 72%, rgba(5,14,31,.15) 100% ), linear-gradient( 0deg, rgba(5,14,31,.72) 0%, transparent 38% );
    }


    /* =========================================================
   CONTENT
========================================================= */

    #tt-hero .tt-hero-content {
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
    }


    #tt-hero .tt-hero-inner {
        width: calc(100% - 50px);
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 20px;
        box-sizing: border-box;
    }


    /* =========================================================
   LABEL
========================================================= */

    #tt-hero .tt-hero-label {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        color: #d8b875;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
        line-height: 1;
    }


        #tt-hero .tt-hero-label span {
            display: block;
            width: 35px;
            height: 1px;
            background: #d8b875;
        }


    /* =========================================================
   NUMBER
========================================================= */

    /* =========================================================
   HERO SLIDE NUMBER
========================================================= */

    #tt-hero .tt-hero-number {
        position: absolute;
        /* left: -14px; */
        top: 50%;
        transform: translateY(-50%);
        color: rgb(255 255 255 / 68% 68% );
        font-family: Georgia, "Times New Roman", serif;
        font-size: 79px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: -3px;
        pointer-events: none;
        text-align: right;
        right: 9%;
    }

        #tt-hero .tt-hero-number small {
            display: inline-block;
            margin-left: 8px;
            color: rgba(255, 255, 255, 0.45);
            font-family: Arial, sans-serif;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 2px;
            vertical-align: middle;
        }


    /* =========================================================
   HERO TITLE
========================================================= */

    #tt-hero .tt-hero-inner h1 {
        width: 700px;
        max-width: 65vw;
        margin: 0;
        padding: 0;
        color: #ffffff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(50px, 6vw, 50px);
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: 3px;
    }


        #tt-hero .tt-hero-inner h1 em {
            display: block;
            color: #d8b875;
            font-style: normal;
            font-weight: 400;
        }


    /* =========================================================
   LOCATION
========================================================= */

    #tt-hero .tt-hero-location {
        margin: 35px 0 0;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 4px;
    }


    /* =========================================================
   DESCRIPTION
========================================================= */

    #tt-hero .tt-hero-description {
        width: 470px;
        max-width: 90%;
        margin: 15px 0 0;
        color: rgba(255,255,255,.70);
        font-size: 14px;
        line-height: 1.8;
    }


    /* =========================================================
   ACTIONS
========================================================= */

    #tt-hero .tt-hero-actions {
        display: flex;
        align-items: center;
        gap: 25px;
        margin-top: 29px;
    }


    /* PRIMARY */

    #tt-hero .tt-hero-primary {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        min-height: 48px;
        padding-left: 20px;
        color: #101a31;
        background: #d0aa62;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-decoration: none;
        transition: background .3s ease;
    }


        #tt-hero .tt-hero-primary b {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            margin-right: 5px;
            color: #ffffff;
            background: #101a31;
            border-radius: 50%;
            font-size: 15px;
            font-weight: 400;
            transition: transform .3s ease;
        }


        #tt-hero .tt-hero-primary:hover {
            background: #ffffff;
        }


            #tt-hero .tt-hero-primary:hover b {
                transform: rotate(45deg);
            }


    /* SECONDARY */

    #tt-hero .tt-hero-secondary {
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,.45);
        padding-bottom: 6px;
        transition: color .3s ease, border-color .3s ease;
    }


        #tt-hero .tt-hero-secondary:hover {
            color: #d8b875;
            border-color: #d8b875;
        }


    /* =========================================================
   HERO BOTTOM NAVIGATION
========================================================= */

    #tt-hero .tt-hero-bottom {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0 0 22px;
        z-index:10;
    }


    #tt-hero .tt-hero-bottom-inner {
        width: calc(100% - 100px);
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }


    /* =========================================================
   DESTINATION TABS
========================================================= */

    #tt-hero .tt-hero-destinations {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
    }


    #tt-hero .tt-hero-destination {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        min-height: 36px;
        padding: 0 13px;
        color: rgba(255,255,255,.55);
        background: rgba(8,20,40,.45);
        border: 1px solid rgba(255,255,255,.20);
        outline: none;
        cursor: pointer;
        font-family: inherit;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        white-space: nowrap;
        transition: all .3s ease;
    }


        #tt-hero .tt-hero-destination span {
            color: #d8b875;
            /* font-family: Georgia, serif;*/
            font-size: 13px;
            font-style: normal;
        }


        #tt-hero .tt-hero-destination:hover {
            color: #fff;
            border-color: rgba(216,184,117,.65);
            background: rgba(8,20,40,.75);
        }


    #tt-hero .tt-hero-destination-active {
        color: #fff;
        background: rgba(8,20,40,.82);
        border-color: #d8b875;
    }


    /* =========================================================
   ARROW CONTROLS
========================================================= */

    #tt-hero .tt-hero-controls {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }


    #tt-hero .tt-hero-arrow {
        width: 39px;
        height: 39px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        color: #fff;
        background: rgba(8,20,40,.70);
        border: 1px solid rgba(255,255,255,.30);
        border-radius: 50%;
        outline: none;
        cursor: pointer;
        font-size: 14px;
        line-height: 1;
        transition: all .3s ease;
    }


        #tt-hero .tt-hero-arrow:hover {
            color: #101a31;
            background: #d0aa62;
            border-color: #d0aa62;
            transform: translateY(-2px);
        }


    /* =========================================================
   SCROLL INDICATOR
========================================================= */

    #tt-hero .tt-hero-scroll {
        position: absolute;
        right: 30px;
        top: 50%;
        z-index: 10;
        display: flex;
        align-items: center;
        gap: 10px;
        transform: translateY(-50%) rotate(90deg);
        color: rgba(255,255,255,.55);
        font-size: 7px;
        font-weight: 700;
        letter-spacing: 2px;
    }


        #tt-hero .tt-hero-scroll span {
            display: block;
            width: 30px;
            height: 1px;
            background: #d8b875;
        }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    #tt-hero {
        height: 750px;
        min-height: 650px;
    }


        #tt-hero .tt-hero-number {
            right: 35px;
            font-size: 100px;
        }


        #tt-hero .tt-hero-inner h1 {
            max-width: 70vw;
            font-size: 62px;
        }


        #tt-hero .tt-hero-description {
            width: 430px;
        }


        #tt-hero .tt-hero-scroll {
            display: none;
        }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    #tt-hero {
        height: 720px;
        min-height: 620px;
        max-height: none;
    }


        #tt-hero .tt-hero-bg {
            background-position: 60% center;
        }


        #tt-hero .tt-hero-overlay {
            background: linear-gradient( 90deg, rgba(5,14,31,.90) 0%, rgba(5,14,31,.58) 100% ), linear-gradient( 0deg, rgba(5,14,31,.82) 0%, transparent 55% );
        }


        #tt-hero .tt-hero-inner {
            width: calc(100% - 30px);
            padding-top: 20px;
        }


        #tt-hero .tt-hero-label {
            margin-bottom: 17px;
            font-size: 11px;
            letter-spacing: 2px;
        }


            #tt-hero .tt-hero-label span {
                width: 25px;
            }


        #tt-hero .tt-hero-number {
            right: 20px;
            top: 26%;
            font-size: 72px;
        }


            #tt-hero .tt-hero-number small {
                font-size: 7px;
            }


        #tt-hero .tt-hero-inner h1 {
            width: 100%;
            max-width: 90%;
            font-size: 46px;
            line-height: 1;
            letter-spacing: 1px;
        }


        #tt-hero .tt-hero-location {
            margin-top: 20px;
            font-size: 13px;
            letter-spacing: 4px;
        }


        #tt-hero .tt-hero-description {
            width: 100%;
            max-width: 420px;
            margin-top: 12px;
            font-size: 10px;
            line-height: 1.75;
        }


        #tt-hero .tt-hero-actions {
            margin-top: 24px;
            gap: 18px;
        }


        #tt-hero .tt-hero-primary {
            min-height: 44px;
            padding-left: 15px;
            font-size: 11px;
        }


            #tt-hero .tt-hero-primary b {
                width: 34px;
                height: 34px;
                font-size: 13px;
            }


        #tt-hero .tt-hero-secondary {
            font-size: 12px;
        }


        /* BOTTOM */

        /*  #tt-hero .tt-hero-bottom {
            padding-bottom: 18px;
        }


        #tt-hero .tt-hero-bottom-inner {
            width: calc(100% - 30px);
            display: block;
        }


        #tt-hero .tt-hero-destinations {
            width: 100%;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding-bottom: 10px;
        }


            #tt-hero .tt-hero-destinations::-webkit-scrollbar {
                display: none;
            }


        #tt-hero .tt-hero-destination {
            flex: 0 0 auto;
            padding: 10px 11px;
            font-size: 6.5px;
        }


        #tt-hero .tt-hero-controls {
            position: absolute;
            right: 0;
            bottom: 0;
        }*/
        /* =========================================================
   HERO BOTTOM NAVIGATION
========================================================= */

        #tt-hero .tt-hero-bottom {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            z-index: 4;
            padding: 0 0 22px;
        }


        /* =========================================================
   BOTTOM INNER
========================================================= */

        #tt-hero .tt-hero-bottom-inner {
            position: relative;
            width: calc(100% - 100px);
            max-width: 1200px;
            min-height: 42px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }


        /* =========================================================
   DESTINATION TABS
========================================================= */

        #tt-hero .tt-hero-destinations {
            display: flex;
            align-items: center;
            gap: 8px;
            width: auto;
            flex: 0 0 auto;
        }


        /* =========================================================
   DESTINATION BUTTON
========================================================= */

        #tt-hero .tt-hero-destination {
            position: relative;
            display: flex;
            align-items: center;
            gap: 9px;
            min-width: 118px;
            height: 36px;
            padding: 0 13px;
            color: rgba(255,255,255,.58);
            background: rgba(7,20,40,.55);
            border: 1px solid rgba(255,255,255,.20);
            border-radius: 0;
            outline: none;
            cursor: pointer;
            white-space: nowrap;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 7px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 1px;
            transition: all .3s ease;
        }


            /* Number */

            #tt-hero .tt-hero-destination span {
                color: #d8b875;
                font-family: Georgia, "Times New Roman", serif;
                font-size: 10px;
                font-style: italic;
                font-weight: 400;
            }


            /* Hover */

            #tt-hero .tt-hero-destination:hover {
                color: #fff;
                background: rgba(7,20,40,.85);
                border-color: rgba(216,184,117,.65);
            }


        /* Active */

        #tt-hero .tt-hero-destination-active {
            color: #fff;
            background: rgba(7,20,40,.82);
            border-color: #d8b875;
        }


        /* =========================================================
   HERO ARROWS
========================================================= */

        #tt-hero .tt-hero-controls {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            gap: 8px;
        }


        #tt-hero .tt-hero-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 39px;
            height: 39px;
            margin: 0;
            padding: 0;
            color: #fff;
            background: rgba(7,20,40,.70);
            border: 1px solid rgba(255,255,255,.30);
            border-radius: 50%;
            outline: none;
            cursor: pointer;
            font-size: 14px;
            line-height: 1;
            transition: all .3s ease;
        }


            #tt-hero .tt-hero-arrow:hover {
                color: #101a31;
                background: #d4ad66;
                border-color: #d4ad66;
                transform: translateY(-2px);
            }

        #tt-hero .tt-hero-arrow {
            width: 37px;
            height: 37px;
            font-size: 14px;
        }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    #tt-hero {
        height: 680px;
    }


        #tt-hero .tt-hero-inner h1 {
            font-size: 40px;
        }


        #tt-hero .tt-hero-number {
            top: 24%;
            font-size: 60px;
        }


        #tt-hero .tt-hero-description {
            max-width: 95%;
            font-size: 13px;
        }


        #tt-hero .tt-hero-actions {
            flex-wrap: wrap;
        }


        #tt-hero .tt-hero-primary {
            min-height: 42px;
        }


        #tt-hero .tt-hero-destination {
            padding: 9px 10px;
            font-size: 6px;
        }
}

/* =========================================================
   NORTH EAST — COMPACT DESTINATION BANNER
========================================================= */

.tt-ne-page-banner {
    position: relative;
    width: 100%;
    height: 325px;
    overflow: hidden;
    background: #071326;
}


/* BACKGROUND IMAGE */

.tt-ne-page-banner-image {
    position: absolute;
    inset: 0;
    background-image: url('../myimage/banner-2.png');
    background-size: cover;
    background-position: center 48%;
    transform: scale(1.02);
}


/* DARK PREMIUM OVERLAY */

.tt-ne-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(4,14,29,.88) 0%, rgba(4,14,29,.65) 38%, rgba(4,14,29,.25) 75%, rgba(4,14,29,.35) 100% );
}


/* CONTENT */

.tt-ne-page-banner-content {
    position: relative;
    z-index: 2;
    width: calc(100% - 80px);
    max-width: 1240px;
    height: 130%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* EYEBROW */

.tt-ne-page-banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #d4ad66;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

    .tt-ne-page-banner-eyebrow::before {
        content: "";
        width: 28px;
        height: 1px;
        background: #d4ad66;
    }


/* HEADING */

.tt-ne-page-banner-content h1 {
    margin: 0px 0px 15px 0px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: .95;
    letter-spacing: 0px;
}

    .tt-ne-page-banner-content h1 span {
        color: #d4ad66;
        font-style: italic;
    }


/* DESCRIPTION */

.tt-ne-page-banner-content p {
    max-width: 550px;
    margin: 12px 0 40px;
    color: rgba(255,255,255,.78);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.6;
}


/* BUTTON */

.tt-ne-page-banner-btn {
    width: fit-content;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 14px 0 17px;
    color: #071326 !important;
    background: #d4ad66;
    text-decoration: none !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    transition: all .3s ease;
}

    .tt-ne-page-banner-btn span {
        width: 23px;
        height: 23px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        background: #071326;
        border-radius: 50%;
        font-size: 12px;
        transition: transform .3s ease;
    }

    .tt-ne-page-banner-btn:hover {
        background: #ffffff;
    }

        .tt-ne-page-banner-btn:hover span {
            transform: translateX(3px);
        }


/* =========================================================
   BREADCRUMB
========================================================= */

.tt-ne-breadcrumb {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeae2;
}

.tt-ne-breadcrumb-inner {
    width: calc(100% - 80px);
    max-width: 1240px;
    height: 52px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

    .tt-ne-breadcrumb-inner a {
        color: #7c8490 !important;
        text-decoration: none !important;
        transition: color .2s ease;
    }

        .tt-ne-breadcrumb-inner a:hover {
            color: #b18b4d !important;
        }

    .tt-ne-breadcrumb-inner span {
        color: #c4c1bb;
    }

    .tt-ne-breadcrumb-inner strong {
        color: #071326;
        font-weight: 600;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .tt-ne-page-banner {
        height: 220px;
    }

    .tt-ne-page-banner-content {
        width: calc(100% - 50px);
    }

        .tt-ne-page-banner-content h1 {
            font-size: 43px;
        }

    .tt-ne-breadcrumb-inner {
        width: calc(100% - 50px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tt-ne-page-banner {
        height: 205px;
    }

    .tt-ne-page-banner-image {
        background-position: 58% center;
    }

    .tt-ne-page-banner-overlay {
        background: linear-gradient( 90deg, rgba(4,14,29,.90) 0%, rgba(4,14,29,.62) 70%, rgba(4,14,29,.35) 100% );
    }

    .tt-ne-page-banner-content {
        width: calc(100% - 30px);
    }

    .tt-ne-page-banner-eyebrow {
        font-size: 7px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .tt-ne-page-banner-content h1 {
        font-size: 30px;
        line-height: 1;
    }

    .tt-ne-page-banner-content p {
        max-width: 320px;
        margin: 10px 0 35px;
        font-size: 10px;
        line-height: 1.5;
    }

    .tt-ne-page-banner-btn {
        height: 33px;
        padding-left: 13px;
        font-size: 9px;
    }

    .tt-ne-breadcrumb-inner {
        width: calc(100% - 30px);
        height: 45px;
        font-size: 11px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .tt-ne-page-banner {
        height: 195px;
    }

    .tt-ne-page-banner-content h1 {
        font-size: 23px;
    }

    .tt-ne-page-banner-content p {
        max-width: 290px;
        font-size: 9px;
    }
}
/* =========================================================
   NORTH-EAST TOUR PACKAGES
========================================================= */

.tt-ne-package-section {
    position: relative;
    width: 100%;
    padding: 50px 0 50px;
    background: #f7f4ed;
    overflow: hidden;
}

.tt-ne-package-container {
    width: calc(100% - 80px);
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.tt-ne-package-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 55px;
}

.tt-ne-package-heading-left {
    max-width: 620px;
}

.tt-ne-package-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: #b18b4d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

    .tt-ne-package-eyebrow span {
        width: 32px;
        height: 1px;
        background: #b18b4d;
    }

.tt-ne-package-heading h2 {
    margin: 0;
    color: #071326;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -2px;
}

    .tt-ne-package-heading h2 em {
        display: block;
        color: #bd9859;
        font-style: italic;
    }

.tt-ne-package-heading-right {
    max-width: 370px;
    padding-bottom: 5px;
}

    .tt-ne-package-heading-right p {
        margin: 0;
        color: #667080;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        line-height: 1.8;
    }


/* =========================================================
   DESTINATION TABS
========================================================= */

.tt-ne-package-tabs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

    .tt-ne-package-tabs::-webkit-scrollbar {
        display: none;
    }

.tt-ne-package-tab {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 18px;
    border: 1px solid #d9d4ca;
    background: transparent;
    color: #596273;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;
    cursor: pointer;
    transition: all .3s ease;
}

    .tt-ne-package-tab:hover {
        color: #071326;
        border-color: #b18b4d;
    }

    .tt-ne-package-tab.active {
        color: #ffffff;
        background: #071326;
        border-color: #071326;
    }


/* =========================================================
   FILTER BAR
========================================================= */

.tt-ne-package-filter {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    margin-bottom: 32px;
    background: #ffffff;
    border: 1px solid #e6e1d8;
    box-shadow: 0 8px 30px rgba(7,19,38,.05);
}

.tt-ne-package-filter-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tt-ne-package-filter-item {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 160px;
    height: 44px;
    padding: 0 13px;
    border: 1px solid #e4e0d9;
    background: #fbfaf7;
}

    .tt-ne-package-filter-item span {
        margin-right: 7px;
        color: #9b9a96;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .8px;
    }

    .tt-ne-package-filter-item select {
        flex: 1;
        min-width: 0;
        border: 0;
        outline: none;
        background: transparent;
        color: #071326;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        cursor: pointer;
    }

.tt-ne-package-reset {
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: #b18b4d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
}


/* =========================================================
   PACKAGE GRID
========================================================= */

.tt-ne-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* =========================================================
   CARD
========================================================= */

.tt-ne-package-card {
    position: relative;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e8e3da;
    box-shadow: 0 8px 25px rgba(7,19,38,.055);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

    .tt-ne-package-card:hover {
        transform: translateY(-7px);
        border-color: rgba(177,139,77,.55);
        box-shadow: 0 20px 45px rgba(7,19,38,.12);
    }


/* =========================================================
   IMAGE
========================================================= */

.tt-ne-package-image {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #071326;
}

    .tt-ne-package-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .8s cubic-bezier(.2,.7,.2,1);
    }

.tt-ne-package-card:hover
.tt-ne-package-image img {
    transform: scale(1.07);
}

.tt-ne-package-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(4,14,28,.82) 0%, rgba(4,14,28,.10) 60%, rgba(4,14,28,.05) 100% );
    pointer-events: none;
}


/* =========================================================
   BADGES
========================================================= */

.tt-ne-package-duration {
    position: absolute;
    left: 15px;
    top: 15px;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #ffffff;
    background: rgba(7,19,38,.78);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tt-ne-package-featured {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 11px;
    color: #071326;
    background: #d4ad66;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   CARD BODY
========================================================= */

.tt-ne-package-body {
    padding: 24px 22px 22px;
}

.tt-ne-package-location {
    margin-bottom: 7px;
    color: #b18b4d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tt-ne-package-body h3 {
    margin: 0;
    color: #071326;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.1;
}

.tt-ne-package-route {
    margin: 8px 0 0;
    color: #777d87;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.tt-ne-package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 21px;
    padding-top: 17px;
    border-top: 1px solid #ebe7df;
}

    .tt-ne-package-highlights span {
        color: #5f6670;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 1.4;
    }

        .tt-ne-package-highlights span::first-letter {
            color: #b18b4d;
        }


/* =========================================================
   CARD FOOTER
========================================================= */

.tt-ne-package-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 5px;
}

.tt-ne-package-price {
    display: flex;
    flex-direction: column;
}

    .tt-ne-package-price small {
        color: #999b9e;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .tt-ne-package-price strong {
        margin-top: 4px;
        color: #071326;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 24px;
        line-height: 1;
    }

    .tt-ne-package-price span {
        margin-top: 4px;
        color: #999b9e;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
    }


/* =========================================================
   VIEW DETAILS BUTTON
========================================================= */

.tt-ne-package-btn {
    min-width: 125px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 13px;
    color: #ffffff !important;
    background: #071326;
    text-decoration: none !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all .3s ease;
}

    .tt-ne-package-btn span {
        color: #d4ad66;
        font-size: 14px;
        transition: transform .3s ease;
    }

    .tt-ne-package-btn:hover {
        color: #071326 !important;
        background: #d4ad66;
    }

        .tt-ne-package-btn:hover span {
            color: #071326;
            transform: translateX(4px);
        }


/* =========================================================
   VIEW ALL
========================================================= */

.tt-ne-package-view-all {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

    .tt-ne-package-view-all a {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        padding-bottom: 8px;
        color: #071326 !important;
        border-bottom: 1px solid #b18b4d;
        text-decoration: none !important;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .tt-ne-package-view-all i {
        color: #b18b4d;
        font-size: 16px;
        font-style: normal;
        transition: transform .3s ease;
    }

    .tt-ne-package-view-all a:hover i {
        transform: translateX(5px);
    }


/* =========================================================
   HIDDEN CARD
========================================================= */

.tt-ne-package-card.tt-ne-package-hidden {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .tt-ne-package-container {
        width: calc(100% - 50px);
    }

    .tt-ne-package-heading {
        gap: 35px;
    }

    .tt-ne-package-filter-left {
        flex-wrap: wrap;
    }

    .tt-ne-package-filter-item {
        min-width: 145px;
    }

    .tt-ne-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tt-ne-package-section {
        padding: 35px 0 35px;
    }

    .tt-ne-package-container {
        width: calc(100% - 30px);
    }

    .tt-ne-package-heading {
        display: block;
        margin-bottom: 32px;
    }

        .tt-ne-package-heading h2 {
            font-size: 48px;
            letter-spacing: -1.5px;
        }

    .tt-ne-package-heading-right {
        max-width: 100%;
        margin-top: 20px;
    }

        .tt-ne-package-heading-right p {
            font-size: 12px;
        }


    /* Tabs */

    .tt-ne-package-tabs {
        margin-right: -15px;
        padding-right: 15px;
        margin-bottom: 15px;
    }

    .tt-ne-package-tab {
        height: 38px;
        padding: 0 14px;
        font-size: 9px;
    }


    /* Filter */

    .tt-ne-package-filter {
        display: block;
        padding: 10px;
        margin-bottom: 25px;
    }

    .tt-ne-package-filter-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .tt-ne-package-filter-item {
        min-width: 0;
        width: 100%;
        height: 42px;
        padding: 0 9px;
    }

        .tt-ne-package-filter-item span {
            display: none;
        }

        .tt-ne-package-filter-item select {
            font-size: 11px;
            left: 0px !important;
        }

    .tt-ne-package-reset {
        display: block;
        margin: 12px 0 3px auto;
    }


    /* Mobile package slider */

    .tt-ne-package-grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        padding: 5px 0 20px;
        margin-right: -15px;
        padding-right: 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

        .tt-ne-package-grid::-webkit-scrollbar {
            display: none;
        }

    .tt-ne-package-card {
        flex: 0 0 86%;
        scroll-snap-align: start;
    }

        .tt-ne-package-card:hover {
            transform: none;
        }

    .tt-ne-package-image {
        height: 235px;
    }

    .tt-ne-package-body {
        padding: 21px 18px 19px;
    }

        .tt-ne-package-body h3 {
            font-size: 23px;
        }

    .tt-ne-package-highlights {
        gap: 7px 11px;
    }

    .tt-ne-package-footer {
        margin-top: 20px;
    }

    .tt-ne-package-price strong {
        font-size: 22px;
    }

    .tt-ne-package-btn {
        min-width: 115px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .tt-ne-package-heading h2 {
        font-size: 43px;
    }

    .tt-ne-package-card {
        flex-basis: 90%;
    }

    .tt-ne-package-image {
        height: 220px;
    }

    .tt-ne-package-body h3 {
        font-size: 21px;
    }
}


/* =========================================================
   TRIP TASTIC PACKAGE DETAILS PAGE
========================================================= */

.tt-package-page {
    background: #f7f5f0;
    color: #071326;
}

.tt-package-container {
    width: calc(100% - 60px);
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.tt-package-breadcrumb {
    background: #ffffff;
    border-bottom: 1px solid #e8e4dc;
}

    .tt-package-breadcrumb .tt-package-container {
        min-height: 50px;
        display: flex;
        align-items: center;
        gap: 9px;
        font-family: Arial, sans-serif;
        font-size: 10px;
    }

    .tt-package-breadcrumb a {
        color: #7c8490 !important;
        text-decoration: none !important;
    }

    .tt-package-breadcrumb span {
        color: #c2beb6;
    }

    .tt-package-breadcrumb strong {
        font-weight: 600;
    }


/* =========================================================
   HERO
========================================================= */

.tt-package-hero {
    padding: 35px 0 45px;
    background: #ffffff;
}

.tt-package-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(380px, .9fr);
    gap: 45px;
    align-items: stretch;
}


/* =========================================================
   GALLERY
========================================================= */

.tt-package-gallery {
    min-width: 0;
}

.tt-package-main-image {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #071326;
}

    .tt-package-main-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .7s ease;
    }

    .tt-package-main-image:hover img {
        transform: scale(1.025);
    }

.tt-package-image-counter {
    position: absolute;
    right: 0px;
    bottom: 18px;
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(7,19,38,.75);
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 1px;
}

.tt-package-gallery-arrow {
    position: absolute;
    top: 50%;
    width: 38px;
    height: 38px;
    margin-top: -19px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    background: rgba(7,19,38,.45);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: .3s ease;
}

    .tt-package-gallery-arrow:hover {
        background: #d4ad66;
        color: #071326;
    }

.tt-prev {
    left: 15px;
}

.tt-next {
    right: 15px;
}


/* THUMBNAILS */

.tt-package-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 9px;
}

.tt-package-thumb {
    height: 75px;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
}

    .tt-package-thumb.active {
        border-color: #b18b4d;
    }

    .tt-package-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


/* =========================================================
   PACKAGE SUMMARY
========================================================= */

.tt-package-summary {
    padding: 8px 0;
}

.tt-package-category {
    margin-bottom: 12px;
    color: #b18b4d;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.tt-package-summary h1 {
    margin: 0;
    color: #071326;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 40px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -1.5px;
}

.tt-package-subtitle {
    margin: 12px 0 18px;
    color: #737b86;
    font-family: Arial, sans-serif;
    font-size: 13px;
}


/* RATING */

.tt-package-rating {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e3db;
    font-family: Arial, sans-serif;
}

.tt-stars {
    color: #b18b4d;
    letter-spacing: 2px;
}

.tt-package-rating small {
    color: #92969d;
}


/* =========================================================
   QUICK INFO
========================================================= */

.tt-package-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
    padding: 23px 0;
    border-bottom: 1px solid #e7e3db;
}

.tt-package-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tt-package-info-icon {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #ded9d0;
    color: #b18b4d;
}

.tt-package-info small {
    display: block;
    margin-bottom: 4px;
    color: #9a9da2;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tt-package-info strong {
    display: block;
    color: #071326;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   PRICE
========================================================= */

.tt-package-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

    .tt-package-price-box small {
        color: #999da3;
        font-family: Arial, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
    }

.tt-package-price {
    margin-top: 4px;
    color: #071326;
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.tt-package-price-box span {
    color: #999da3;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.tt-package-price-save {
    padding: 7px 9px;
    color: #35765b;
    background: #e4f2ea;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
}


/* =========================================================
   ACTIONS
========================================================= */

.tt-package-actions {
    display: flex;
    gap: 9px;
}

.tt-package-book-btn,
.tt-package-enquire-btn {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tt-package-book-btn {
    flex: 1;
    gap: 20px;
    color: #ffffff !important;
    background: #071326;
}

    .tt-package-book-btn span {
        color: #d4ad66;
        font-size: 16px;
    }

.tt-package-enquire-btn {
    width: 145px;
    color: #071326 !important;
    border: 1px solid #071326;
}

.tt-package-book-btn:hover {
    background: #b18b4d;
}

.tt-package-enquire-btn:hover {
    color: #ffffff !important;
    background: #071326;
}


/* ASSURANCE */

.tt-package-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
    color: #747b83;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

    .tt-package-assurance span {
        color: #3c8667;
    }


/* =========================================================
   STICKY NAV
========================================================= */

.tt-package-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    border-top: 1px solid #e6e1d8;
    border-bottom: 1px solid #e6e1d8;
    backdrop-filter: blur(12px);
}

.tt-package-nav-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 62px;
    overflow-x: auto;
    scrollbar-width: none;
}

    .tt-package-nav-inner::-webkit-scrollbar {
        display: none;
    }

    .tt-package-nav-inner a {
        position: relative;
        flex: 0 0 auto;
        padding: 22px 0;
        color: #777e88 !important;
        text-decoration: none !important;
        font-family: Arial, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .8px;
        text-transform: uppercase;
    }

        .tt-package-nav-inner a.active,
        .tt-package-nav-inner a:hover {
            color: #071326 !important;
        }

            .tt-package-nav-inner a.active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 2px;
                background: #b18b4d;
            }


/* =========================================================
   MAIN CONTENT
========================================================= */

.tt-package-content {
    padding: 50px 0 50px;
}

.tt-package-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 55px;
    align-items: start;
}

.tt-package-main {
    min-width: 0;
}

.tt-package-section {
    padding: 0 0 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e4dfd7;
}

.tt-package-section-label {
    margin-bottom: 13px;
    color: #b18b4d;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tt-package-section h2 {
    margin: 0 0 20px;
    color: #071326;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
}

.tt-package-section > p {
    max-width: 760px;
    color: #656d77;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.tt-package-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #ddd8cf;
    border: 1px solid #ddd8cf;
}

    .tt-package-highlights > div {
        padding: 20px;
        background: #ffffff;
    }

    .tt-package-highlights span {
        display: block;
        margin-bottom: 8px;
        color: #b18b4d;
        font-family: Georgia, serif;
        font-size: 13px;
    }

    .tt-package-highlights strong {
        display: block;
        color: #071326;
        font-family: Georgia, serif;
        font-size: 15px;
        font-weight: 400;
    }

    .tt-package-highlights p {
        margin: 8px 0 0;
        color: #7a818a;
        font-family: Arial, sans-serif;
        font-size: 13px;
        line-height: 1.6;
    }


/* =========================================================
   ITINERARY
========================================================= */

.tt-package-day {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid #e4dfd7;
}

.tt-package-day-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d2c7;
    color: #b18b4d;
    font-family: Georgia, serif;
    font-size: 18px;
}

.tt-package-day-content small {
    color: #b18b4d;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.tt-package-day-content h3 {
    margin: 6px 0 8px;
    color: #071326;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
}

.tt-package-day-content p {
    margin: 0;
    color: #737a83;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.7;
}

.tt-package-day-tags {
    display: flex;
    gap: 7px;
    margin-top: 12px;
}

    .tt-package-day-tags span {
        padding: 5px 8px;
        background: #f1eadd;
        color: #5a626d;
        font-family: Arial, sans-serif;
        font-size: 13px;
    }


/* =========================================================
   HOTEL
========================================================= */

.tt-package-hotel {
    display: grid;
    grid-template-columns: 210px 1fr;
    background: #ffffff;
    border: 1px solid #e1ddd5;
}

.tt-package-hotel-image {
    min-height: 220px;
}

    .tt-package-hotel-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.tt-package-hotel-info {
    padding: 25px;
}

    .tt-package-hotel-info > small {
        color: #b18b4d;
        font-family: Arial, sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    .tt-package-hotel-info h3 {
        margin: 8px 0;
        color: #071326;
        font-family: Georgia, serif;
        font-size: 24px;
        font-weight: 400;
    }

.tt-package-hotel-rating {
    color: #b18b4d;
    font-size: 11px;
}

.tt-package-hotel-info p {
    color: #727984;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.7;
}

.tt-package-hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #65706c;
    font-family: Arial, sans-serif;
    font-size: 12px;
}


/* =========================================================
   INCLUSION
========================================================= */

.tt-package-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .tt-package-check-grid div {
        padding: 12px 15px;
        background: #ffffff;
        border: 1px solid #e2ddd5;
        color: #56605f;
        font-family: Arial, sans-serif;
        font-size: 13px;
    }

        .tt-package-check-grid div::first-letter {
            color: #368164;
        }

    .tt-package-check-grid.exclusion div::first-letter {
        color: #b75b50;
    }


/* =========================================================
   BOOKING SIDEBAR
========================================================= */

.tt-package-sidebar {
    position: sticky;
    top: 85px;
}

.tt-package-booking-card {
    padding: 10px 25px;
    background: #071326;
    box-shadow: 0 20px 50px rgba(7,19,38,.16);
}

.tt-package-booking-top small {
    color: #9da5b0;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.tt-package-booking-top strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 34px;
}

.tt-package-booking-top span {
    color: #a6adb5;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.tt-package-booking-line {
    height: 1px;
    margin: 5px 0;
    background: rgba(255,255,255,.13);
}

.tt-package-booking-card label {
    display: block;
    margin: 13px 0 6px;
    color: #aab0b9;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.tt-package-input {
    width: 100%;
    height: 43px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.15) !important;
    outline: none;
    background: rgba(255,255,255,.07) !important;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 13px;
}

    .tt-package-input option {
        color: #071326;
    }

.tt-package-sidebar-book {
    width: 100%;
    height: 48px;
    margin-top: -5px;
    border: 0;
    background: #d4ad66;
    color: #071326;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: .3s ease;
}

    .tt-package-sidebar-book span {
        margin-left: 15px;
        font-size: 14px;
    }

    .tt-package-sidebar-book:hover {
        background: #ffffff;
    }

.tt-package-sidebar-enquire {
    width: 100%;
    height: 45px;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,.3);
    background: transparent;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
}

    .tt-package-sidebar-enquire:hover {
        border-color: #d4ad66;
        color: #d4ad66;
    }

.tt-package-help {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
}

    .tt-package-help strong {
        color: #ffffff;
        font-family: Georgia, serif;
        font-size: 17px;
        font-weight: 400;
    }

    .tt-package-help p {
        color: #9ba2ac;
        font-family: Arial, sans-serif;
        font-size: 12px;
        line-height: 1.6;
    }

    .tt-package-help a {
        color: #d4ad66 !important;
        font-family: Arial, sans-serif;
        font-size: 11px;
        font-weight: 700;
        text-decoration: none !important;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .tt-package-hero-grid {
        grid-template-columns: 1fr;
    }

    .tt-package-main-image {
        height: 450px;
    }

    .tt-package-summary {
        max-width: 700px;
    }

    .tt-package-content-grid {
        grid-template-columns: 1fr;
    }

    .tt-package-sidebar {
        position: relative;
        top: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tt-package-container {
        width: calc(100% - 30px);
    }

    .tt-package-breadcrumb .tt-package-container {
        min-height: 45px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .tt-package-hero {
        padding: 15px 0 35px;
    }

    .tt-package-hero-grid {
        gap: 25px;
    }

    .tt-package-main-image {
        height: 270px;
    }

    .tt-package-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .tt-package-thumb {
        height: 55px;
    }

    .tt-package-summary h1 {
        font-size: 40px;
    }

    .tt-package-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px 7px;
    }

    .tt-package-info strong {
        font-size: 9px;
    }

    .tt-package-price {
        font-size: 28px;
    }

    .tt-package-actions {
        flex-direction: column;
    }

    .tt-package-enquire-btn {
        width: 100%;
    }

    .tt-package-nav-inner {
        gap: 22px;
    }

        .tt-package-nav-inner a {
            padding: 18px 0;
            font-size: 8px;
        }

    .tt-package-content {
        padding: 45px 0 70px;
    }

    .tt-package-content-grid {
        gap: 35px;
    }

    .tt-package-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

        .tt-package-section h2 {
            font-size: 31px;
        }

    .tt-package-highlights {
        grid-template-columns: 1fr;
    }

    .tt-package-check-grid {
        grid-template-columns: 1fr;
    }

    .tt-package-hotel {
        grid-template-columns: 1fr;
    }

    .tt-package-hotel-image {
        height: 200px;
        min-height: auto;
    }

    .tt-package-day {
        grid-template-columns: 45px 1fr;
        gap: 13px;
    }

    .tt-package-day-number {
        width: 40px;
        height: 40px;
    }

    .tt-package-sidebar {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .tt-package-summary h1 {
        font-size: 35px;
    }

    .tt-package-info-grid {
        grid-template-columns: 1fr;
    }

    .tt-package-main-image {
        height: 235px;
    }

    .tt-package-price-box {
        align-items: flex-start;
    }
}

/* =========================================================
   NORTH EAST TOUR PAGINATION
========================================================= */

.tt-ne-pagination-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.tt-ne-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .tt-ne-pagination button,
    .tt-ne-page-arrow {
        width: 46px;
        height: 46px;
        border: 1px solid #ddd8cf;
        background: #ffffff;
        color: #071326;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        outline: none;
        transition: all 0.3s ease;
    }

        /* Hover */

        .tt-ne-pagination button:hover,
        .tt-ne-page-arrow:hover {
            background: #071326;
            border-color: #071326;
            color: #ffffff;
        }

        /* Active Page */

        .tt-ne-pagination button.tt-ne-page-active {
            background: #d4ad66;
            border-color: #d4ad66;
            color: #ffffff;
        }

        /* Disabled */

        .tt-ne-page-arrow:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

            .tt-ne-page-arrow:disabled:hover {
                background: #ffffff;
                border-color: #ddd8cf;
                color: #071326;
            }


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .tt-ne-pagination-wrap {
        margin-top: 35px;
        gap: 6px;
    }

    .tt-ne-pagination {
        gap: 5px;
    }

        .tt-ne-pagination button,
        .tt-ne-page-arrow {
            width: 40px;
            height: 40px;
            font-size: 12px;
        }
}

@media (max-width: 400px) {

    .tt-ne-pagination-wrap {
        gap: 4px;
    }

    .tt-ne-pagination {
        gap: 4px;
    }

        .tt-ne-pagination button,
        .tt-ne-page-arrow {
            width: 35px;
            height: 35px;
            font-size: 11px;
        }
}


/* =========================================================
   TRIP TASTIC TOURS - PREMIUM ABOUT PAGE start
========================================================= */

.tt-about-page {
    overflow: hidden;
    background: #ffffff;
    color: #222222;
}

    .tt-about-page *,
    .tt-about-page *:before,
    .tt-about-page *:after {
        box-sizing: border-box;
    }


    /* =========================================================
   COMMON
========================================================= */

    .tt-about-page img {
        max-width: 100%;
        display: block;
    }

.tt-about-section-tag {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #d8b875;
    text-transform: uppercase;
}

.tt-about-page h1,
.tt-about-page h2,
.tt-about-page h3,
.tt-about-page h4 {
    margin-top: 0;
}

.tt-about-page h2 {
    font-size: 40px;
    font-family: Georgia, "Times New Roman", Georgia, serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #1d2433;
}

    .tt-about-page h2 span {
        color: #d8b875;
    }

.tt-about-page p {
    font-size: 15px;
    line-height: 1.9;
    color: #6d7480;
}


/* =========================================================
   01. HERO SECTION
========================================================= */

.tt-about-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-image: url("../myimage/banner-1.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tt-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(8, 15, 28, 0.88) 0%, rgba(8, 15, 28, 0.68) 45%, rgba(8, 15, 28, 0.15) 100% );
}

.tt-about-hero .wrap,
.tt-about-hero .wrap_float {
    position: relative;
    z-index: 2;
    width: 100%;
}

.tt-about-hero-content {
    max-width: 720px;
    padding: 100px 0;
}

.tt-about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 45px;
}

    .tt-about-breadcrumb a {
        color: #ffffff;
        text-decoration: none;
    }

    .tt-about-breadcrumb span:last-child {
        color: #d89b3c;
    }

.tt-about-hero-tag {
    display: inline-block;
    padding: 9px 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tt-about-hero h1 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 45px;
    line-height: 1.1;
    font-weight: 700;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
}

    .tt-about-hero h1 span {
        color: #d8b875;
    }

.tt-about-hero p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.tt-about-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 25px;
    z-index: 3;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
}

    .tt-about-hero-scroll span {
        display: block;
        margin-bottom: 5px;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .tt-about-hero-scroll i {
        font-size: 22px;
        animation: tt-about-scroll-down 1.5s infinite;
    }

@keyframes tt-about-scroll-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================================================
   02. OUR STORY
========================================================= */

.tt-about-story {
    padding: 50px 0;
    background: #ffffff;
}

.tt-about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 85px;
    align-items: center;
}

.tt-about-story-images {
    position: relative;
    min-height: 560px;
    padding-right: 80px;
    padding-bottom: 60px;
}

.tt-about-main-image {
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

    .tt-about-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tt-about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 230px;
    height: 280px;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

    .tt-about-small-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tt-about-image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 2;
    width: 170px;
    padding: 20px;
    background: #d89b3c;
    color: #ffffff;
}

    .tt-about-image-badge strong {
        display: block;
        margin-bottom: 5px;
        font-size: 24px;
    }

    .tt-about-image-badge span {
        display: block;
        font-size: 11px;
        line-height: 1.5;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.tt-about-story-content h2 {
    margin-bottom: 25px;
}

.tt-about-story-content > p {
    margin-bottom: 18px;
}

.tt-about-story-points {
    margin-top: 32px;
}

.tt-about-story-point {
    display: flex;
    gap: 17px;
    margin-bottom: 25px;
}

.tt-about-story-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7f3ec;
    color: #d89b3c;
    font-size: 18px;
}

.tt-about-story-point h4 {
    margin-bottom: 5px;
    color: #1d2433;
    font-size: 17px;
    font-weight: 700;
}

.tt-about-story-point p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   03. MISSION & VISION
========================================================= */

.tt-about-mission {
    position: relative;
    padding: 50px 0;
    background: /*#f7f8fa*/ #111b38;
    overflow: hidden;
}

.tt-about-mission-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    border-radius: 50%;
    background: rgba(216, 155, 60, 0.07);
}

.tt-about-mission .wrap,
.tt-about-mission .wrap_float {
    position: relative;
    z-index: 2;
}

.tt-about-mission-intro {
    max-width: 1050px;
    margin-bottom: 35px;
}

    .tt-about-mission-intro h2 {
        margin-bottom: 0;
    }

.tt-about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tt-about-mission-card {
    position: relative;
    min-height: 280px;
    padding: 25px 35px;
    background: #ffffff;
    border: 1px solid #eceff3;
    transition: all 0.35s ease;
}

    .tt-about-mission-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    }

.tt-about-mission-number {
    position: absolute;
    top: 38px;
    right: 0%;
    color: #62719b;
    font-size: 50px;
    font-weight: 700;
    left: -6%;
    text-align: end;
}

.tt-about-mission-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #f8f2e8;
    color: #d89b3c;
    font-size: 40px;
}

.tt-about-mission-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 5px;
    color: #1d2433;
    font-size: 22px;
}

.tt-about-mission-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 14px;
}


/* =========================================================
   04. WHY CHOOSE US
========================================================= */

.tt-about-why {
    padding: 50px 0;
    background: #ffffff;
}

.tt-about-heading-center {
    max-width: 680px;
    margin: 0 auto 20px;
    text-align: start;
}

    .tt-about-heading-center h2 {
        margin-bottom: 8px;
    }

    .tt-about-heading-center p {
        margin: 0;
    }

.tt-about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tt-about-why-card {
    position: relative;
    padding: 35px 25px;
    border: 1px solid #edf0f3;
    background: #ffffff;
    transition: all 0.35s ease;
}

    .tt-about-why-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 25px;
        width: 45px;
        height: 3px;
        background: #d89b3c;
        opacity: 0;
        transition: all 0.35s ease;
    }

    .tt-about-why-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    }

        .tt-about-why-card:hover:before {
            opacity: 1;
        }

.tt-about-why-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: #f8f2e8;
    border-radius: 50%;
    color: #d89b3c;
    font-size: 20px;
}

.tt-about-why-card h3 {
    margin-bottom: 12px;
    color: #1d2433;
    font-size: 18px;
}

.tt-about-why-card p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   05. STATISTICS
========================================================= */

.tt-about-stats {
    position: relative;
    padding: 60px 0;
    background-image: url("../myimage/Adventure.jpg");
    background-size: cover;
    background-position: center;
}

.tt-about-stats-overlay {
    position: absolute;
    inset: 0;
    background: rgb(13 23 38 / 66%);
}

.tt-about-stats .wrap,
.tt-about-stats .wrap_float {
    position: relative;
    z-index: 2;
}

.tt-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.tt-about-stat {
    padding: 10px 25px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
}

    .tt-about-stat:last-child {
        border-right: none;
    }

    .tt-about-stat strong,
    .tt-about-stat span {
        color: #dca448;
        font-size: 48px;
        font-weight: 700;
    }

    .tt-about-stat span {
        font-size: 26px;
    }

    .tt-about-stat p {
        margin: 8px 0 0;
        color: rgba(255,255,255,0.75);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
    }


/* =========================================================
   06. OUR PROCESS
========================================================= */

.tt-about-process {
    padding: 50px 0;
    background: #f7f8fa;
}

.tt-about-process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.tt-about-process-heading h2 {
    margin-bottom: 22px;
}

.tt-about-process-heading > p {
    max-width: 500px;
    margin-bottom: 30px;
}

.tt-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 16px 23px;
    background: #d8b875;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    transition: all 0.3s ease;
}

    .tt-about-btn:hover {
        background: #1d2433;
        transform: translateY(-2px);
    }

.tt-about-process-steps {
    border-top: 1px solid #e0e4e8;
}

.tt-about-process-step {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e4e8;
}

.tt-about-step-number {
    flex: 0 0 65px;
    color: #d89b3c;
    font-size: 32px;
    font-weight: 700;
}

.tt-about-step-content h3 {
    margin-bottom: 8px;
    color: #1d2433;
    font-size: 19px;
}

.tt-about-step-content p {
    margin: 0;
    font-size: 14px;
}


/* =========================================================
   07. CTA
========================================================= */

.tt-about-cta {
    position: relative;
    padding: 90px 0;
    background-image: url("../myimage/Arunachal-Pradesh.png");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.tt-about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgb(8 15 28 / 72%);
}

.tt-about-cta .wrap,
.tt-about-cta .wrap_float {
    position: relative;
    z-index: 2;
}

.tt-about-cta-content {
    max-width: 750px;
    margin: 0 auto;
}

    .tt-about-cta-content .tt-about-section-tag {
        color: #d8b875;
    }

.tt-about-cta h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

    .tt-about-cta h2 span {
        color: #e1a646;
    }

.tt-about-cta p {
    max-width: 600px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.8);
}

.tt-about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tt-about-btn-light {
    background: #e1a646;
}

.tt-about-btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    background: transparent;
}

    .tt-about-btn-outline:hover {
        background: #ffffff;
        color: #1d2433 !important;
    }


/* =========================================================
   RESPONSIVE - LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .tt-about-story-grid,
    .tt-about-process-grid {
        gap: 50px;
    }

    .tt-about-story-images {
        padding-right: 50px;
    }

    .tt-about-small-image {
        width: 190px;
        height: 240px;
    }

    .tt-about-page h2 {
        font-size: 40px;
    }

    .tt-about-hero h1 {
        font-size: 54px;
    }

    .tt-about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .tt-about-hero {
        min-height: 500px;
    }

    .tt-about-hero-content {
        padding: 80px 0;
    }

    .tt-about-story {
        padding: 85px 0;
    }

    .tt-about-story-grid,
    .tt-about-process-grid {
        grid-template-columns: 1fr;
    }

    .tt-about-story-images {
        max-width: 650px;
        margin: 0 auto;
    }

    .tt-about-story-content {
        max-width: 750px;
        margin: 0 auto;
    }

    .tt-about-mission,
    .tt-about-why,
    .tt-about-process {
        padding: 85px 0;
    }

    .tt-about-mission-grid {
        grid-template-columns: 1fr;
    }

    .tt-about-mission-card {
        min-height: auto;
    }

    .tt-about-process-heading {
        max-width: 650px;
    }

    .tt-about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 0;
    }

    .tt-about-stat:nth-child(2) {
        border-right: none;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .tt-about-page h2 {
        font-size: 32px;
        line-height: 1.25;
    }

    .tt-about-page p {
        font-size: 14px;
        line-height: 1.8;
    }

    .tt-about-hero {
        min-height: 470px;
    }

    .tt-about-hero-overlay {
        background: rgba(8, 15, 28, 0.72);
    }

    .tt-about-hero-content {
        padding: 70px 0 80px;
    }

    .tt-about-breadcrumb {
        margin-bottom: 20px;
    }

    .tt-about-hero-tag {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .tt-about-hero h1 {
        font-size: 39px;
        line-height: 1.15;
    }

    .tt-about-hero p {
        font-size: 14px;
    }

    .tt-about-hero-scroll {
        bottom: 18px;
    }


    /* STORY */

    .tt-about-story {
        padding: 65px 0;
    }

    .tt-about-story-images {
        min-height: auto;
        padding-right: 30px;
        padding-bottom: 45px;
    }

    .tt-about-main-image {
        height: 390px;
    }

    .tt-about-small-image {
        width: 145px;
        height: 180px;
    }

    .tt-about-image-badge {
        left: 15px;
        bottom: 15px;
        width: 145px;
        padding: 14px;
    }

        .tt-about-image-badge strong {
            font-size: 20px;
        }

        .tt-about-image-badge span {
            font-size: 8px;
        }

    .tt-about-story-grid {
        gap: 50px;
    }


    /* MISSION */

    .tt-about-mission {
        padding: 65px 0;
    }

    .tt-about-mission-intro {
        margin-bottom: 35px;
    }

    .tt-about-mission-grid {
        gap: 15px;
    }

    .tt-about-mission-card {
        padding: 32px 25px;
    }


    /* WHY */

    .tt-about-why {
        padding: 65px 0;
    }

    .tt-about-heading-center {
        margin-bottom: 35px;
    }

    .tt-about-why-grid {
        grid-template-columns: 1fr;
    }


    /* STATS */

    .tt-about-stats {
        padding: 65px 0;
    }

    .tt-about-stats-grid {
        gap: 30px 0;
    }

    .tt-about-stat {
        padding: 10px;
    }

        .tt-about-stat strong {
            font-size: 37px;
        }


    /* PROCESS */

    .tt-about-process {
        padding: 65px 0;
    }

    .tt-about-process-grid {
        gap: 45px;
    }

    .tt-about-process-step {
        gap: 18px;
    }

    .tt-about-step-number {
        flex: 0 0 45px;
        font-size: 25px;
    }


    /* CTA */

    .tt-about-cta {
        padding: 85px 0;
    }

    .tt-about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .tt-about-cta-buttons .tt-about-btn {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }
}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tt-about-hero h1 {
        font-size: 30px;
    }

    .tt-about-page h2 {
        font-size: 28px;
    }

    .tt-about-main-image {
        height: 340px;
    }

    .tt-about-small-image {
        width: 125px;
        height: 155px;
    }

    .tt-about-story-point {
        gap: 12px;
    }

    .tt-about-story-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
    }

    .tt-about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tt-about-stat strong {
        font-size: 31px;
    }

    .tt-about-stat p {
        font-size: 9px;
        line-height: 1.5;
    }

    .tt-about-process-step {
        align-items: flex-start;
    }
}
/* =========================================================
   TRIP TASTIC TOURS - PREMIUM ABOUT PAGE End
========================================================= */


/* =========================================================
   TRIP TASTIC TOURS - PREMIUM CONTACT PAGE Start
========================================================= */

.tt-contact-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

    .tt-contact-page *,
    .tt-contact-page *:before,
    .tt-contact-page *:after {
        box-sizing: border-box;
    }


/* =====================================================
   01. CONTACT HERO
===================================================== */

.tt-contact-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("../myimage/banner-1.png");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.tt-contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(10, 24, 39, 0.88) 0%, rgba(10, 24, 39, 0.70) 48%, rgba(10, 24, 39, 0.25) 100% );
}

.tt-contact-hero .wrap,
.tt-contact-hero .wrap_float {
    position: relative;
    width: 100%;
    z-index: 2;
}

.tt-contact-hero-content {
    max-width: 720px;
    padding: 100px 0 85px;
}

.tt-contact-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 25px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-top: 33px;
}

    .tt-contact-breadcrumb a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .tt-contact-breadcrumb a:hover {
            opacity: 0.7;
        }

    .tt-contact-breadcrumb span:last-child {
        color: rgba(255,255,255,0.65);
    }

.tt-contact-hero-tag,
.tt-contact-section-tag {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-bottom: 18px;
    padding-left: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FA7F27;
}

.tt-contact-hero-tag {
    color: #fff;
}

    .tt-contact-hero-tag:before,
    .tt-contact-section-tag:before {
        content: "";
        position: absolute;
        left: 0;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #FA7F27;
    }

    .tt-contact-hero-tag:before {
        background: #fff;
    }

.tt-contact-hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #fff;
}

    .tt-contact-hero h1 span {
        color: #d8b875;
    }

.tt-contact-hero p {
    max-width: 650px;
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}

.tt-contact-hero-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    bottom: -300px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
}

    .tt-contact-hero-shape:before,
    .tt-contact-hero-shape:after {
        content: "";
        position: absolute;
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 50%;
    }

    .tt-contact-hero-shape:before {
        width: 340px;
        height: 340px;
        top: 80px;
        left: 80px;
    }

    .tt-contact-hero-shape:after {
        width: 180px;
        height: 180px;
        top: 160px;
        left: 160px;
    }


/* =====================================================
   02. CONTACT INFO CARDS
===================================================== */

.tt-contact-info-section {
    position: relative;
    z-index: 5;
    margin-top: -55px;
    padding-bottom: 45px;
}

.tt-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tt-contact-info-card {
    display: flex;
    gap: 18px;
    min-height: 140px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
}

    .tt-contact-info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }

.tt-contact-info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(250,127,39,0.12);
    color: #FA7F27;
    font-size: 21px;
}

.tt-contact-info-content {
    flex: 1;
}

    .tt-contact-info-content span {
        display: block;
        margin-bottom: 7px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.6px;
        color: #FA7F27;
    }

    .tt-contact-info-content h3 {
        margin: 0 0 8px;
        font-size: 19px;
        line-height: 1.35;
        font-weight: 700;
        color: #1b0934;
    }

    .tt-contact-info-content p {
        margin: 0;
        font-size: 13px;
        line-height: 1.7;
        color: #777;
    }

        .tt-contact-info-content p a {
            color: #555;
            text-decoration: none;
            word-break: break-word;
        }

            .tt-contact-info-content p a:hover {
                color: #FA7F27;
            }


/* =====================================================
   03. MAIN CONTACT SECTION
===================================================== */

.tt-contact-main {
    padding: 50px 0 50px;
    background: #fff;
}

.tt-contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 70px;
    align-items: start;
}

.tt-contact-content {
    padding-top: 15px;
}

    .tt-contact-content h2,
    .tt-contact-assistance-heading h2,
    .tt-contact-faq-heading h2,
    .tt-contact-map-heading h2,
    .tt-contact-cta-content h2 {
        margin: 0;
        font-size: 40px;
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -1px;
        color: #111b38;
    }

        .tt-contact-content h2 span,
        .tt-contact-assistance-heading h2 span,
        .tt-contact-faq-heading h2 span,
        .tt-contact-map-heading h2 span,
        .tt-contact-cta-content h2 span {
            color: #d8b875;
        }

    .tt-contact-content > p {
        margin: 22px 0 0;
        font-size: 15px;
        line-height: 1.85;
        color: #777;
    }


/* BENEFITS */

.tt-contact-benefits {
    margin-top: 34px;
}

.tt-contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.tt-contact-benefit-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: #111b38;
    color: #fff;
    font-size: 13px;
}

.tt-contact-benefit h4 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 700;
    color: #111b38;
}

.tt-contact-benefit p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #777;
}


/* RESPONSE BOX */

.tt-contact-response-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    padding: 18px 20px;
    border-left: 4px solid #FA7F27;
    background: #fafafa;
}

.tt-contact-response-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #FA7F27;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tt-contact-response-box strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: #1b0934;
}

.tt-contact-response-box span {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #777;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.tt-contact-form-wrapper {
    padding: 38px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ededed;
    box-shadow: 0 20px 55px rgba(0,0,0,0.09);
}

.tt-contact-form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 28px;
    border-bottom: 1px solid #eeeeee;
}

    .tt-contact-form-top span {
        display: block;
        margin-bottom: 6px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.7px;
        color: #FA7F27;
    }

    .tt-contact-form-top h3 {
        margin: 0;
        font-size: 26px;
        font-weight: 700;
        color: #1b0934;
    }

.tt-contact-form-plane {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111b38;
    color: #FA7F27;
    font-size: 20px;
}

.tt-contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tt-contact-form-group {
    margin-bottom: 20px;
}

    .tt-contact-form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 600;
        color: #1b0934;
    }

    .tt-contact-form-group input,
    .tt-contact-form-group select,
    .tt-contact-form-group textarea {
        width: 100%;
        outline: none;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        background: #fafafa;
        color: #333;
        font-family: inherit;
        font-size: 13px;
        transition: all 0.3s ease;
    }

    .tt-contact-form-group input,
    .tt-contact-form-group select {
        height: 48px;
        padding: 0 15px;
    }

    .tt-contact-form-group textarea {
        min-height: 125px;
        padding: 14px 15px;
        resize: vertical;
    }

        .tt-contact-form-group input:focus,
        .tt-contact-form-group select:focus,
        .tt-contact-form-group textarea:focus {
            border-color: #FA7F27;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(250,127,39,0.08);
        }

        .tt-contact-form-group input::placeholder,
        .tt-contact-form-group textarea::placeholder {
            color: #aaa;
        }

.tt-contact-form-bottom {
    margin-top: 5px;
}

.tt-contact-submit {
    min-width: 185px;
    height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    background: #FA7F27;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tt-contact-submit:hover {
        background: #1b0934;
        transform: translateY(-2px);
    }

.tt-contact-form-message {
    display: none;
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: 7px;
    font-size: 13px;
}


/* =====================================================
   04. TRAVEL ASSISTANCE
===================================================== */

.tt-contact-assistance {
    padding: 50px 0;
    background: #111b38;
}

.tt-contact-assistance-heading {
    max-width: 950px;
    margin-bottom: 20px;
}

.tt-contact-assistance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.tt-contact-assistance-card {
    position: relative;
    min-height: 225px;
    padding: 32px 25px;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eeeeee;
    transition: all 0.35s ease;
}

    .tt-contact-assistance-card:hover {
        transform: translateY(-7px);
        border-color: transparent;
        box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    }

.tt-contact-assistance-number {
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: #111b3891;
    text-align: right;
}

.tt-contact-assistance-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 14px;
    background: rgba(250,127,39,0.12);
    color: #FA7F27;
    font-size: 22px;
}

.tt-contact-assistance-card h3 {
    position: relative;
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0934;
}

.tt-contact-assistance-card p {
    position: relative;
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: #777;
}


/* =====================================================
   05. FAQ SECTION
===================================================== */

.tt-contact-faq {
    padding: 50px 0;
    background: #fff;
}

.tt-contact-faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.tt-contact-faq-heading {
    position: sticky;
    top: 100px;
}

    .tt-contact-faq-heading p {
        max-width: 470px;
        margin: 22px 0 0;
        font-size: 15px;
        line-height: 1.8;
        color: #777;
    }

.tt-contact-faq-list {
    border-top: 1px solid #e9e9e9;
}

.tt-contact-faq-item {
    border-bottom: 1px solid #e9e9e9;
}

.tt-contact-faq-question {
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #1b0934;
}

    .tt-contact-faq-question i {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f5f5f5;
        color: #FA7F27;
        font-size: 11px;
        transition: all 0.3s ease;
    }

.tt-contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

    .tt-contact-faq-answer p {
        margin: 0;
        padding: 0 45px 22px 0;
        font-size: 14px;
        line-height: 1.8;
        color: #777;
    }

.tt-contact-faq-item.active .tt-contact-faq-answer {
    max-height: 300px;
}

.tt-contact-faq-item.active .tt-contact-faq-question i {
    background: #FA7F27;
    color: #fff;
    transform: rotate(45deg);
}


/* =====================================================
   06. MAP
===================================================== */

.tt-contact-map-section {
    padding: 0 0 100px;
    background: #fff;
}

.tt-contact-map-heading {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 35px;
}

.tt-contact-map {
    width: 100%;
    overflow: hidden;
}

    .tt-contact-map iframe {
        display: block;
        width: 100%;
        height: 450px;
        filter: grayscale(15%);
    }


/* =====================================================
   07. FINAL CTA
===================================================== */

.tt-contact-cta {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    text-align: center;
    background-image: url("../myimage/kerala.png");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.tt-contact-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,9,52,0.86);
}

.tt-contact-cta .wrap,
.tt-contact-cta .wrap_float {
    position: relative;
    z-index: 2;
}

.tt-contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

    .tt-contact-cta-content .tt-contact-section-tag {
        color: #FA7F27;
    }

    .tt-contact-cta-content h2 {
        color: #fff;
    }

        .tt-contact-cta-content h2 span {
            color: #FA7F27;
        }

    .tt-contact-cta-content p {
        max-width: 620px;
        margin: 22px auto 0;
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255,255,255,0.75);
    }

.tt-contact-cta-btn {
    height: 54px;
    margin-top: 30px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 7px;
    background: #FA7F27;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
}

    .tt-contact-cta-btn:hover {
        background: #fff;
        color: #1b0934;
        transform: translateY(-3px);
    }


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .tt-contact-main-grid {
        gap: 40px;
    }

    .tt-contact-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tt-contact-assistance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tt-contact-faq-grid {
        gap: 50px;
    }
}


@media (max-width: 991px) {

    .tt-contact-hero h1 {
        font-size: 46px;
    }

    .tt-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .tt-contact-info-section {
        margin-top: 0;
        padding-top: 45px;
    }

    .tt-contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tt-contact-form-wrapper {
        max-width: 750px;
    }

    .tt-contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .tt-contact-faq-heading {
        position: static;
    }
}


@media (max-width: 767px) {

    .tt-contact-hero {
        min-height: auto;
    }

    .tt-contact-hero-content {
        padding: 80px 0 75px;
    }

    .tt-contact-hero h1 {
        font-size: 38px;
        letter-spacing: -0.7px;
    }

    .tt-contact-hero p {
        font-size: 14px;
        line-height: 1.75;
    }

    .tt-contact-info-section {
        padding-bottom: 25px;
    }

    .tt-contact-info-card {
        min-height: auto;
        padding: 23px;
    }

    .tt-contact-main {
        padding: 60px 0 70px;
    }

    .tt-contact-content h2,
    .tt-contact-assistance-heading h2,
    .tt-contact-faq-heading h2,
    .tt-contact-map-heading h2,
    .tt-contact-cta-content h2 {
        font-size: 33px;
    }

    .tt-contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .tt-contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tt-contact-form-top h3 {
        font-size: 22px;
    }

    .tt-contact-assistance {
        padding: 70px 0;
    }

    .tt-contact-assistance-grid {
        grid-template-columns: 1fr;
    }

    .tt-contact-assistance-card {
        min-height: auto;
    }

    .tt-contact-faq {
        padding: 70px 0;
    }

    .tt-contact-faq-question {
        font-size: 14px;
        min-height: 62px;
    }

    .tt-contact-faq-answer p {
        padding-right: 0;
        font-size: 13px;
    }

    .tt-contact-map-section {
        padding-bottom: 70px;
    }

    .tt-contact-map-heading {
        width: calc(100% - 30px);
    }

    .tt-contact-map iframe {
        height: 350px;
    }

    .tt-contact-cta {
        padding: 85px 0;
    }
}


@media (max-width: 480px) {

    .tt-contact-hero-content {
        padding: 65px 0 65px;
    }

    .tt-contact-breadcrumb {
        font-size: 11px;
    }

    .tt-contact-hero h1 {
        font-size: 31px;
        line-height: 1.2;
    }

    .tt-contact-hero p {
        margin-top: 18px;
        font-size: 13px;
    }

    .tt-contact-hero-tag,
    .tt-contact-section-tag {
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .tt-contact-info-card {
        gap: 14px;
        padding: 20px;
    }

    .tt-contact-info-icon {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        font-size: 18px;
    }

    .tt-contact-info-content h3 {
        font-size: 17px;
    }

    .tt-contact-content h2,
    .tt-contact-assistance-heading h2,
    .tt-contact-faq-heading h2,
    .tt-contact-map-heading h2,
    .tt-contact-cta-content h2 {
        font-size: 28px;
    }

    .tt-contact-benefit h4 {
        font-size: 15px;
    }

    .tt-contact-form-wrapper {
        padding: 20px 15px;
    }

    .tt-contact-form-plane {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .tt-contact-form-top h3 {
        font-size: 19px;
    }

    .tt-contact-submit {
        width: 100%;
    }

    .tt-contact-response-box {
        padding: 15px;
    }

    .tt-contact-response-icon {
        display: none;
    }

    .tt-contact-assistance-card {
        padding: 27px 20px;
    }

    .tt-contact-faq-question {
        gap: 12px;
        font-size: 13px;
    }

    .tt-contact-cta {
        padding: 70px 0;
    }

    .tt-contact-cta-content p {
        font-size: 13px;
    }

    .tt-contact-cta-btn {
        width: 100%;
        max-width: 290px;
    }
}
/* =========================================================
   TRIP TASTIC TOURS - PREMIUM CONTACT PAGE End
========================================================= */


/* =====================================================
   TRIP TASTIC TOURS - PREMIUM ENQUIRY MODAL START
===================================================== */


/* =====================================================
   ENQUIRY BUTTON
===================================================== */

/*.tt-enquiry-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 23px;
    border-radius: 6px;
    background: #FA7F27;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tt-enquiry-trigger:hover {
        background: #1b0934;
        color: #fff !important;
        transform: translateY(-2px);
    }*/


/* =====================================================
   MODAL
===================================================== */

/*.tt-enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

    .tt-enquiry-modal.tt-enquiry-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }*/


/* =====================================================
   OVERLAY
===================================================== */

/*.tt-enquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 25, 0.78);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}*/


/* =====================================================
   MODAL BOX
===================================================== */

/*.tt-enquiry-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1080px;
    max-height: calc(100vh - 50px);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    transform: translateY(35px) scale(0.97);
    opacity: 0;
    transition: all 0.4s ease;
}

.tt-enquiry-modal.tt-enquiry-open .tt-enquiry-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}*/


/* =====================================================
   CLOSE BUTTON
===================================================== */

/*.tt-enquiry-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #1b0934;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,0.14);
    transition: all 0.3s ease;
}

    .tt-enquiry-close:hover {
        background: #FA7F27;
        color: #fff;
        transform: rotate(90deg);
    }*/


/* =====================================================
   LEFT SIDE
===================================================== */

/*.tt-enquiry-info {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    background-image: url("../Content/img/contact/enquiry-bg.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.tt-enquiry-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #071326, #334869);
}

.tt-enquiry-info-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 55px 45px 45px;
}

.tt-enquiry-tag {
    display: inline-block;
    margin-bottom: 17px;
    padding-left: 14px;
    position: relative;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FA7F27;
}

    .tt-enquiry-tag:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #FA7F27;
        transform: translateY(-50%);
    }

.tt-enquiry-info h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 700;
    color: #fff;
}

    .tt-enquiry-info h2 span {
        display: block;
        color: #FA7F27;
    }

.tt-enquiry-info > .tt-enquiry-info-content > p {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
}*/


/* FEATURES */

/*.tt-enquiry-feature-list {
    margin-top: 42px;
}

.tt-enquiry-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 25px;
}

.tt-enquiry-feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(250,127,39,0.18);
    border: 1px solid rgba(250,127,39,0.35);
    color: #FA7F27;
    font-size: 16px;
}

.tt-enquiry-feature h4 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.tt-enquiry-feature p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255,255,255,0.68);
}*/


/* =====================================================
   RIGHT FORM
===================================================== */

/*.tt-enquiry-form-side {
    overflow-y: auto;
    padding: 48px 42px 40px;
    background: #fff;
}

.tt-enquiry-form-header {
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eeeeee;
}

    .tt-enquiry-form-header > span {
        display: block;
        margin-bottom: 8px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.8px;
        color: #FA7F27;
    }

    .tt-enquiry-form-header h3 {
        margin: 0;
        font-size: 28px;
        line-height: 1.3;
        font-weight: 700;
        color: #1b0934;
    }

    .tt-enquiry-form-header p {
        margin: 9px 0 0;
        font-size: 13px;
        line-height: 1.7;
        color: #777;
    }*/


/* =====================================================
   FORM
===================================================== */

/*.tt-enquiry-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.tt-enquiry-form-group {
    margin-bottom: 17px;
}

    .tt-enquiry-form-group label {
        display: block;
        margin-bottom: 7px;
        font-size: 11px;
        font-weight: 600;
        color: #1b0934;
    }

    .tt-enquiry-form-group input,
    .tt-enquiry-form-group select,
    .tt-enquiry-form-group textarea {
        width: 100%;
        border: 1px solid #e6e6e6;
        border-radius: 7px;
        outline: none;
        background: #fafafa;
        color: #333;
        font-family: inherit;
        font-size: 12px;
        transition: all 0.25s ease;
    }

    .tt-enquiry-form-group input,
    .tt-enquiry-form-group select {
        height: 45px;
        padding: 0 13px;
    }

    .tt-enquiry-form-group textarea {
        min-height: 95px;
        padding: 13px;
        resize: vertical;
    }

        .tt-enquiry-form-group input:focus,
        .tt-enquiry-form-group select:focus,
        .tt-enquiry-form-group textarea:focus {
            border-color: #FA7F27;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(250,127,39,0.08);
        }

.tt-enquiry-submit-wrap {
    margin-top: 4px;
}

.tt-enquiry-submit {
    min-width: 185px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: none;
    border-radius: 6px;
    background: #FA7F27;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tt-enquiry-submit:hover {
        background: #1b0934;
        transform: translateY(-2px);
    }*/


/* =====================================================
   FORM MESSAGE
===================================================== */

/*.tt-enquiry-message {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.6;
}*/


/* =====================================================
   TABLET
===================================================== */

/*@media (max-width: 991px) {

    .tt-enquiry-box {
        max-width: 850px;
        grid-template-columns: 0.8fr 1.2fr;
    }

    .tt-enquiry-info-content {
        padding: 50px 30px 35px;
    }

    .tt-enquiry-info h2 {
        font-size: 31px;
    }

    .tt-enquiry-form-side {
        padding: 45px 30px 35px;
    }
}*/


/* =====================================================
   MOBILE
===================================================== */

/*@media (max-width: 767px) {

    .tt-enquiry-modal {
        align-items: flex-start;
        padding: 15px;
        overflow-y: auto;
    }

    .tt-enquiry-box {
        grid-template-columns: 1fr;
        max-width: 600px;
        max-height: none;
        margin: auto 0;
        border-radius: 14px;
    }

    .tt-enquiry-info {
        min-height: auto;
    }

    .tt-enquiry-info-content {
        padding: 42px 25px 30px;
    }

    .tt-enquiry-info h2 {
        font-size: 30px;
    }

    .tt-enquiry-feature-list {
        margin-top: 28px;
    }

    .tt-enquiry-feature {
        margin-bottom: 18px;
    }

    .tt-enquiry-form-side {
        overflow: visible;
        padding: 32px 22px 28px;
    }

    .tt-enquiry-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tt-enquiry-form-header h3 {
        font-size: 24px;
    }

    .tt-enquiry-close {
        top: 10px;
        right: 10px;
    }
}


@media (max-width: 480px) {

    .tt-enquiry-modal {
        padding: 8px;
    }

    .tt-enquiry-info-content {
        padding: 38px 20px 24px;
    }

    .tt-enquiry-info h2 {
        font-size: 27px;
    }

    .tt-enquiry-info > .tt-enquiry-info-content > p {
        font-size: 13px;
    }

    .tt-enquiry-feature-list {
        margin-top: 24px;
    }

    .tt-enquiry-feature-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 14px;
    }

    .tt-enquiry-form-side {
        padding: 28px 16px 24px;
    }

    .tt-enquiry-form-header h3 {
        font-size: 21px;
    }

    .tt-enquiry-form-header p {
        font-size: 12px;
    }

    .tt-enquiry-submit {
        width: 100%;
    }
}*/

/* =====================================================
   PREMIUM ENQUIRY CAPTCHA
===================================================== */

/*.tt-enquiry-captcha-group {
    margin-top: 2px;
}

.tt-enquiry-captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
}*/


/* CAPTCHA DISPLAY */

/*.tt-enquiry-captcha-box {
    position: relative;
    flex: 0 0 135px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(250, 127, 39, 0.25);
    border-radius: 7px;
    background: linear-gradient( 135deg, rgba(250, 127, 39, 0.12), rgba(27, 9, 52, 0.08) );
}

#ttEnquiryCaptchaText {
    position: relative;
    z-index: 2;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #1b0934;
    font-family: monospace;
    transform: rotate(-3deg);
    user-select: none;
}*/


/* DECORATIVE LINES */

/*.tt-enquiry-captcha-lines {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
}

    .tt-enquiry-captcha-lines:before,
    .tt-enquiry-captcha-lines:after {
        content: "";
        position: absolute;
        left: -10%;
        width: 120%;
        height: 1px;
        background: #FA7F27;
    }

    .tt-enquiry-captcha-lines:before {
        top: 38%;
        transform: rotate(-7deg);
    }

    .tt-enquiry-captcha-lines:after {
        top: 65%;
        background: #1b0934;
        transform: rotate(6deg);
    }*/


/* REFRESH BUTTON */

/*.tt-enquiry-captcha-refresh {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
    border-radius: 7px;
    background: #fff;
    color: #FA7F27;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tt-enquiry-captcha-refresh:hover {
        border-color: #FA7F27;
        background: #FA7F27;
        color: #fff;
    }

        .tt-enquiry-captcha-refresh:hover i {
            transform: rotate(180deg);
        }

    .tt-enquiry-captcha-refresh i {
        transition: transform 0.4s ease;
    }*/


/* CAPTCHA INPUT */

/*.tt-enquiry-captcha-row input {
    flex: 1;
    min-width: 0;
    height: 45px;
    padding: 0 13px;
    border: 1px solid #e6e6e6;
    border-radius: 7px;
    outline: none;
    background: #fafafa;
    color: #333;
    font-family: inherit;
    font-size: 12px;
    transition: all 0.25s ease;
}

    .tt-enquiry-captcha-row input:focus {
        border-color: #FA7F27;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(250,127,39,0.08);
    }*/


/* HELP TEXT */

/*.tt-enquiry-captcha-help {
    margin-top: 7px;
    font-size: 10px;
    color: #999;
}

    .tt-enquiry-captcha-help i {
        margin-right: 4px;
        color: #FA7F27;
    }*/


/* =====================================================
   CAPTCHA MOBILE RESPONSIVE
===================================================== */

/*@media (max-width: 480px) {

    .tt-enquiry-captcha-row {
        display: grid;
        grid-template-columns: 1fr 45px;
        gap: 9px;
    }

    .tt-enquiry-captcha-box {
        flex: none;
        width: 100%;
    }

    .tt-enquiry-captcha-refresh {
        width: 45px;
    }

    .tt-enquiry-captcha-row input {
        grid-column: 1 / -1;
        width: 100%;
    }
}*/
/* =====================================================
   TRIP TASTIC TOURS - PREMIUM ENQUIRY MODAL START
===================================================== */

/* =====================================================
   TRIP TASTIC TOURS - PREMIUM ENQUIRY MODAL START
===================================================== */


/* =====================================================
   ENQUIRY BUTTON
===================================================== */

/*.tt-enquiry-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 48px;
    padding: 0 23px;
    border-radius: 6px;
    background: #FA7F27;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tt-enquiry-trigger:hover {
        background: #1b0934;
        color: #fff !important;
        transform: translateY(-2px);
    }

*/
/* =====================================================
   MODAL
===================================================== */

.tt-enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

    .tt-enquiry-modal.tt-enquiry-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


/* =====================================================
   OVERLAY
===================================================== */

.tt-enquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 25, 0.78);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


/* =====================================================
   MODAL BOX
===================================================== */

.tt-enquiry-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1080px;
    height: min(680px, calc(100vh - 50px));
    max-height: calc(100vh - 50px);
    min-height: 0;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    transform: translateY(35px) scale(0.97);
    opacity: 0;
    transition: all 0.4s ease;
}

.tt-enquiry-modal.tt-enquiry-open .tt-enquiry-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.tt-enquiry-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #1b0934;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,0.14);
    transition: all 0.3s ease;
}

    .tt-enquiry-close:hover {
        background: #FA7F27;
        color: #fff;
        transform: rotate(90deg);
    }


/* =====================================================
   LEFT SIDE
===================================================== */

.tt-enquiry-info {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    background-image: url("../Content/img/contact/enquiry-bg.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.tt-enquiry-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #071326, #334869);
}

.tt-enquiry-info-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 35px 35px 35px;
}

.tt-enquiry-tag {
    display: inline-block;
    margin-bottom: 17px;
    padding-left: 14px;
    position: relative;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FA7F27;
}

    .tt-enquiry-tag:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #FA7F27;
        transform: translateY(-50%);
    }

.tt-enquiry-info h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 700;
    color: #fff;
}

    .tt-enquiry-info h2 span {
        display: block;
        color: #FA7F27;
    }

.tt-enquiry-info > .tt-enquiry-info-content > p {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
}


/* FEATURES */

.tt-enquiry-feature-list {
    margin-top: 42px;
}

.tt-enquiry-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 25px;
}

.tt-enquiry-feature-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(250,127,39,0.18);
    border: 1px solid rgba(250,127,39,0.35);
    color: #FA7F27;
    font-size: 16px;
}

.tt-enquiry-feature h4 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.tt-enquiry-feature p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255,255,255,0.68);
}


/* =====================================================
   RIGHT FORM
===================================================== */

.tt-enquiry-form-side {
    min-height: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 35px 35px 35px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

    .tt-enquiry-form-side::-webkit-scrollbar {
        width: 6px;
    }

    .tt-enquiry-form-side::-webkit-scrollbar-track {
        background: transparent;
    }

    .tt-enquiry-form-side::-webkit-scrollbar-thumb {
        background: rgba(250, 127, 39, 0.55);
        border-radius: 20px;
    }

        .tt-enquiry-form-side::-webkit-scrollbar-thumb:hover {
            background: #FA7F27;
        }

.tt-enquiry-form-header {
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eeeeee;
}

    .tt-enquiry-form-header > span {
        display: block;
        margin-bottom: 8px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.8px;
        color: #FA7F27;
    }

    .tt-enquiry-form-header h3 {
        margin: 0;
        font-size: 28px;
        line-height: 1.3;
        font-weight: 700;
        color: #1b0934;
    }

    .tt-enquiry-form-header p {
        margin: 9px 0 0;
        font-size: 13px;
        line-height: 1.7;
        color: #777;
    }


/* =====================================================
   FORM
===================================================== */

.tt-enquiry-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.tt-enquiry-form-group {
    margin-bottom: 15px;
}

    .tt-enquiry-form-group label {
        display: block;
        margin-bottom: 7px;
        font-size: 13px;
        font-weight: 500;
        color: #1b0934;
    }

    .tt-enquiry-form-group input,
    .tt-enquiry-form-group select,
    .tt-enquiry-form-group textarea {
        width: 100%;
        border: 1px solid #e6e6e6;
        border-radius: 7px;
        outline: none;
        background: #fafafa;
        color: #333;
        font-family: inherit;
        font-size: 12px;
        transition: all 0.25s ease;
    }

    .tt-enquiry-form-group input,
    .tt-enquiry-form-group select {
        height: 45px;
        padding: 0 13px;
    }

    .tt-enquiry-form-group textarea {
        min-height: 95px;
        padding: 13px;
        resize: vertical;
    }

        .tt-enquiry-form-group input:focus,
        .tt-enquiry-form-group select:focus,
        .tt-enquiry-form-group textarea:focus {
            border-color: #FA7F27;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(250,127,39,0.08);
        }

.tt-enquiry-submit-wrap {
    margin-top: 8px;
    padding-bottom: 6px;
}

.tt-enquiry-submit {
    min-width: 185px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: none;
    border-radius: 6px;
    background: #FA7F27;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tt-enquiry-submit:hover {
        background: #1b0934;
        transform: translateY(-2px);
    }


/* =====================================================
   FORM MESSAGE
===================================================== */

.tt-enquiry-message {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.6;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .tt-enquiry-box {
        max-width: 850px;
        height: min(680px, calc(100vh - 40px));
        max-height: calc(100vh - 40px);
        grid-template-columns: 0.8fr 1.2fr;
    }

    .tt-enquiry-info-content {
        padding: 50px 30px 35px;
    }

    .tt-enquiry-info h2 {
        font-size: 31px;
    }

    .tt-enquiry-form-side {
        padding: 45px 30px 35px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .tt-enquiry-modal {
        align-items: flex-start;
        padding: 15px;
        overflow-y: auto;
    }

    .tt-enquiry-box {
        grid-template-columns: 1fr;
        max-width: 600px;
        height: auto;
        max-height: none;
        margin: auto 0;
        border-radius: 14px;
    }

    .tt-enquiry-info {
        min-height: auto;
    }

    .tt-enquiry-info-content {
        padding: 42px 25px 30px;
    }

    .tt-enquiry-info h2 {
        font-size: 30px;
    }

    .tt-enquiry-feature-list {
        margin-top: 28px;
    }

    .tt-enquiry-feature {
        margin-bottom: 18px;
    }

    .tt-enquiry-form-side {
        height: auto;
        min-height: auto;
        overflow: visible;
        padding: 32px 22px 34px;
    }

    .tt-enquiry-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tt-enquiry-form-header h3 {
        font-size: 24px;
    }

    .tt-enquiry-close {
        top: 10px;
        right: 10px;
    }
}


@media (max-width: 480px) {

    .tt-enquiry-modal {
        padding: 8px;
    }

    .tt-enquiry-info-content {
        padding: 38px 20px 24px;
    }

    .tt-enquiry-info h2 {
        font-size: 27px;
    }

    .tt-enquiry-info > .tt-enquiry-info-content > p {
        font-size: 13px;
    }

    .tt-enquiry-feature-list {
        margin-top: 24px;
    }

    .tt-enquiry-feature-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 14px;
    }

    .tt-enquiry-form-side {
        padding: 28px 16px 24px;
    }

    .tt-enquiry-form-header h3 {
        font-size: 21px;
    }

    .tt-enquiry-form-header p {
        font-size: 12px;
    }

    .tt-enquiry-submit {
        width: 100%;
    }
}

/* =====================================================
   PREMIUM ENQUIRY CAPTCHA
===================================================== */

.tt-enquiry-captcha-group {
    margin-top: 10px;
}

.tt-enquiry-captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* CAPTCHA DISPLAY */

.tt-enquiry-captcha-box {
    position: relative;
    flex: 0 0 135px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(250, 127, 39, 0.25);
    border-radius: 7px;
    background: linear-gradient( 135deg, rgba(250, 127, 39, 0.12), rgba(27, 9, 52, 0.08) );
}

#ttEnquiryCaptchaText {
    position: relative;
    z-index: 2;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #1b0934;
    font-family: monospace;
    transform: rotate(-3deg);
    user-select: none;
}


/* DECORATIVE LINES */

.tt-enquiry-captcha-lines {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
}

    .tt-enquiry-captcha-lines:before,
    .tt-enquiry-captcha-lines:after {
        content: "";
        position: absolute;
        left: -10%;
        width: 120%;
        height: 1px;
        background: #FA7F27;
    }

    .tt-enquiry-captcha-lines:before {
        top: 38%;
        transform: rotate(-7deg);
    }

    .tt-enquiry-captcha-lines:after {
        top: 65%;
        background: #1b0934;
        transform: rotate(6deg);
    }


/* REFRESH BUTTON */

.tt-enquiry-captcha-refresh {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e6e6;
    border-radius: 7px;
    background: #fff;
    color: #FA7F27;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .tt-enquiry-captcha-refresh:hover {
        border-color: #FA7F27;
        background: #FA7F27;
        color: #fff;
    }

        .tt-enquiry-captcha-refresh:hover i {
            transform: rotate(180deg);
        }

    .tt-enquiry-captcha-refresh i {
        transition: transform 0.4s ease;
    }


/* CAPTCHA INPUT */

.tt-enquiry-captcha-row input {
    flex: 1;
    min-width: 0;
    height: 45px;
    padding: 0 13px;
    border: 1px solid #e6e6e6;
    border-radius: 7px;
    outline: none;
    background: #fafafa;
    color: #333;
    font-family: inherit;
    font-size: 12px;
    transition: all 0.25s ease;
}

    .tt-enquiry-captcha-row input:focus {
        border-color: #FA7F27;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(250,127,39,0.08);
    }


/* HELP TEXT */

.tt-enquiry-captcha-help {
    margin-top: 7px;
    font-size: 12px;
    color: #999;
}

    .tt-enquiry-captcha-help i {
        margin-right: 4px;
        color: #FA7F27;
    }


/* =====================================================
   CAPTCHA MOBILE RESPONSIVE
===================================================== */

@media (max-width: 480px) {

    .tt-enquiry-captcha-row {
        display: grid;
        grid-template-columns: 1fr 45px;
        gap: 9px;
    }

    .tt-enquiry-captcha-box {
        flex: none;
        width: 100%;
    }

    .tt-enquiry-captcha-refresh {
        width: 45px;
    }

    .tt-enquiry-captcha-row input {
        grid-column: 1 / -1;
        width: 100%;
    }
}
/* =====================================================
   TRIP TASTIC TOURS - PREMIUM ENQUIRY MODAL START
===================================================== */

/*Header Start*/

/* =========================================================
   TRIP TASTIC TOURS - PREMIUM HEADER
   SAFE OVERRIDE FOR EXISTING TEMPLATE
========================================================= */

/* =========================
   HEADER
========================= */

/*#myHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}*/

    /* Premium transparent background */

  /*  #myHeader:before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 180deg, rgba(5, 15, 30, 0.82) 0%, rgba(5, 15, 30, 0.52) 65%, rgba(5, 15, 30, 0) 100% );
    }*/


    /* =========================
   HEADER BOTTOM LAYOUT
========================= */

    /*#myHeader .header__bottom {
        position: relative;
        z-index: 2;
        min-height: 86px;
        display: flex;
        align-items: center;
        padding: 10px 0;
        box-sizing: border-box;
    }*/


    /* =========================
   PREMIUM LOGO ZONE
========================= */

    /*#myHeader .header__bottom > .logo {
        position: relative !important;
        width: 185px;
        height: 66px;
        min-width: 185px;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        padding: 0 !important;
        margin: 0 !important;
        float: none !important;
        text-align: left !important;
        z-index: 10;
        transition: all 0.3s ease;
    }
*/

        /* Logo Image */

       /* #myHeader .header__bottom > .logo img,
        #myHeader .header__bottom > .logo .mobile-logo {
            display: block;
            width: 100% !important;
            max-width: 185px !important;
            height: 66px !important;
            max-height: 66px !important;
            object-fit: contain;
            object-position: left center;
            opacity: 1;
            filter: brightness(1.12) contrast(1.08) saturate(1.08) drop-shadow(0 5px 14px rgba(0, 0, 0, 0.45));
            transition: transform 0.3s ease, filter 0.3s ease;
        }*/


        /* Subtle premium hover */

      /*  #myHeader .header__bottom > .logo:hover img {
            transform: scale(1.025);
            filter: brightness(1.2) contrast(1.1) saturate(1.12) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
        }*/


/* =========================
   MENU AREA
========================= */

/* #myHeader .header__bottom > .menu {
            position: relative;
            flex: 1;
            margin-left: 34px !important;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            min-width: 0;
        }*/


/* Main Menu */

/* #myHeader .header__bottom > .menu .scroll_wrap > ul {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 2px;
                margin: 0;
                padding: 0;
            }*/


/* Menu Items */

/*  #myHeader .header__bottom > .menu .scroll_wrap > ul > li {
                    position: relative;
                    float: none;
                }*/


/* Main Menu Links */

/* #myHeader .header__bottom > .menu .scroll_wrap > ul > li > a {
                        position: relative;
                        display: flex;
                        align-items: center;
                        min-height: 44px;
                        padding: 0 11px;
                        color: rgba(255, 255, 255, 0.92);
                        font-size: 12px;
                        font-weight: 600;
                        letter-spacing: 0.2px;
                        text-transform: uppercase;
                        white-space: nowrap;
                        transition: color 0.25s ease, background 0.25s ease;
                    }*/


/* Gold line animation */

/* #myHeader .header__bottom > .menu .scroll_wrap > ul > li > a:after {
                            content: "";
                            position: absolute;
                            left: 11px;
                            right: 11px;
                            bottom: 4px;
                            height: 1px;
                            background: #d6b36a;
                            transform: scaleX(0);
                            transform-origin: right center;
                            transition: transform 0.3s ease;
                        }*/


/*  #myHeader .header__bottom > .menu .scroll_wrap > ul > li:hover > a {
                        color: #e3bd72;
                    }


                        #myHeader .header__bottom > .menu .scroll_wrap > ul > li:hover > a:after,
                        #myHeader .header__bottom > .menu .scroll_wrap > ul > li > a.active:after {
                            transform: scaleX(1);
                            transform-origin: left center;
                        }


                    #myHeader .header__bottom > .menu .scroll_wrap > ul > li > a.active {
                        color: #e3bd72;
                    }
*/

/* =========================
   DROPDOWN
========================= */

/* #myHeader .dropdown_li {
        position: relative;
    }


    #myHeader .dropdown-menu {
        border: 1px solid rgba(214, 179, 106, 0.22);
        background: linear-gradient( 145deg, rgba(13, 25, 43, 0.98), rgba(6, 15, 28, 0.98) ) !important;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
        overflow: hidden;
        padding: 8px 0 !important;
    }


        #myHeader .dropdown-menu ul {
            display: block !important;
        }


            #myHeader .dropdown-menu ul li {
                display: block;
                width: 100%;
            }


                #myHeader .dropdown-menu ul li a {
                    display: block;
                    padding: 11px 20px;
                    color: rgba(255, 255, 255, 0.82);
                    font-size: 12px;
                    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
                }


                    #myHeader .dropdown-menu ul li a:hover {
                        color: #e3bd72;
                        background: rgba(214, 179, 106, 0.08);
                        padding-left: 25px;
                    }
*/

/* =========================
   HAMBURGER BUTTON
========================= */

/*  #myHeader .mobile_btn {
        position: relative;
        width: 42px;
        height: 42px;
        padding: 10px;
        display: none;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 50%;
        box-sizing: border-box;
        transition: all 0.3s ease;
    }*/


/* #myHeader .mobile_btn span {
            width: 20px;
            height: 2px;
            display: block;
            margin: 4px auto;
            background: #fff !important;
            border-radius: 10px;
            transition: all 0.3s ease;
        }


        #myHeader .mobile_btn:hover {
            border-color: #d6b36a;
            background: rgba(214, 179, 106, 0.12);
        }
*/

/* =========================================================
   STICKY / SCROLLED HEADER
========================================================= */

/* #myHeader.tt-header-scrolled {
        position: fixed;
        background: rgba(7, 17, 32, 0.96);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }


        #myHeader.tt-header-scrolled:before {
            opacity: 0;
        }


        #myHeader.tt-header-scrolled .header__bottom {
            min-height: 74px;
        }


            #myHeader.tt-header-scrolled .header__bottom > .logo {
                width: 165px;
                min-width: 165px;
                height: 58px;
            }


                #myHeader.tt-header-scrolled .header__bottom > .logo img,
                #myHeader.tt-header-scrolled .header__bottom > .logo .mobile-logo {
                    max-width: 165px !important;
                    width: 165px !important;
                    height: 58px !important;
                }
*/

/* =========================================================
   TABLET
========================================================= */

/*@media screen and (max-width: 1199px) {

    #myHeader .header__bottom {
        min-height: 78px;
    }


        #myHeader .header__bottom > .logo {
            width: 160px;
            min-width: 160px;
            height: 58px;
        }


            #myHeader .header__bottom > .logo img,
            #myHeader .header__bottom > .logo .mobile-logo {
                width: 160px !important;
                max-width: 160px !important;
                height: 58px !important;
            }


     #myHeader .header__bottom > .menu {
            margin-left: 15px !important;
        }


            #myHeader .header__bottom > .menu .scroll_wrap > ul > li > a {
                padding-left: 7px;
                padding-right: 7px;
                font-size: 10px;
            }
}
*/

/* =========================================================
   MOBILE MENU
========================================================= */

/*@media screen and (max-width: 1076px) {

    #myHeader .header__bottom {
        justify-content: space-between;
        min-height: 72px;
        padding: 7px 0;
    }*/


        /* Keep logo visible */

        /*#myHeader .header__bottom > .logo {
            width: 155px;
            min-width: 155px;
            height: 56px;
            position: relative !important;
            left: auto !important;
            top: auto !important;
        }


            #myHeader .header__bottom > .logo img,
            #myHeader .header__bottom > .logo .mobile-logo {
                width: 155px !important;
                max-width: 155px !important;
                height: 56px !important;
            }*/


    /* Existing fullscreen menu */

     /*#myHeader .header__bottom > .menu {
            flex: none;
            position: fixed !important;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: 0 !important;
            background: linear-gradient( 135deg, #071120, #0d1d31 ) !important;
            z-index: 9999;
        }


       #myHeader .header__bottom > .menu .scroll {
                padding-top: 65px;
            }


            #myHeader .header__bottom > .menu .scroll_wrap > ul {
                display: block;
                text-align: center;
            }


                #myHeader .header__bottom > .menu .scroll_wrap > ul > li {
                    width: 100%;
                }


                    #myHeader .header__bottom > .menu .scroll_wrap > ul > li > a {
                        justify-content: center;
                        min-height: 52px;
                        font-size: 13px;
                        padding: 0 20px;
                    }


    #myHeader .mobile_btn {
        display: block !important;
        position: relative !important;
        right: auto !important;
        z-index: 20;
    }
}*/


/* =========================================================
   SMALL MOBILE
========================================================= */

/*@media screen and (max-width: 575px) {*/

    /*#myHeader .wrap,
    #myHeader .wrap_float {
        width: 100%;
    }*/


    /*#myHeader .header__bottom {
        min-height: 66px;
        padding: 6px 15px;
    }


        #myHeader .header__bottom > .logo {
            width: 140px;
            min-width: 140px;
            height: 52px;
        }


            #myHeader .header__bottom > .logo img,
            #myHeader .header__bottom > .logo .mobile-logo {
                width: 140px !important;
                max-width: 140px !important;
                height: 52px !important;
            }*/


    /*#myHeader .mobile_btn {
        width: 40px;
        height: 40px;
        padding: 9px;
    }


    #myHeader .header__bottom > .menu .scroll_wrap > ul > li > a {
        font-size: 12px;
        min-height: 48px;
    }*/
/*}*/


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

/*@media screen and (max-width: 375px) {

    #myHeader .header__bottom {
        padding-left: 10px;
        padding-right: 10px;
    }


        #myHeader .header__bottom > .logo {
            width: 125px;
            min-width: 125px;
            height: 48px;
        }


            #myHeader .header__bottom > .logo img,
            #myHeader .header__bottom > .logo .mobile-logo {
                width: 125px !important;
                max-width: 125px !important;
                height: 48px !important;
            }
}
*//*header End*/
