/* =========================================================
   TRAVEL PLANNERZ - FINAL HOMEPAGE CSS
   CLEAN VERSION - REPLACE ALL OLD HOMEPAGE CSS
========================================================= */

:root {
    --tp-orange: #f4512a;
    --tp-orange-dark: #dc3e1d;
    --tp-blue: #168cf5;
    --tp-red: #ed1c24;
    --tp-dark: #10251f;
    --tp-text: #5d6965;
    --tp-light: #f7f8f5;
    --tp-white: #ffffff;
    --tp-border: #e6e9e6;
    --tp-shadow: 0 20px 55px rgba(0,0,0,.12);
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    width: 100%;

    font-family: "DM Sans", Arial, sans-serif;

    color: var(--tp-text);

    background: #fff;

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.tp-container {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.tp-topbar {
    width: 100%;
    min-height: 46px;

    background: #062544;

    color: #fff;

    font-size: 13px;
}

.tp-topbar-inner {
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.tp-top-left,
.tp-top-right {
    display: flex;
    align-items: center;

    gap: 20px;
}

.tp-topbar a {
    color: #fff;
}

.tp-divider {
    width: 1px;
    height: 18px;

    background: rgba(255,255,255,.35);
}


/* =========================================================
   HEADER
========================================================= */

.tp-header {
    position: relative;

    z-index: 1000;

    width: 100%;

    background: #fff;
}

.tp-header-inner {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.tp-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.tp-logo img {
    width: 210px;
    max-height: 75px;

    object-fit: contain;
}


/* =========================================================
   NAVIGATION
========================================================= */

.tp-navigation {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.tp-navigation > a,
.tp-nav-dropdown > a {
    position: relative;

    height: 105px;

    display: flex;
    align-items: center;

    gap: 6px;

    color: #172334;

    font-size: 15px;
    font-weight: 600;

    transition: .25s ease;
}

.tp-navigation > a:hover,
.tp-nav-dropdown > a:hover {
    color: var(--tp-orange);
}

.tp-navigation > a.active {
    color: var(--tp-orange);
}

.tp-navigation > a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 22px;

    height: 2px;

    background: var(--tp-orange);
}


/* =========================================================
   NAV DROPDOWN
========================================================= */

.tp-nav-dropdown {
    position: relative;
}

.tp-dropdown-menu {
    position: absolute;

    top: calc(100% - 5px);
    left: 50%;

    min-width: 230px;

    padding: 10px;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 18px 45px rgba(0,0,0,.14);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform: translate(-50%, 10px);

    transition: .25s ease;
}

.tp-nav-dropdown:hover .tp-dropdown-menu {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: translate(-50%, 0);
}

.tp-dropdown-menu a {
    display: block;

    padding: 11px 14px;

    color: #172334;

    font-size: 14px;

    border-radius: 6px;
}

.tp-dropdown-menu a:hover {
    background: #f5f7fa;

    color: var(--tp-orange);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.tp-header-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.tp-language-dropdown {
    position: relative;
}

.tp-language-button {
    height: 48px;

    padding: 0 15px;

    border: 1px solid #dce1e7;

    border-radius: 8px;

    background: #fff;

    font-size: 14px;
    font-weight: 600;
}

.tp-language-menu {
    position: absolute;

    top: calc(100% + 7px);
    right: 0;

    min-width: 130px;

    padding: 8px;

    background: #fff;

    border-radius: 9px;

    box-shadow: 0 15px 35px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition: .2s ease;
}

.tp-language-dropdown:hover .tp-language-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.tp-language-menu a {
    display: block;

    padding: 9px;

    border-radius: 6px;
}

.tp-language-menu a:hover {
    background: #f5f7fa;
}


/* =========================================================
   SIGN IN
========================================================= */

.tp-signin {
    height: 48px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    border: 1px solid #dce1e7;

    border-radius: 8px;

    color: #172334;

    font-size: 14px;
    font-weight: 600;
}

.tp-signin:hover {
    border-color: var(--tp-orange);

    color: var(--tp-orange);
}


/* =========================================================
   BOOK NOW
========================================================= */

.tp-header-button {
    height: 48px;

    padding: 0 22px;

    display: flex;
    align-items: center;

    gap: 8px;

    background: var(--tp-orange);

    color: #fff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: .25s ease;
}

.tp-header-button:hover {
    background: var(--tp-orange-dark);

    transform: translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.tp-hero {
    position: relative;

    width: 100%;

    height: 625px;

    overflow: visible;

    background: #101817;
}

.tp-hero-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    background-image:
        linear-gradient(
            90deg,
            rgba(3,18,17,.88) 0%,
            rgba(3,18,17,.70) 35%,
            rgba(3,18,17,.30) 68%,
            rgba(3,18,17,.10) 100%
        ),
        url("../images/hero.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.tp-hero-container {
    position: relative;

    z-index: 2;

    width: min(1380px, calc(100% - 80px));

    height: 625px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.tp-hero-content {
    position: relative;

    z-index: 5;

    width: 520px;

    padding-bottom: 20px;

    color: #fff;
}

.tp-small-label {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: #ff512f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.tp-small-label::before {
    content: "";

    width: 28px;
    height: 2px;

    background: #ff512f;
}

.tp-hero-content h1 {
    margin: 0 0 22px;

    max-width: 500px;

    color: #fff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(58px, 5vw, 76px);

    line-height: .96;

    font-weight: 700;

    letter-spacing: -2px;
}

.tp-hero-content h1 span {
    display: block;

    color: #fff;
}

.tp-hero-content p {
    max-width: 440px;

    margin: 0 0 28px;

    color: rgba(255,255,255,.90);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.tp-hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;
}

.tp-btn {
    min-height: 46px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 700;

    transition: .25s ease;
}

.tp-btn-primary {
    background: var(--tp-orange);

    color: #fff;

    border: 1px solid var(--tp-orange);
}

.tp-btn-primary:hover {
    background: var(--tp-orange-dark);
}

.tp-btn-outline {
    background: transparent;

    color: #fff;

    border: 1px solid rgba(255,255,255,.75);
}

.tp-btn-outline:hover {
    background: #fff;

    color: #172334;
}


/* =========================================================
   BOOKING CARD - IMPORTANT
========================================================= */

.tp-booking-card {
    position: absolute;

    z-index: 50;

    top: 50%;

    right: 4%;

    left: auto;

    transform: translateY(-50%);

    width: min(850px, 47vw);

    min-width: 700px;

    padding: 18px;

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 25px 65px rgba(0,0,0,.25);

    overflow: visible;
}


/* =========================================================
   BOOKING TABS
========================================================= */

.tp-booking-tabs {
    display: flex;
    align-items: center;

    gap: 8px;

    width: 100%;

    padding-bottom: 14px;

    border-bottom: 1px solid #ececec;

    overflow-x: auto;

    scrollbar-width: none;
}

.tp-booking-tabs::-webkit-scrollbar {
    display: none;
}

.tp-booking-tab {
    flex: 0 0 auto;

    height: 40px;

    padding: 0 16px;

    border: 1px solid #ddd;

    border-radius: 22px;

    background: #fff;

    color: #222;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    transition: .2s ease;
}

.tp-booking-tab:hover {
    border-color: var(--tp-blue);

    color: var(--tp-blue);
}

.tp-booking-tab.tp-booking-active {
    background: var(--tp-blue);

    border-color: var(--tp-blue);

    color: #fff;

    box-shadow: 0 5px 15px rgba(22,140,245,.20);
}


/* =========================================================
   BOOKING FORM
========================================================= */

.tp-booking-form {
    display: grid;

    grid-template-columns:
        1fr
        28px
        1fr
        1fr
        1fr
        .85fr
        .85fr
        105px;

    align-items: end;

    gap: 8px;

    width: 100%;

    padding-top: 15px;
}


/* =========================================================
   BOOKING FIELD
========================================================= */

.tp-booking-field {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.tp-booking-field label {
    display: block;

    min-height: 16px;

    margin: 0;

    color: #404040;

    font-size: 10px;

    font-weight: 600;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.tp-booking-field input,
.tp-booking-field select {
    width: 100%;

    height: 44px;

    padding: 0 9px;

    border: 1px solid #d8dce2;

    border-radius: 7px;

    background: #fff;

    color: #222;

    font-size: 12px;

    outline: none;

    appearance: auto;
}

.tp-booking-field input:focus,
.tp-booking-field select:focus {
    border-color: var(--tp-blue);

    box-shadow: 0 0 0 2px rgba(22,140,245,.08);
}


/* =========================================================
   FROM / TO
========================================================= */

#tpFromField,
#tpToField {
    min-width: 0;
}


/* =========================================================
   SWAP
========================================================= */

.tp-swap-btn {
    align-self: flex-end;

    width: 28px;
    height: 28px;

    margin-bottom: 8px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d9dce1;

    border-radius: 50%;

    background: #fff;

    color: var(--tp-blue);

    font-size: 13px;

    flex-shrink: 0;
}

.tp-swap-btn:hover {
    background: var(--tp-blue);

    color: #fff;

    border-color: var(--tp-blue);
}


/* =========================================================
   SEARCH
========================================================= */

.tp-booking-search {
    width: 105px;

    height: 44px;

    padding: 0;

    border: 0;

    border-radius: 7px;

    background: var(--tp-red);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition: .2s ease;
}

.tp-booking-search:hover {
    background: #c9141c;
}


/* =========================================================
   BOOKING OPTIONS
========================================================= */

.tp-booking-options {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 13px;

    padding-top: 12px;

    border-top: 1px solid #edf0f3;

    color: #555;

    font-size: 11px;
}

.tp-booking-options label {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    white-space: nowrap;
}

.tp-booking-options input {
    margin: 0;

    accent-color: var(--tp-blue);
}


/* =========================================================
   COMMON SECTIONS
========================================================= */

.tp-destinations,
.tp-activities,
.tp-adventure,
.tp-tours,
.tp-why,
.tp-packages,
.tp-testimonials,
.tp-instagram,
.tp-blog {
    padding: 100px 0;
}

.tp-destinations {
    padding-top: 150px;

    background: #fff;
}

.tp-section-heading {
    margin-bottom: 45px;
}

.tp-section-heading h2,
.tp-adventure-content h2 {
    margin: 0 0 15px;

    color: var(--tp-dark);

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(36px, 4vw, 50px);

    line-height: 1.12;
}

.tp-section-heading h2 strong,
.tp-adventure-content h2 strong {
    color: var(--tp-orange);
}

.tp-section-heading p {
    max-width: 650px;

    margin: 0;

    color: #7a8580;

    font-size: 15px;
}

.tp-heading-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;
}

.tp-view-all {
    color: var(--tp-orange);

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   DESTINATIONS
========================================================= */

.tp-destination-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    grid-auto-rows: 240px;

    gap: 15px;
}

.tp-destination-card {
    position: relative;

    min-height: 240px;

    overflow: hidden;

    border-radius: 6px;
}

.tp-destination-large {
    grid-column: span 2;

    grid-row: span 2;

    min-height: 495px;
}

.tp-destination-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.tp-destination-card:hover img {
    transform: scale(1.07);
}

.tp-destination-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.78),
        rgba(0,0,0,.05) 70%
    );
}

.tp-destination-overlay {
    position: absolute;

    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 23px;

    color: #fff;
}

.tp-destination-overlay span {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.tp-destination-overlay h3 {
    margin: 5px 0;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 28px;

    line-height: 1.1;
}

.tp-destination-overlay p {
    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: 12px;
}


/* =========================================================
   ACTIVITIES
========================================================= */

.tp-activities,
.tp-tours,
.tp-packages,
.tp-blog {
    background: var(--tp-light);
}

.tp-activity-grid,
.tp-tour-grid,
.tp-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.tp-activity-card,
.tp-why-card {
    padding: 30px 25px;

    background: #fff;

    border: 1px solid var(--tp-border);

    transition: .3s ease;
}

.tp-activity-card:hover,
.tp-why-card:hover {
    transform: translateY(-6px);

    border-color: transparent;

    box-shadow: var(--tp-shadow);
}

.tp-activity-icon,
.tp-why-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0ea;

    color: var(--tp-orange);

    font-size: 24px;
}

.tp-activity-card h3,
.tp-why-card h3 {
    margin: 0 0 8px;

    color: var(--tp-dark);

    font-size: 18px;
}

.tp-activity-card p,
.tp-why-card p {
    margin: 0 0 15px;

    color: #7b8581;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   ADVENTURE
========================================================= */

.tp-adventure-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;
}

.tp-adventure-image {
    position: relative;

    padding-right: 35px;
}

.tp-adventure-image img {
    width: 100%;
    height: 540px;

    object-fit: cover;

    border-radius: 6px;
}

.tp-image-badge {
    position: absolute;

    right: 0;
    bottom: 35px;

    width: 175px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: var(--tp-orange);

    color: #fff;

    border-radius: 5px;

    box-shadow: var(--tp-shadow);
}

.tp-image-badge strong {
    font-family: "Playfair Display", Georgia, serif;

    font-size: 36px;

    line-height: 1;
}

.tp-image-badge span {
    font-size: 11px;

    line-height: 1.3;
}

.tp-adventure-content > p {
    margin: 0 0 25px;

    color: #77827d;

    font-size: 15px;

    line-height: 1.8;
}

.tp-feature-item {
    display: flex;

    gap: 13px;

    margin-bottom: 18px;
}

.tp-feature-item > span {
    width: 26px;
    height: 26px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0ea;

    color: var(--tp-orange);

    font-size: 12px;

    font-weight: 800;
}

.tp-feature-item h3 {
    margin: 0 0 2px;

    color: var(--tp-dark);

    font-size: 15px;
}

.tp-feature-item p {
    margin: 0;

    color: #808b86;

    font-size: 12px;
}


/* =========================================================
   TOURS
========================================================= */

.tp-tour-card {
    overflow: hidden;

    background: #fff;

    border-radius: 6px;

    box-shadow: 0 5px 20px rgba(0,0,0,.04);

    transition: .3s ease;
}

.tp-tour-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--tp-shadow);
}

.tp-tour-image {
    position: relative;

    height: 235px;

    overflow: hidden;
}

.tp-tour-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.tp-tour-card:hover .tp-tour-image img {
    transform: scale(1.06);
}

.tp-tour-badge {
    position: absolute;

    top: 13px;
    left: 13px;

    padding: 6px 9px;

    background: var(--tp-orange);

    color: #fff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .7px;
}

.tp-tour-content {
    padding: 20px;
}

.tp-tour-location {
    color: var(--tp-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.tp-tour-content h3 {
    margin: 7px 0 12px;

    color: var(--tp-dark);

    font-size: 18px;

    line-height: 1.35;
}

.tp-tour-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    padding-bottom: 13px;

    border-bottom: 1px solid var(--tp-border);

    color: #7e8984;

    font-size: 10px;
}

.tp-tour-bottom {
    padding-top: 13px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;
}

.tp-tour-bottom small {
    display: block;

    color: #9ba39f;

    font-size: 9px;
}

.tp-tour-bottom strong {
    display: block;

    color: var(--tp-dark);

    font-size: 18px;
}

.tp-tour-bottom a {
    color: var(--tp-orange);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   STATS
========================================================= */

.tp-stats {
    padding: 50px 0;

    background: var(--tp-orange);

    color: #fff;
}

.tp-stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.tp-stat {
    padding: 5px 20px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.3);
}

.tp-stat:last-child {
    border-right: 0;
}

.tp-stat strong {
    display: block;

    margin-bottom: 4px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 40px;

    line-height: 1.1;
}

.tp-stat span {
    font-size: 12px;
}


/* =========================================================
   PACKAGES
========================================================= */

.tp-package-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.tp-package-card {
    position: relative;

    min-height: 460px;

    overflow: hidden;

    border-radius: 6px;
}

.tp-package-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.tp-package-card:hover img {
    transform: scale(1.06);
}

.tp-package-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(5,25,20,.9),
        rgba(5,25,20,.05) 70%
    );
}

.tp-package-content {
    position: absolute;

    z-index: 2;

    left: 23px;
    right: 23px;
    bottom: 23px;

    color: #fff;
}

.tp-package-content > span {
    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.tp-package-content h3 {
    margin: 6px 0;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 27px;

    line-height: 1.2;
}

.tp-package-content p {
    margin: 0 0 12px;

    color: rgba(255,255,255,.82);

    font-size: 12px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.tp-testimonial-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.tp-testimonial-card {
    padding: 30px;

    background: var(--tp-light);

    border-radius: 6px;
}

.tp-stars {
    margin-bottom: 15px;

    color: var(--tp-orange);

    letter-spacing: 2px;

    font-size: 13px;
}

.tp-testimonial-card > p {
    margin: 0 0 22px;

    color: #66726d;

    font-size: 14px;

    line-height: 1.8;
}

.tp-client {
    display: flex;

    align-items: center;

    gap: 11px;
}

.tp-client-avatar {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--tp-orange);

    color: #fff;

    font-weight: 800;
}

.tp-client strong {
    display: block;

    color: var(--tp-dark);

    font-size: 13px;
}

.tp-client span {
    font-size: 10px;

    color: #8b9490;
}


/* =========================================================
   CTA
========================================================= */

.tp-cta {
    padding: 70px 0;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(13,47,39,.95),
            rgba(13,47,39,.82)
        ),
        url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;

    background-position: center;
}

.tp-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.tp-cta span {
    display: block;

    margin-bottom: 7px;

    color: var(--tp-orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.tp-cta h2 {
    margin: 0;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.1;
}

.tp-cta h2 strong {
    color: var(--tp-orange);
}

.tp-cta p {
    margin: 7px 0 0;

    color: rgba(255,255,255,.78);

    font-size: 14px;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.tp-instagram {
    padding-bottom: 80px;
}

.tp-instagram-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 8px;
}

.tp-instagram-item {
    position: relative;

    height: 175px;

    overflow: hidden;
}

.tp-instagram-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s ease;
}

.tp-instagram-item:hover img {
    transform: scale(1.08);
}

.tp-instagram-item span {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.5);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    opacity: 0;

    transition: .25s ease;
}

.tp-instagram-item:hover span {
    opacity: 1;
}


/* =========================================================
   BLOG
========================================================= */

.tp-blog-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.tp-blog-card {
    overflow: hidden;

    background: #fff;
}

.tp-blog-card > a {
    display: block;

    height: 240px;

    overflow: hidden;
}

.tp-blog-card > a img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s ease;
}

.tp-blog-card:hover > a img {
    transform: scale(1.06);
}

.tp-blog-content {
    padding: 23px;
}

.tp-blog-content > span {
    color: var(--tp-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.tp-blog-content h3 {
    margin: 7px 0 9px;

    color: var(--tp-dark);

    font-size: 19px;

    line-height: 1.4;
}

.tp-blog-content p {
    margin: 0 0 12px;

    color: #7c8782;

    font-size: 12px;

    line-height: 1.7;
}

.tp-blog-content > a {
    color: var(--tp-orange);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   FOOTER
========================================================= */

.tp-footer {
    padding: 70px 0 0;

    background: var(--tp-dark);

    color: #fff;
}

.tp-footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 55px;
}

.tp-footer-brand img {
    width: 175px;

    max-height: 60px;

    object-fit: contain;

    object-position: left center;

    margin-bottom: 12px;

    filter: brightness(0) invert(1);
}

.tp-footer-tagline {
    margin-bottom: 10px;

    color: var(--tp-orange);

    font-size: 14px;

    font-weight: 700;
}

.tp-footer-description {
    max-width: 330px;

    color: rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.8;
}

.tp-footer-column h4 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 15px;
}

.tp-footer-column a,
.tp-footer-column p {
    display: block;

    margin: 0 0 10px;

    color: rgba(255,255,255,.63);

    font-size: 12px;

    line-height: 1.7;
}

.tp-footer-column a:hover {
    color: var(--tp-orange);
}

.tp-footer-bottom {
    min-height: 65px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.45);

    font-size: 11px;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.tp-mobile-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid #ddd;

    border-radius: 8px;

    background: #fff;
}

.tp-mobile-button span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: #172334;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.tp-mobile-menu {
    display: none;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1400px) {

    .tp-container,
    .tp-hero-container {
        width: min(1320px, calc(100% - 60px));
    }

    .tp-navigation {
        gap: 22px;
    }

    .tp-navigation > a,
    .tp-nav-dropdown > a {
        font-size: 14px;
    }

    .tp-booking-card {
        right: 3%;

        width: 780px;

        min-width: 0;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .tp-header-actions {
        gap: 6px;
    }

    .tp-language-button {
        padding: 0 10px;
    }

    .tp-signin {
        padding: 0 12px;
    }

    .tp-header-button {
        padding: 0 15px;
    }

    .tp-navigation {
        gap: 15px;
    }

    .tp-booking-card {
        right: 2%;

        width: 690px;
    }

    .tp-booking-form {
        grid-template-columns:
            1fr
            24px
            1fr
            1fr
            1fr
            .8fr
            .8fr
            90px;

        gap: 6px;
    }

    .tp-booking-field input,
    .tp-booking-field select {
        font-size: 11px;
    }

    .tp-booking-search {
        width: 90px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .tp-navigation,
    .tp-header-actions {
        display: none;
    }

    .tp-mobile-button {
        display: block;
    }

    .tp-header-inner {
        min-height: 85px;
    }

    .tp-hero {
        height: auto;

        min-height: 900px;

        padding: 70px 0 40px;
    }

    .tp-hero-container {
        width: calc(100% - 40px);

        height: auto;

        display: block;
    }

    .tp-hero-content {
        width: 100%;

        max-width: 560px;

        padding: 0;
    }

    .tp-hero-content h1 {
        font-size: 60px;
    }

    .tp-booking-card {
        position: relative;

        top: auto;
        right: auto;

        transform: none;

        width: 100%;

        margin-top: 55px;

        min-width: 0;
    }

    .tp-booking-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .tp-booking-search {
        width: 100%;
    }

    .tp-booking-form > .tp-booking-search {
        grid-column: span 3;
    }

    .tp-swap-btn {
        display: none;
    }

    .tp-activity-grid,
    .tp-tour-grid,
    .tp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .tp-container {
        width: calc(100% - 30px);
    }

    /* TOP BAR */

    .tp-topbar {
        padding: 8px 0;
    }

    .tp-topbar-inner {
        min-height: auto;

        display: block;
    }

    .tp-top-left,
    .tp-top-right {
        flex-wrap: wrap;

        gap: 5px 12px;

        font-size: 10px;
    }

    .tp-top-right {
        margin-top: 3px;
    }

    /* HEADER */

    .tp-header-inner {
        min-height: 72px;
    }

    .tp-logo img {
        width: 160px;
    }

    /* HERO */

    .tp-hero {
        min-height: auto;

        padding: 55px 0 30px;
    }

    .tp-hero-container {
        width: calc(100% - 30px);
    }

    .tp-hero-content {
        width: 100%;
    }

    .tp-small-label {
        margin-bottom: 16px;

        font-size: 10px;
    }

    .tp-hero-content h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }

    .tp-hero-content p {
        font-size: 14px;
    }

    .tp-hero-buttons {
        flex-wrap: wrap;
    }

    .tp-btn {
        min-height: 45px;

        padding: 0 16px;

        font-size: 13px;
    }

    /* BOOKING */

    .tp-booking-card {
        margin-top: 40px;

        padding: 13px;

        border-radius: 14px;
    }

    .tp-booking-tabs {
        gap: 5px;
    }

    .tp-booking-tab {
        height: 36px;

        padding: 0 12px;

        font-size: 11px;
    }

    .tp-booking-form {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .tp-booking-form > .tp-booking-search {
        grid-column: 1 / -1;
    }

    .tp-booking-field {
        width: 100%;
    }

    .tp-booking-field input,
    .tp-booking-field select {
        height: 43px;
    }

    .tp-booking-options {
        gap: 9px 13px;

        font-size: 10px;
    }

    /* SECTIONS */

    .tp-destinations,
    .tp-activities,
    .tp-adventure,
    .tp-tours,
    .tp-why,
    .tp-packages,
    .tp-testimonials,
    .tp-instagram,
    .tp-blog {
        padding: 70px 0;
    }

    .tp-destinations {
        padding-top: 80px;
    }

    .tp-heading-row {
        display: block;
    }

    .tp-view-all {
        display: inline-block;

        margin-top: 12px;
    }

    .tp-section-heading {
        margin-bottom: 30px;
    }

    .tp-section-heading h2,
    .tp-adventure-content h2 {
        font-size: 34px;
    }

    .tp-destination-grid {
        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 200px;
    }

    .tp-destination-large {
        grid-column: span 2;

        grid-row: span 1;

        min-height: 250px;
    }

    .tp-destination-card {
        min-height: 200px;
    }

    .tp-destination-overlay {
        padding: 16px;
    }

    .tp-destination-overlay h3 {
        font-size: 22px;
    }

    .tp-activity-grid,
    .tp-tour-grid,
    .tp-why-grid,
    .tp-package-grid,
    .tp-testimonial-grid,
    .tp-blog-grid {
        grid-template-columns: 1fr;
    }

    .tp-adventure-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .tp-adventure-image {
        padding-right: 20px;
    }

    .tp-adventure-image img {
        height: 400px;
    }

    .tp-image-badge {
        right: 0;

        bottom: 20px;

        width: 150px;
    }

    .tp-stats-grid {
        grid-template-columns: 1fr 1fr;

        row-gap: 25px;
    }

    .tp-stat {
        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,.25);

        padding-bottom: 18px;
    }

    .tp-stat:nth-child(3),
    .tp-stat:nth-child(4) {
        border-bottom: 0;
    }

    .tp-stat strong {
        font-size: 30px;
    }

    .tp-package-card {
        min-height: 420px;
    }

    .tp-cta-inner {
        display: block;
    }

    .tp-cta .tp-btn {
        margin-top: 22px;
    }

    .tp-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tp-instagram-item {
        height: 120px;
    }

    .tp-footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .tp-footer-bottom {
        display: block;

        padding: 18px 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tp-container {
        width: calc(100% - 24px);
    }

    .tp-logo img {
        width: 145px;
    }

    .tp-hero {
        padding-top: 45px;
    }

    .tp-hero-content h1 {
        font-size: 40px;
    }

    .tp-hero-content p {
        font-size: 13px;
    }

    .tp-booking-card {
        padding: 11px;
    }

    .tp-booking-tabs {
        flex-wrap: wrap;
    }

    .tp-booking-form {
        grid-template-columns: 1fr;
    }

    .tp-booking-form > .tp-booking-search {
        grid-column: auto;
    }

    .tp-booking-search {
        height: 44px;
    }

    .tp-destination-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 220px;
    }

    .tp-destination-large {
        grid-column: auto;

        min-height: 260px;
    }

    .tp-destination-card {
        min-height: 220px;
    }

    .tp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tp-stat strong {
        font-size: 26px;
    }

    .tp-stat span {
        font-size: 9px;
    }

    .tp-instagram-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tp-instagram-item {
        height: 145px;
    }
}