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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #ffffff;
    color: #2d3748;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   GENERAL
========================================================= */

.container {
    width: calc(100% - 40px);
    max-width: 1330px;

    margin: 0 auto;
}


button,
a,
.top-item,
.slide-content {
    transition: all 0.30s ease;
}


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

.top-bar {
    min-height: 44px;

    background: var(--theme-main);

    color: #ffffff;
}


.top-bar-inner {
    min-height: 44px;

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

    gap: 30px;
}


.top-contact {
    display: flex;
    align-items: center;

    gap: 24px;
}


.top-item {
    display: flex;
    align-items: center;

    gap: 7px;

    font-size: 14px;

    cursor: default;
}


.top-item:hover {
    transform: translateY(-2px);

    opacity: 0.82;
}


.top-icon {
    font-size: 15px;
}


.top-date-time {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 14px;
}


.date-separator {
    opacity: 0.6;
}


/* =========================================================
   SLIDER SECTION
========================================================= */

.slider-section {
    background: #ffffff;

    padding: 22px 20px;
}


.slider-container {
    width: 100%;
    max-width: 1330px;

    margin: 0 auto;
}


/* =========================================================
   SLIDER
========================================================= */

.slider {
    position: relative;

    width: 100%;
    height: 450px;

    overflow: hidden;

    border-radius: 14px;

    background: #eeeeee;

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.11);
}


.slide {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.025);

    transition:
        opacity 0.75s ease,
        visibility 0.75s ease,
        transform 5s ease;
}


.slide.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}


.slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.slide:hover img {
    transform: scale(1.025);
}


/* =========================================================
   SLIDER OVERLAY
========================================================= */

.slide-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.20) 35%,
        rgba(0, 0, 0, 0.00) 65%
    );
}


.slide-content {
    width: 100%;
    max-width: 100%;

    padding: 22px 30px 26px 30px;

    border-left: none;
    border-radius: 0;

    background: rgba(0, 0, 0, 0.28);

    backdrop-filter: none;
}


.slide-content:hover {
    transform: none;
    background: rgba(0, 0, 0, 0.36);
}


.slide-content h2 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}


.slide-content p {
    color: rgba(255, 255, 255, 0.92);

    font-size: 17px;
    line-height: 1.5;
    margin: 0;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 46px;
    height: 46px;

    border: none;

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(0, 0, 0, 0.35);

    font-size: 32px;

    cursor: pointer;

    transform:
        translateY(-50%);
}


.slider-arrow:hover {
    background:
        var(--theme-main);

    transform:
        translateY(-50%)
        scale(1.10);
}


.slider-prev {
    left: 18px;
}


.slider-next {
    right: 18px;
}


/* =========================================================
   SLIDER DOTS
========================================================= */

.slider-dots {
    position: absolute;

    left: 50%;
    bottom: 18px;

    z-index: 10;

    display: flex;

    gap: 9px;

    transform:
        translateX(-50%);
}


.slider-dot {
    width: 11px;
    height: 11px;

    border:
        2px solid
        #ffffff;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.28
        );

    cursor: pointer;
}


.slider-dot:hover,
.slider-dot.active {
    background:
        var(--theme-main);

    transform:
        scale(1.25);
}


/* =========================================================
   EMPTY
========================================================= */

.slider-empty {
    min-height: 200px;

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

    border:
        1px solid
        #eeeeee;

    border-radius: 12px;

    background: #fafafa;

    color: #888888;
}


/* =========================================================
   THEME PANEL STRUCTURE
========================================================= */

.theme-panel {
    position: fixed;

    top: 125px;
    right: 0;

    z-index: 9999;

    display: flex;
    align-items: flex-start;

    transform:
        translateX(230px);

    transition:
        transform 0.40s ease;
}


.theme-panel.open {
    transform:
        translateX(0);
}


.theme-toggle {
    width: 44px;

    padding: 13px 0;

    border: none;

    border-radius:
        9px 0 0 9px;

    background:
        var(--theme-main);

    color: #ffffff;

    box-shadow:
        -5px 5px 16px
        rgba(0, 0, 0, 0.16);

    cursor: pointer;

    display: flex;
    flex-direction: column;

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

    gap: 2px;

    font-size: 15px;
    font-weight: 700;
}


.theme-toggle:hover {
    width: 49px;
}


.theme-box {
    width: 230px;

    padding: 20px;

    background: #ffffff;

    border-radius:
        0 0 0 12px;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.16);
}


.theme-title {
    margin-bottom: 15px;

    color:
        var(--theme-main);

    font-size: 18px;
    font-weight: 700;
}


.theme-list {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


.theme-color {
    width: 100%;

    padding: 7px 8px;

    border:
        1px solid
        #eeeeee;

    border-radius: 8px;

    background: #ffffff;

    cursor: pointer;

    display: flex;
    align-items: center;

    gap: 10px;

    text-align: left;
}


.theme-color:hover {
    transform:
        translateX(-4px);

    border-color:
        var(--theme-main);

    box-shadow:
        0 5px 15px
        rgba(0, 0, 0, 0.07);
}


.theme-color.selected {
    border-color:
        var(--theme-main);

    background:
        #fafafa;
}


.theme-color-circle {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    border-radius: 50%;

    background:
        var(--palette-color);

    box-shadow:
        0 2px 7px
        rgba(0, 0, 0, 0.20);
}


.theme-color-name {
    font-size: 13px;

    color: #444444;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media
(max-width: 768px) {

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


    .top-bar-inner {
        padding: 8px 0;

        flex-direction: column;

        justify-content: center;

        gap: 7px;
    }


    .top-contact {
        flex-wrap: wrap;

        justify-content: center;

        gap: 10px 18px;
    }


    .slider-section {
    padding-bottom: 0;
}


    .slider {
        height: 360px;

        border-radius: 9px;
    }


.slide-overlay {
    padding: 0;
}

.slide-content {
    padding: 16px 18px 18px 18px;
}

.slide-content h2 {
    font-size: 24px;
    margin-bottom: 6px;
}

.slide-content p {
    font-size: 14px;
    line-height: 1.4;
}


    .slider-arrow {
        width: 38px;
        height: 38px;

        font-size: 27px;
    }


    .theme-panel {
        top: 150px;
    }

}

@media (max-width: 850px) {

    .tour-price-ribbon {
        top: 14px;
        left: -46px;

        width: 145px;
        height: 30px;

        font-size: 12px;
    }

}

/* =========================================================
   REVIEWS SECTION
========================================================= */

.reviews-section {
    width: 100%;
    padding: 0 0 55px 0;
    background: #ffffff;
}

.reviews-container {
    width: calc(100% - 40px);
    max-width: 1330px;

    margin: 0 auto;

    overflow: hidden;
    position: relative;

    padding: 12px 0 22px 0;
}


/* =========================================================
   REVIEWS TRACK
========================================================= */

.reviews-track {
    display: flex;
    align-items: stretch;

    gap: 20px;

    width: max-content;

    padding-left: 0;

    will-change: transform;
}


/* =========================================================
   REVIEW CARD
========================================================= */

.review-card {
    width: 350px;
    min-width: 350px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-top: 4px solid var(--theme-main);

    border-radius: 14px;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, 0.08);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease;
}


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

    border-color: var(--theme-main);

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


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

.review-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 14px;
}


.review-user {
    min-width: 0;
}


.review-name {
    margin-bottom: 4px;

    color: var(--theme-main);

    font-size: 16px;
    font-weight: 700;
}


.review-email {
    color: #8b8b8b;

    font-size: 12px;

    word-break: break-word;
}


/* =========================================================
   STARS
========================================================= */

.review-stars {
    display: flex;

    flex-shrink: 0;

    gap: 2px;
}


.review-stars span {
    color: #d5d5d5;

    font-size: 18px;
}


.review-stars span.active {
    color: var(--theme-main);
}


/* =========================================================
   REVIEW COMMENT
========================================================= */

.review-comment {
    color: #4b5563;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   SLIDER - REVIEWS ARASI BOŞLUK
========================================================= */

.slider-section {
    padding-bottom: 50px;
}


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

@media (max-width: 768px) {

.slider-section {
    padding-bottom: 10x;
}

    .reviews-section {
        padding-bottom: 35px;
    }

    .reviews-track {
        gap: 14px;

        padding-left: 12px;
    }

    .review-card {
        width: 285px;
        min-width: 285px;

        padding: 17px;
    }

    .review-top {
        flex-direction: column;

        gap: 7px;
    }

    .review-stars span {
        font-size: 16px;
    }

}


/* =========================================================
   DUYURU ŞERİDİ
========================================================= */

.announcement-section {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    background: #ffffff;
}

.announcement-container {
    width: 100%;
    max-width: 1330px;
    height: 46px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid #e7e7e7;
    border-radius: 9px;

    background: #ffffff;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.06);
}

.announcement-label {
    position: relative;
    z-index: 10;

    height: 100%;

    display: flex;
    align-items: center;

    padding: 0 20px;

    flex: 0 0 auto;

    background: var(--theme-main);
    color: #ffffff;

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

    white-space: nowrap;
}

.announcement-window {
    position: relative;

    flex: 1;

    min-width: 0;

    height: 100%;

    overflow: hidden;

    display: flex;
    align-items: center;
}

.announcement-track {
    display: flex;
    align-items: center;

    width: max-content;

    white-space: nowrap;

    transform: translateX(0);

    will-change: transform;
}

.announcement-item {
    color: #4b5563;

    font-size: 14px;

    white-space: nowrap;
}

.announcement-separator {
    margin: 0 28px;

    color: var(--theme-main);

    font-size: 18px;
    font-weight: 700;
}

/* DUYURU yazısının altına girerken kaybolma efekti */

.announcement-window::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 45px;
    height: 100%;

    z-index: 5;

    pointer-events: none;

    background:
        linear-gradient(
            to right,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
        );
}

@media (max-width: 768px) {

    .announcement-section {
        padding: 0 12px 10x 12px;
    }

    .announcement-container {
        height: 42px;
    }

    .announcement-label {
        padding: 0 13px;

        font-size: 12px;
    }

    .announcement-item {
        font-size: 13px;
    }

    .announcement-separator {
        margin: 0 20px;
    }

}

/* =========================================================
   SLIDER - DUYURU ARASI KESİN BOŞLUK AYARI
========================================================= */

.slider-section {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}

.slider-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.slider {
    margin-bottom: 0 !important;
}

.announcement-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* =========================================================
   MAIN MENU
========================================================= */

.main-menu-section {
    position: relative;

    width: 100%;

    padding: 10px 20px 0 20px;

    background: #ffffff;

    overflow: visible;
}


.main-menu-container {
    width: 100%;
    max-width: 1330px;

    min-height: 52px;

    margin: 0 auto;

    padding-left: 145px;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 10px;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.06);
}


.main-menu {
    list-style: none;

    margin: 0;
    padding: 0;

    min-height: 52px;

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

    gap: 0;
}


.main-menu > li {
    position: relative;

    margin: 0;
    padding: 0;

    list-style: none;
}


.main-menu > li > a,
.submenu-toggle {
    min-height: 52px;

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

    padding: 0 22px;

    border: 0;

    background: transparent;

    color: #39424e;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

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

    text-decoration: none;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}


.main-menu > li > a:hover,
.submenu-toggle:hover {
    background-color: var(--theme-main);

    color: #ffffff;
}


.submenu-toggle {
    appearance: none;
}


/* LOGONUN SOL ALANINI KORU */

.main-menu-container {
    padding-left: 145px;
}

/* =========================================================
   VIP SERVICES LOGO
   TAMAMEN TRANSPARAN - CSS WORDMARK
========================================================= */

.main-menu-section {
    position: relative;
    overflow: visible;
}


.vip-logo {
    position: absolute;

    /*
    Menü alanının içinde başlar.
    Yukarı taşmaz.
    Aşağı doğru sliderın üzerine binebilir.
    */
    top: 10px;
    left: max(
        28px,
        calc((100% - 1330px) / 2 + 18px)
    );

    z-index: 200;

    height: 155px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;

    background: transparent;
    border: none;
    box-shadow: none;

    transition:
        transform 0.30s ease,
        filter 0.30s ease;
}


/* =========================================================
   VIP
========================================================= */

.vip-word {
    position: relative;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 31px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: 3px;

    background:
        linear-gradient(
            135deg,
            var(--theme-main) 0%,
            #111827 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    filter:
        drop-shadow(
            0 2px 2px
            rgba(0,0,0,0.15)
        );
}


/*
VIP altındaki ince premium çizgi
*/

.vip-word::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -8px;

    width: 35px;
    height: 3px;

    transform: translateX(-50%);

    border-radius: 5px;

    background:
        var(--theme-main);
}


/* =========================================================
   SERVICES - DİKEY
========================================================= */

.vip-services {
    margin-top: 16px;

    writing-mode: vertical-rl;

    text-orientation: mixed;

    color: #1f2937;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 4px;

    line-height: 1;

    text-transform: uppercase;

    text-shadow:
        0 1px 1px
        rgba(255,255,255,0.8);
}


/* =========================================================
   HOVER
========================================================= */

.vip-logo:hover {
    transform:
        translateY(3px)
        scale(1.04);

    filter:
        drop-shadow(
            0 7px 8px
            rgba(0,0,0,0.16)
        );
}


/* =========================================================
   LOGONUN MENÜYLE ÇAKIŞMAMASI
========================================================= */

.main-menu-container {
    padding-left: 145px;
}


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

@media (max-width: 768px) {

    .vip-logo {
        left: 20px;
        top: 9px;

        height: 120px;
    }

    .vip-word {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .vip-services {
        margin-top: 13px;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .main-menu-container {
        padding-left: 100px;
    }

}



/* =========================================================
   SUBMENU
========================================================= */

.has-submenu {
    position: relative;
}

.submenu-arrow {
    margin-left: 7px;

    font-size: 12px;

    transition: transform 0.25s ease;
}

.has-submenu:hover .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;

    top: 100%;
    left: 0;

    z-index: 1000;

    min-width: 210px;

    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 0 0 10px 10px;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.submenu li a {
    display: block;

    padding: 11px 18px;

    color: #444444;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

.submenu li a:hover {
    background: var(--theme-main);
    color: #ffffff;

    padding-left: 24px;
}


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

@media (max-width: 768px) {

    .main-menu-section {
        padding:
            8px 12px
            0 12px;
    }

    .main-menu {
        flex-wrap: wrap;

        justify-content: flex-start;
    }

    .main-menu > li {
        width: 50%;
    }

    .main-menu > li > a,
    .submenu-toggle {
        width: 100%;

        min-height: 44px;

        padding: 0 12px;

        font-size: 13px;
    }

    .submenu {
        position: absolute;

        min-width: 190px;
    }

}

.vip-logo {
    position: absolute;

    top: 10px;
    left: max(28px, calc((100% - 1330px) / 2 + 18px));

    z-index: 200;

    display: block;

    text-decoration: none;
}

.vip-logo-image {
    display: block;

    width: 140px;
    height: auto;

    background: transparent;
}


/* =========================================================
   CONTENT CARDS
========================================================= */

.content-cards-section {
    width: 100%;

    padding:
        0 20px
        55px 20px;

    margin-top: -55px;

    background: #ffffff;
}


.content-cards-container {
    width: 100%;
    max-width: 1330px;

    margin: 0 auto;

    display: grid;

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

    gap: 24px;
}


/* =========================================================
   CARD
========================================================= */

.content-card {
    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e8e8e8;

    border-radius: 15px;

    box-shadow:
        0 8px 28px
        rgba(0, 0, 0, 0.08);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease;
}


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

    border-color:
        var(--theme-main);

    box-shadow:
        0 16px 40px
        rgba(0, 0, 0, 0.14);
}


/* =========================================================
   TWO IMAGES
========================================================= */

.content-card-images {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 4px;

    height: 210px;

    overflow: hidden;
}


.content-card-image {
    overflow: hidden;

    background: #eeeeee;
}


.content-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.content-card:hover
.content-card-image img {
    transform:
        scale(1.05);
}


/* =========================================================
   BODY
========================================================= */

.content-card-body {
    padding: 22px;
}


.content-card-body h3 {
    margin-bottom: 12px;

    color:
        var(--theme-main);

    font-size: 22px;

    line-height: 1.25;
}


.content-card-body p {
    margin: 0;

    color: #56606d;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   BOTTOM LINK
========================================================= */

.content-card-link {
    min-height: 50px;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        var(--theme-main);

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        filter 0.25s ease,
        padding 0.25s ease;
}


.content-card-link:hover {
    filter:
        brightness(0.92);

    padding-left: 28px;
    padding-right: 28px;
}


.content-card-link-arrow {
    font-size: 22px;

    transition:
        transform 0.25s ease;
}


.content-card-link:hover
.content-card-link-arrow {
    transform:
        translateX(5px);
}


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

@media (max-width: 768px) {

    .content-cards-section {
        padding:
            10px 12px
            35px 12px;
    }


    .content-cards-container {
        grid-template-columns:
            1fr;

        gap: 18px;
    }


    .content-card-images {
        height: 180px;
    }


    .content-card-body {
        padding: 18px;
    }


    .content-card-body h3 {
        font-size: 19px;
    }

}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    width: 100%;

    padding:
        0 20px
        45px 20px;

    margin-top: -35px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}


.why-container {
    width: 100%;
    max-width: 1330px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.why-heading {
    max-width: 700px;

    margin:
        0 auto
        34px auto;

    text-align: center;
}


.why-heading-line {
    display: block;

    width: 55px;
    height: 4px;

    margin:
        0 auto
        14px auto;

    border-radius: 10px;

    background:
        var(--theme-main);
}


.why-heading h2 {
    margin-bottom: 10px;

    color: #1f2937;

    font-size: 30px;

    line-height: 1.2;
}


.why-heading p {
    margin: 0;

    color: #6b7280;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   GRID
========================================================= */

.why-grid {
    display: grid;

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

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.why-card {
    position: relative;

    min-height: 230px;

    padding: 24px 22px;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        #e8eaed;

    border-radius: 16px;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, 0.07);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease;
}


.why-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        var(--theme-main);
}


.why-card::after {
    content: "";

    position: absolute;

    right: -45px;
    bottom: -45px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        var(--theme-main);

    opacity: 0.05;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}


.why-card:hover {
    transform:
        translateY(-8px);

    border-color:
        var(--theme-main);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.12);
}


.why-card:hover::after {
    transform:
        scale(1.35);

    opacity: 0.09;
}


/* =========================================================
   ICON
========================================================= */

.why-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 18px;

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

    border-radius: 15px;

    background:
        color-mix(
            in srgb,
            var(--theme-main) 12%,
            white
        );

    color:
        var(--theme-main);

    font-size: 28px;

    transition:
        transform 0.30s ease,
        background 0.30s ease,
        color 0.30s ease;
}


.why-card:hover .why-icon {
    transform:
        rotate(-4deg)
        scale(1.08);

    background:
        var(--theme-main);

    color: #ffffff;
}


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

.why-card-content h3 {
    margin-bottom: 10px;

    color:
        var(--theme-main);

    font-size: 18px;

    line-height: 1.3;
}


.why-card-content p {
    margin: 0;

    color: #5d6672;

    font-size: 14px;

    line-height: 1.7;
}


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

@media (max-width: 1000px) {

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

}


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

@media (max-width: 600px) {

    .why-section {
        padding:
            15px 12px
            40px 12px;
    }


    .why-heading {
        margin-bottom: 24px;
    }


    .why-heading h2 {
        font-size: 24px;
    }


    .why-grid {
        grid-template-columns:
            1fr;

        gap: 14px;
    }


    .why-card {
        min-height: auto;

        padding: 20px;
    }

}


/* =========================================================
   MAILING LIST
========================================================= */

.mailing-section {
    width: 100%;

    padding:
        0 20px
        40px 20px;

    margin-top: -35px;

    background: #ffffff;
}


.mailing-container {
    width: 100%;
    max-width: 1330px;

    margin: 0 auto;

    padding: 28px;

    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: center;

    gap: 30px;

    border-radius: 16px;

    border:
        1px solid
        #e8e8e8;

    border-left:
        5px solid
        var(--theme-main);

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.07);
}


.mailing-text h2 {
    margin-bottom: 7px;

    color:
        var(--theme-main);

    font-size: 23px;
}


.mailing-text p {
    margin: 0;

    color: #68717d;

    font-size: 14px;
}


.mailing-form {
    display: flex;

    min-width: 430px;
}


.mailing-form input {
    width: 100%;

    min-height: 46px;

    padding: 0 16px;

    border:
        1px solid
        #dddddd;

    border-right: 0;

    border-radius:
        8px 0 0 8px;

    outline: none;

    font-size: 14px;
}


.mailing-form input:focus {
    border-color:
        var(--theme-main);
}


.mailing-form button {
    min-height: 46px;

    padding: 0 22px;

    border: 0;

    border-radius:
        0 8px 8px 0;

    background:
        var(--theme-main);

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;
}


.mailing-form button:hover {
    filter:
        brightness(0.92);
}


.mailing-message {
    grid-column: 1 / -1;

    color:
        var(--theme-main);

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


@media (max-width: 768px) {

    .mailing-section {
        padding:
            10px 12px
            35px 12px;
    }


    .mailing-container {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 20px;
    }


    .mailing-form {
        min-width: 0;

        width: 100%;
    }

}


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

.site-footer {
    width: 100%;

    margin-top: 10px;

    background: #ffffff;
}


.footer-main {
    padding: 25px 20px;

    border-top:
        4px solid
        var(--theme-main);

    background: #f8fafc;
}


.footer-container {
    width: 100%;
    max-width: 1330px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   COMPANY
========================================================= */

.footer-company {
    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-logo {
    width: 85px;
    height: auto;

    display: block;

    background: transparent;
}


.footer-company-info {
    display: flex;

    flex-direction: column;

    gap: 5px;

    color: #59616d;

    font-size: 13px;
}


.footer-company-info strong {
    color:
        var(--theme-main);

    font-size: 18px;
}


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

.footer-links {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px 22px;
}


.footer-links a {
    position: relative;

    color: #4b5563;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.footer-links a:hover {
    color:
        var(--theme-main);
}


.footer-links a:not(:last-child)::after {
    content: "•";

    position: absolute;

    right: -14px;

    color:
        var(--theme-main);
}


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

.footer-bottom {
    background:
        var(--theme-main);

    color: #ffffff;
}


.footer-bottom-container {
    width: calc(100% - 40px);
    max-width: 1330px;

    min-height: 42px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 12px;
}


.footer-developer {
    font-weight: 600;
}


/* =========================================================
   HOVER
========================================================= */

.footer-logo {
    transition:
        transform 0.30s ease;
}


.footer-logo:hover {
    transform:
        scale(1.06);
}


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

@media (max-width: 768px) {

    .footer-main {
        padding:
            22px 12px;
    }


    .footer-container {
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 22px;
    }


    .footer-company {
        flex-direction: column;

        gap: 10px;
    }


    .footer-logo {
        width: 75px;
    }


    .footer-links {
        gap:
            10px 18px;
    }


    .footer-bottom-container {
        width:
            calc(100% - 24px);

        padding:
            10px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 5px;
    }

}

/* =========================================================
   TOUR PAGE BANNER
========================================================= */

.tour-banner-section {
    width: 100%;

    padding:
        22px 20px
        18px 20px;

    background: #ffffff;
}


.tour-banner {
    position: relative;

    width: 100%;
    max-width: 1330px;

    height: 300px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 14px;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,0.10);
}


.tour-banner img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.tour-banner-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.65) 0%,
            rgba(0,0,0,0.20) 50%,
            transparent 100%
        );
}


.tour-banner-content h1 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 34px;
}


.tour-banner-content p {
    max-width: 720px;

    margin: 0;

    color:
        rgba(255,255,255,0.90);

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   TOUR LIST
========================================================= */

.tour-list-section {
    width: 100%;

    padding:
        15px 20px
        55px 20px;

    background: #ffffff;
}


.tour-list-container {
    width: 100%;
    max-width: 1330px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =========================================================
   TOUR CARD
========================================================= */

.tour-list-card {
    display: grid;

    grid-template-columns:
        380px 1fr;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        #e7e7e7;

    border-left:
        5px solid
        var(--theme-main);

    border-radius: 15px;

    box-shadow:
        0 8px 26px
        rgba(0,0,0,0.07);

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease;

text-decoration: none;
    color: inherit;
    cursor: pointer;
}


.tour-list-card:hover {
    transform: translateY(-5px);

    border-color: var(--theme-main);

    box-shadow:
        0 16px 38px
        rgba(0,0,0,0.13);
}


/* =========================================================
   IMAGE
========================================================= */

.tour-list-image {
    min-height: 260px;

    overflow: hidden;

    background: #eeeeee;
}


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

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.tour-list-card:hover
.tour-list-image img {
    transform:
        scale(1.05);
}


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

.tour-list-content {
    padding: 28px;
}


.tour-list-content h2 {
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.tour-list-card:hover
.tour-list-content h2 {
    transform: translateX(5px);
}


.tour-list-description {
    margin:
        0 0
        22px 0;

    color: #56606d;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   TOUR META
========================================================= */

.tour-list-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.tour-meta-item {
    min-width: 145px;

    padding:
        10px 14px;

    border-radius: 9px;

    background: #f7f8fa;

    border:
        1px solid
        #ededed;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}


.tour-meta-item:hover {
    border-color:
        var(--theme-main);

    transform:
        translateY(-2px);
}


.tour-meta-item strong {
    display: block;

    margin-bottom: 4px;

    color:
        var(--theme-main);

    font-size: 12px;
}


.tour-meta-item span {
    color: #555f6b;

    font-size: 13px;
}


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

@media (max-width: 850px) {

    .tour-banner-section {
        padding:
            12px 12px
            10px 12px;
    }


    .tour-banner {
        height: 250px;
    }


    .tour-banner-overlay {
        padding: 20px;
    }


    .tour-banner-content h1 {
        font-size: 26px;
    }


    .tour-list-section {
        padding:
            10px 12px
            35px 12px;
    }


    .tour-list-card {
        grid-template-columns: 1fr;
    }


    .tour-list-image {
        height: 220px;

        min-height: 220px;
    }


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


    .tour-list-content h2 {
        font-size: 21px;
    }

}


/* =========================================================
   TOUR PRICE RIBBON
========================================================= */

.tour-list-image {
    position: relative;

    min-height: 260px;

    overflow: hidden;

    background: #eeeeee;
}


.tour-price-ribbon {
    position: absolute;

    top: 18px;
    left: -42px;

    z-index: 5;

    width: 150px;
    height: 34px;

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

    transform: rotate(-45deg);

    background: var(--theme-main);

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.18);
}





/* =========================================================
   TOUR DETAIL
========================================================= */

.tour-detail-section {
    width: 100%;

    padding:
        22px 20px
        55px 20px;

    background: #ffffff;
}


.tour-detail-container {
    width: 100%;
    max-width: 1330px;

    margin: 0 auto;

    overflow: hidden;

    border:
        1px solid
        #e7e7e7;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,0.09);
}


/* =========================================================
   IMAGE
========================================================= */

.tour-detail-image {
    position: relative;

    width: 100%;
    height: 430px;

    overflow: hidden;

    background: #eeeeee;
}


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

    display: block;

    object-fit: cover;

    transition:
        transform 0.60s ease;
}


.tour-detail-container:hover
.tour-detail-image img {
    transform:
        scale(1.02);
}


/* =========================================================
   PRICE
========================================================= */

.tour-detail-price {
    position: absolute;

    top: 25px;
    left: -45px;

    z-index: 5;

    width: 180px;
    height: 42px;

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

    transform:
        rotate(-45deg);

    background:
        var(--theme-main);

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.5px;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,0.22);
}


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

.tour-detail-content {
    padding: 32px;
}


.tour-detail-heading {
    margin-bottom: 22px;
}


.tour-detail-line {
    display: block;

    width: 55px;
    height: 4px;

    margin-bottom: 12px;

    border-radius: 10px;

    background:
        var(--theme-main);
}


.tour-detail-heading h1 {
    margin: 0;

    color:
        var(--theme-main);

    font-size: 34px;

    line-height: 1.2;
}


/* =========================================================
   META
========================================================= */

.tour-detail-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 28px;
}


.tour-detail-meta-item {
    min-width: 170px;

    padding:
        14px 16px;

    border:
        1px solid
        #e7e7e7;

    border-radius: 10px;

    background: #f7f8fa;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.tour-detail-meta-item:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--theme-main);
}


.tour-detail-meta-title {
    display: block;

    margin-bottom: 5px;

    color:
        var(--theme-main);

    font-size: 12px;

    font-weight: 700;
}


.tour-detail-meta-item strong {
    color: #4b5563;

    font-size: 14px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tour-detail-description {
    padding:
        22px 0;

    border-top:
        1px solid
        #eeeeee;

    border-bottom:
        1px solid
        #eeeeee;

    color: #56606d;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   BOTTOM LINKS
========================================================= */

.tour-detail-bottom {
    margin-top: 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


.tour-back-link,
.tour-contact-link {
    min-height: 46px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}


.tour-back-link {
    border:
        1px solid
        var(--theme-main);

    color:
        var(--theme-main);

    background: #ffffff;
}


.tour-contact-link {
    border:
        1px solid
        var(--theme-main);

    background:
        var(--theme-main);

    color: #ffffff;
}


.tour-back-link:hover,
.tour-contact-link:hover {
    transform:
        translateY(-2px);
}


.tour-contact-link:hover {
    filter:
        brightness(0.92);
}


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

@media (max-width: 768px) {

    .tour-detail-section {
        padding:
            12px 12px
            35px 12px;
    }


    .tour-detail-image {
        height: 280px;
    }


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


    .tour-detail-heading h1 {
        font-size: 26px;
    }


    .tour-detail-meta {
        display: grid;

        grid-template-columns:
            1fr 1fr;
    }


    .tour-detail-meta-item {
        min-width: 0;
    }


    .tour-detail-bottom {
        flex-direction: column;

        align-items: stretch;
    }


    .tour-back-link,
    .tour-contact-link {
        width: 100%;
    }

}

