* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #14212B;
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.22;
}

.tr_topline {
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0 25px 0;
    z-index: 1001;
}

.tr_topline_container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tr_topline_left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.tr_topline_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.tr_topline_item i {
    color: #FCA702;
}

.tr_lang_switch {
    display: flex;
    gap: 12px;
}

.tr_lang_switch a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.tr_lang_switch a:hover,
.tr_lang_switch a.tr_active {
    opacity: 1;
    color: #FCA702;
}

.tr_header {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.tr_header_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tr_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.tr_logo_img {
    height: 46px;
    width: auto;
}

.tr_logo_text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}

.tr_nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tr_nav_menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.tr_nav_menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.tr_nav_menu a:hover {
    color: #FCA702;
}

.tr_nav_menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FCA702;
    transition: width 0.3s;
}

.tr_nav_menu a:hover:after {
    width: 100%;
}

.tr_btn_book {
    background: #FCA702;
    color: #051242;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.tr_btn_book:hover {
    background: #051242;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tr_menu_toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.tr_banner {
    background: linear-gradient(rgba(8, 39, 64, 0.5), rgba(0, 0, 0, 0.4)), url('../images/slider-1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 260px 0 240px 0;
}

.tr_banner_container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.tr_banner_content {
    max-width: 700px;
    width: 100%;
}

.tr_subtitle {
    color: #FCA702;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tr_subtitle:before {
    content: '←';
    font-size: 24px;
}

.tr_title {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.tr_banner_text {
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}

.tr_banner_btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tr_btn_secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #FCA702;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.tr_btn_secondary:hover {
    background: #FCA702;
    color: #051242;
}

.tr_section {
    padding: 100px 0;
}

.tr_section_light {
    background: #fff;
}

.tr_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tr_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.tr_section_header .tr_subtitle {
    justify-content: center;
}

.tr_section_title {
    font-family: 'Poppins', sans-serif;
    color: #051242;
    text-transform: uppercase;
    font-size: 42px;
    margin: 15px 0;
}

.tr_section_text {
    max-width: 700px;
    margin: 0 auto;
    color: #14212B;
    font-size: 18px;
}

.tr_features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tr_feature_card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
    margin-top: -150px;
}

.tr_feature_card:hover {
    transform: translateY(-10px);
}

.tr_feature_number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: rgba(5, 18, 66, 0.05);
}

.tr_feature_icon {
    color: #FCA702;
    font-size: 30px;
    margin-bottom: 20px;
}

.tr_feature_title {
    font-family: 'Poppins', sans-serif;
    color: #051242;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.tr_about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tr_about_img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tr_list {
    list-style: none;
    margin: 20px 0;
}

.tr_list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tr_list li:before {
    content: '✓';
    color: #FCA702;
    font-weight: bold;
}

.tr_tours_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tr_tour_card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.tr_tour_card:hover {
    transform: translateY(-10px);
}

.tr_tour_img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tr_tour_content {
    padding: 25px;
}

.tr_tour_content a {
    justify-content: center;
}

.tr_tour_name {
    font-family: 'Poppins', sans-serif;
    color: #051242;
    font-size: 22px;
    margin-bottom: 10px;
}

.tr_tour_rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #FCA702;
}

.tr_tour_rating_count {
    color: #14212B;
    font-size: 14px;
}

.tr_tour_list {
    list-style: none;
    margin: 15px 0;
}

.tr_tour_list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.tr_tour_list li span:last-child {
    font-weight: 700;
    color: #051242;
}

.tr_stats {
    background: #FCA702;
    padding: 50px 0;
}

.tr_stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tr_stat_card {
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 15px;
    color: #051242;
}

.tr_stat_icon {
    font-size: 35px;
    color: #fff;
}

.tr_stat_number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin: 10px 0 0 0;
    color: #fff;
}

.tr_stat_title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
}

.tr_cta {
    background: linear-gradient(rgba(5, 18, 66, 0.8), rgba(5, 18, 66, 0.8)), url('../images/cta.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
}

.tr_cta_title {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 48px;
    margin-bottom: 20px;
}

.tr_cta_text {
    color: #fff;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.tr_footer {
    background: #071C55 url('../images/footer-bg.png') bottom center no-repeat;
    padding: 80px 0 30px;
    color: #fff;
}

.tr_footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tr_footer_main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.tr_footer_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tr_footer_text {
    opacity: 0.8;
    line-height: 1.8;
}

.tr_footer_title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.tr_footer_menu {
    list-style: none;
}

.tr_footer_menu li {
    margin-bottom: 15px;
}

.tr_footer_menu a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.tr_footer_menu a:hover {
    opacity: 1;
    color: #FCA702;
}

.tr_footer_contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tr_footer_contact_icon {
    color: #FCA702;
    font-size: 18px;
    margin-top: 5px;
}

.tr_footer_copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}




.tr_banner_small {
    min-height: 400px;
    padding: 260px 0 50px 0;
}

.tr_breadcrumbs {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.tr_breadcrumbs .tr_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tr_breadcrumbs a {
    color: #14212B;
    text-decoration: none;
    transition: color 0.3s;
}

.tr_breadcrumbs a:hover {
    color: #FCA702;
}

.tr_about_page_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.tr_about_page_section:last-child {
    margin-bottom: 0;
}

.tr_about_page_reverse {
    direction: rtl;
}

.tr_about_page_reverse .tr_about_page_content {
    direction: ltr;
}

.tr_about_page_content p {
    margin-bottom: 15px;
}

.tr_about_page_reverse .tr_about_page_image {
    direction: ltr;
}

.tr_about_page_image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tr_features_about {
    margin-top: 30px;
}

.tr_contact_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.tr_contact_form_wrapper,
.tr_contact_info_wrapper {
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
}

.tr_form_group {
    margin-bottom: 25px;
}

.tr_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tr_form_input,
.tr_form_textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    background: #f8f9fa;
}

.tr_form_input:focus,
.tr_form_textarea:focus {
    outline: none;
    border-color: #FCA702;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(252, 167, 2, 0.1);
}

.tr_form_submit {
    width: 100%;
    justify-content: center;
}

.tr_contact_success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: #d4edda;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
}

.tr_contact_success i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.tr_contact_success h3 {
    color: #155724;
    margin-bottom: 15px;
}

.tr_contact_info_item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.tr_contact_info_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tr_contact_info_icon {
    color: #FCA702;
    font-size: 24px;
    min-width: 30px;
}

.tr_contact_info_content h4 {
    color: #051242;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    font-size: 18px;
}

.tr_contact_info_content p {
    color: #14212B;
    margin-bottom: 5px;
}

@media (max-width: 992px) {

    .tr_about_page_section,
    .tr_contact_container {
        grid-template-columns: 1fr;
    }

    .tr_about_page_reverse {
        direction: ltr;
    }

    .tr_form_row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .tr_contact_form_wrapper,
    .tr_contact_info_wrapper {
        padding: 25px;
    }

    .tr_banner_small {
        height: 50vh;
        min-height: 350px;
    }
}


.tr_legal_content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.tr_legal_intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.tr_legal_intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #14212B;
}

.tr_legal_section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.tr_legal_section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tr_legal_section h2 {
    font-family: 'Poppins', sans-serif;
    color: #051242;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: none;
}

.tr_legal_section h3 {
    font-family: 'Poppins', sans-serif;
    color: #051242;
    font-size: 20px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.tr_legal_section p {
    font-size: 16px;
    line-height: 1.8;
    color: #14212B;
    margin-bottom: 15px;
}

.tr_legal_section ul {
    margin: 20px 0 20px 30px;
}

.tr_legal_section li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #14212B;
    position: relative;
}

.tr_legal_section li:before {
    content: "•";
    color: #FCA702;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.tr_legal_section strong {
    color: #051242;
    font-weight: 600;
}


@media (max-width: 768px) {
    .tr_legal_content {
        padding: 10px;
    }

    .tr_legal_intro {
        padding: 20px;
    }

    .tr_legal_section h2 {
        font-size: 24px;
    }

    .tr_legal_section h3 {
        font-size: 18px;
    }

    .tr_legal_section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}




































@media (max-width: 992px) {
    .tr_nav_menu {
        display: none;
    }

    .tr_menu_toggle {
        display: block;
    }

    .tr_nav.active .tr_nav_menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 20px;
        background: #071C55;
        padding: 20px;
        border-radius: 10px;
        min-width: 200px;
    }

    .tr_title {
        font-size: 48px;
    }

    .tr_features_grid,
    .tr_stats_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr_about {
        grid-template-columns: 1fr;
    }

    .tr_tours_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr_footer_main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tr_title {
        font-size: 36px;
    }

    .tr_section_title {
        font-size: 32px;
    }

    .tr_features_grid,
    .tr_stats_grid,
    .tr_tours_grid {
        grid-template-columns: 1fr;
    }

    .tr_banner_btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .tr_footer_main {
        grid-template-columns: 1fr;
    }
}

.tr_popular_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.tr_popular_card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.tr_popular_card:nth-child(1),
.tr_popular_card:nth-child(6) {
    grid-column: span 4;
}

.tr_popular_card:nth-child(2),
.tr_popular_card:nth-child(3),
.tr_popular_card:nth-child(4),
.tr_popular_card:nth-child(5) {
    grid-column: span 2;
}

.tr_popular_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tr_popular_card:hover .tr_popular_img {
    transform: scale(1.05);
}

.tr_popular_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(5, 18, 66, 0.9));
    padding: 30px;
    color: #fff;
}

.tr_popular_name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .tr_popular_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr_popular_card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 576px) {
    .tr_popular_grid {
        grid-template-columns: 1fr;
    }

    .tr_logo_text {
        font-size: 16px;
    }

    .tr_logo_img {
        height: 35px;
    }

    .tr_logo {
        gap: 8px;
    }

    .tr_header {
        top: 20px;
    }

    .tr_nav .tr_btn_book {
        display: none;
    }

    .tr_banner {
        padding: 195px 0 150px 0;
    }

    .tr_feature_card {
        margin-top: 0;
    }

    .tr_features_grid {
        margin-top: -150px;
        gap: 20px;
    }

    .tr_topline_item:last-child {
        display: none;
    }

    .tr_section {
        padding: 60px 0;
    }

    .tr_cta_title {
        font-size: 38px;
    }

    .tr_footer_main {
        gap: 30px;
    }

    .tr_banner_small {
        padding: 195px 0 50px 0;
    }
}