body {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #1a3769;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.btn, .custom-select, .hero-title, .nav-list>li>a, .phone-btn .text strong {
    font-family: 'Montserrat', sans-serif;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

:root {
    --logo-blue-dark: #003366;
    --logo-blue-light: #005b96;
    --logo-green: #8cc63f;
    --logo-sun: #ffc107;
    --text-white: #ffffff;
    --text-grey: #cfd8dc;
}

.pro-header {
    background: linear-gradient(135deg, var(--logo-blue-dark) 0, var(--logo-blue-light) 100%);
    width: 100%;
    z-index: 1000;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 4px solid var(--logo-green);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.header-logo img {
    max-height: 81px;
    min-width: 300px;
    display: block;
}

.header-nav .nav-list {
    display: flex;
    gap: 25px;
}

.nav-list>li>a {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.nav-list>li>a i {
    color: var(--logo-green);
    font-size: 16px;
    transition: 0.3s;
}

.nav-list>li>a:hover {
    color: var(--logo-green);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 5px 5px;
    border-top: 3px solid var(--logo-sun);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    background: #005791;
    border-radius: 10px;
}

.dropdown-menu li a:hover {
    background: #fdfdfd;
    color: var(--logo-blue-dark);
    padding-left: 25px;
}

.header-utilities {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 13px;
    cursor: pointer;
    outline: none;
}

.custom-select option {
    color: #333;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-btn .icon {
    background: var(--logo-sun);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    transition: 0.3s;
}

.phone-btn:hover .icon {
    background: #fff;
    color: var(--logo-sun);
    transform: rotate(20deg);
}

.phone-btn .text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-btn .text span {
    font-size: 11px;
    color: var(--text-grey);
    font-weight: 500;
}

.phone-btn .text strong {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.mobile-toggle {
    width: 30px;
    height: 22px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-toggle span {
    background: #fff;
    width: 100%;
    height: 3px;
    border-radius: 3px;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: 0px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu-container.active {
    right: 0;
}

.mobile-header {
    background: var(--logo-blue-dark);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--logo-green);
}

.mobile-title {
    color: #fff;
    font-weight: 700;
}

.close-btn {
    color: #fff;
    background: none;
    border: none;
    font-size: 20px;
}

.mobile-nav-list>li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-list>li>a {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    color: #333;
    font-weight: 600;
}

.mobile-sub-menu {
    display: none;
    background: #f9f9f9;
}

.mobile-sub-menu li a {
    padding-left: 30px;
    font-weight: 400;
    font-size: 14px;
    color: #555;
}

.header-utilities {
    display: flex;
    align-items: center;
    gap: 20px;
}

.selectors-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 20px;
    padding: 8px 10px 8px 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px;
    min-width: 75px;
}

.custom-select:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.custom-select option {
    background-color: #fff;
    color: #333;
}

.hero-slider-area {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-slide-item {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: kenBurns 20s linear infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.18) 35%,
            rgba(0, 51, 102, 0.55) 65%,
            rgba(0, 51, 102, 0.85) 90%);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding-left: 20px;
    border-left: 5px solid var(--logo-sun);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;

    /* KABARTMA + DERİNLİK */
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25),
        /* üst highlight */
        0 -1px 0 rgba(0, 0, 0, 0.15),
        /* alt gölge */
        0 4px 10px rgba(0, 0, 0, 0.35),
        /* ana derinlik */
        0 12px 28px rgba(0, 0, 0, 0.45);
    /* sinematik gölge */

    /* Animasyon */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: var(--logo-sun);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1s;
}

.btn-hero:hover {
    background: #fff;
    color: var(--logo-sun);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.5);
}

.btn-hero i {
    margin-left: 10px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--logo-sun);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@media (max-width:768px) {
    .hero-slide-item, .hero-slider-area {
        height: 60vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 51, 102, 0.3) 0, rgba(0, 51, 102, 0.9) 100%);
    }

    .hero-content {
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-bottom: 4px solid var(--logo-sun);
        padding-bottom: 20px;
    }
}

.search-section-area {
    margin-top: -90px;
    position: relative;
    z-index: 50;
    padding-bottom: 0;
}

.search-card {
    border: none;
    filter: drop-shadow(0 20px 40px rgba(0, 51, 102, 0.2));
}

.search-header {
    background: linear-gradient(135deg, #036 0, #005b96 100%);
    padding: 20px 20px 0 20px;
    border-radius: 12px 12px 0 0;
}

.pro-search-tabs {
    display: flex;
    gap: 8px;
    border: none;
}

.pro-search-tabs .nav-item {
    flex: 1;
}

.pro-search-tabs .nav-link {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px 10px 0 0;
    padding: 15px 10px;
    transition: all 0.3s ease;
}

.pro-search-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.pro-search-tabs .nav-link.active {
    background: #fff;
    color: #036;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.tab-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tab-icon {
    font-size: 22px;
    transition: 0.3s;
}

.tab-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.active-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffc107;
    transform: scaleX(0);
    transition: 0.3s;
}

.pro-search-tabs .nav-link.active .active-indicator {
    transform: scaleX(1);
}

.pro-search-tabs .nav-link.active .tab-icon {
    color: #ffc107;
}

.search-body {
    background: #fff;
    padding: 30px;
    border-radius: 0 0 12px 12px;
}

.form-floating-pro {
    position: relative;
    height: 65px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.form-floating-pro:hover {
    background-color: #fff;
    border-color: #ccc;
}

.form-floating-pro:focus-within {
    background-color: #fff;
    border-color: #ffc107;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.15);
}

.form-control-pro, .form-select-pro {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 15px 0 15px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    appearance: none;
    cursor: pointer;
}

.form-floating-pro label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
    font-weight: 500;
    pointer-events: none;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-control-pro:not(:placeholder-shown)+label, .form-floating-pro:focus-within label, .form-select-pro:not(:placeholder-shown)+label {
    top: 12px;
    font-size: 11px;
    color: #036;
    font-weight: 700;
    text-transform: uppercase;
}

.form-floating-pro:focus-within label i {
    color: #ffc107;
    font-size: 10px;
}

.chevron-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 12px;
    pointer-events: none;
    transition: 0.3s;
}

.form-floating-pro:focus-within .chevron-icon {
    color: #ffc107;
    transform: translateY(-50%) rotate(180deg);
}

.guest-selector-wrapper {
    position: relative;
}

.guest-dropdown-content {
    position: absolute;
    top: 110%;
    left: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 100;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    border: 1px solid #f0f0f0;
}

.guest-dropdown-content.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideDownFade 0.3s ease forwards;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f9f9f9;
}

.guest-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.guest-title {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 15px;
}

.guest-subtitle {
    font-size: 12px;
    color: #888;
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-counter {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #036;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    font-size: 12px;
}

.btn-counter:hover {
    border-color: #8cc63f;
    color: #8cc63f;
    background: #f9fff0;
}

.counter-value {
    font-weight: 700;
    color: #333;
    width: 20px;
    text-align: center;
}

.child-ages-area {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    display: none;
}

.child-ages-area.active {
    display: block;
    animation: fadeIn 0.3s;
}

.child-age-title {
    font-size: 12px;
    font-weight: 700;
    color: #036;
    margin-bottom: 8px;
    display: block;
}

.child-select-wrap {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 4px 8px;
}

.child-select-wrap label {
    font-size: 10px;
    color: #999;
    display: block;
    margin-bottom: 0;
}

.child-select-wrap select {
    width: 100%;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.guest-footer {
    margin-top: 15px;
    text-align: right;
}

.btn-guest-done {
    background: #036;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn-guest-done:hover {
    background: #048;
}

.btn-search-pro {
    width: 100%;
    height: 60px;
    background: #8cc63f;
    color: #fff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(140, 198, 63, 0.3);
}

.btn-search-pro:hover {
    background: #7cb332;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 198, 63, 0.4);
}

.btn-text {
    font-size: 16px;
    font-weight: 800;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:991px) {
    .search-section-area {
        margin-top: 0;
        padding-top: 20px;
    }

    .guest-dropdown-content {
        width: 100%;
        left: 0;
    }

    .tab-inner {
        flex-direction: row;
    }
}

.lang-select-wrapper {
    position: relative;
    display: inline-block;
}

.lang-select-wrapper #langSelector.custom-select {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.lang-select-visible {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    background-color: #fff;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    min-width: 80px;
}

.lang-select-visible .flag svg {
    width: 20px;
    height: 14px;
    display: block;
    border-radius: 2px;
}

.lang-select-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    min-width: 79px;
    padding: 4px 0;
    z-index: 999;
    display: none;
}

.lang-select-wrapper.open .lang-select-menu {
    display: block;
}

.lang-option {
    width: 100%;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 13px;
    text-align: left;
}

.lang-option .flag svg {
    width: 20px;
    height: 14px;
    display: block;
    border-radius: 2px;
}

.lang-option:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.lang-option .code {
    font-weight: 500;
}

.selectors-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

:root {
    --primary-indigo: #4F46E5;
    --accent-yellow: #FFC107;
    --success-green: #10B981;
    --closed-gray: #E5E7EB;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px 30px 30px;
}

.tour-grid .item {
    list-style: none;
}

.tour-grid .item>div {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 20px 35px -5px rgba(15, 23, 42, 0.16);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease;
    border: 1px solid #e5e7eb;
}

.tour-grid .item>div:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 30px 50px -10px rgba(255, 193, 7, 0.45);
    border-color: var(--primary-indigo);
}

.tour-grid .item img {
    height: 16rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.tour-grid .item:hover img {
    transform: scale(1.04);
    opacity: 0.98;
}

.tour-grid .item .absolute.top-3.right-3 {
    background-color: var(--accent-yellow);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.5);
}

.tour-grid .item .fa-heart {
    color: #fff;
    transition: transform 0.2s ease, color 0.2s ease;
}

.tour-grid .item .fa-heart:hover {
    transform: scale(1.2);
    color: #e60023;
}

.tour-grid .item .price {
    border-top-left-radius: 1.25rem;
    font-size: 1.45rem;
}

.tour-grid .item .price span:first-child {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
}

.tour-grid .item .p-5 {
    padding: 10px !important;
}

.tour-grid .item h2 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
}

.tour-grid .item h2:hover {
    color: var(--primary-indigo);
    text-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.tour-grid .item .space-y-3 .flex i {
    color: var(--primary-indigo);
}

.gun-kutusu-available, .gun-kutusu-closed {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.2rem;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s ease-out;
}

.gun-kutusu-available {
    background-color: var(--success-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gun-kutusu-available:hover {
    background-color: #059669;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.gun-kutusu-closed {
    background-color: var(--closed-gray);
    color: #9ca3af;
    opacity: 0.7;
    cursor: not-allowed;
    border: 1px solid #d1d5db;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.gun-kutusu-closed:hover {
    background-color: #d1d5db;
    opacity: 0.9;
}

.tour-grid .item a.mt-4.block {
    background-color: var(--primary-indigo);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.5);
    border-radius: 1rem;
    font-size: 1.05rem;
    padding: 0.85rem 1.5rem;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-grid .item a.mt-4.block:hover {
    background-color: #ffb300;
    color: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 193, 7, 0.6);
}

@media (max-width:768px) {
    .tour-grid {
        gap: 24px;
    }

    .tour-grid .item .p-5 {
        padding: 1.25rem;
    }

    .tour-grid .item img {
        height: 12rem;
    }
}

.my-4 {
    margin-top: 0.3rem !important;
}

.badge-stack {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.badge i {
    font-style: normal;
    margin-right: 6px;
    font-size: 0.9rem;
    line-height: 1;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.badge:hover {
    transform: translateX(3px);
}

.badge--accent-yellow {
    background-color: var(--accent-yellow);
    color: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.6);
}

.badge--primary-indigo {
    background-color: var(--primary-indigo);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.6);
}

.header-section {
    text-align: center;
    margin-top: 50px;
}

.header-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.header-section__title-accent {
    color: var(--primary-indigo);
    position: relative;
    padding-bottom: 5px;
}

.header-section__title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.header-section__subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.header-section__separator {
    width: 60px;
    height: 2px;
    background-color: var(--accent-yellow);
    margin: 10px auto 10px auto;
    border-radius: 1px;
    opacity: 0.6;
}

@media (max-width:768px) {
    .header-section {
        padding: 20px 0 10px 0;
    }

    .header-section__title {
        font-size: 2rem;
    }

    .header-section__subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (min-width: 768px) {
    .md\:text-xl {
        font-size: 20px !important;
        line-height: 0.7rem !important;
    }
}

:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --accent-color: #ff5a5f;
    --accent-hover: #e0484d;
    --bg-input: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-radius: 12px;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 10px 40px -5px rgba(0, 0, 0, 0.08);
}

#turForm {
    background: #dbdbdb;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    margin: 0px;
    max-width: inherit;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 1px 4px 6px -1px rgb(172, 170, 170), 0 10px 15px -3px rgba(211, 207, 207, 0.53);
}

#turForm h2 {
    display: none;
}

.form-floating-pro {
    position: relative;
    margin-bottom: 12px;
}

.form-floating-pro .form-select-pro, .form-floating-pro .form-control-pro {
    width: 100%;
    height: 65px;
    padding: 5px 10px 5px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    background-color: var(--bg-input);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.form-floating-pro .form-select-pro:hover,
.form-floating-pro .form-control-pro:hover {
    background-color: #fff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.form-floating-pro .form-select-pro:focus,
.form-floating-pro .form-control-pro:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-floating-pro label {
    position: absolute;
    top: 20%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 15px;
    pointer-events: none;
    transition: all 0.2s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-floating-pro label i {
    color: #94a3b8;
    font-size: 16px;
    transition: color 0.3s;
}

.form-select-pro:valid+label,
.form-control-pro:not(:placeholder-shown)+label,
.form-select-pro:focus+label,
.form-control-pro:focus+label {
    top: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #036;
    transform: translateY(0);
}

.form-select-pro:focus+label i,
.form-control-pro:focus+label i {
    color: var(--primary-color);
}

.chevron-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e1;
    pointer-events: none;
    font-size: 14px;
    transition: transform 0.3s;
}

.form-floating-pro:focus-within .chevron-icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary-color);
}

.btn-search-pro {
    width: 100%;
    height: 50px;
    background: #8cc63f;
    color: #fff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(140, 198, 63, 0.3);
}

.btn-search-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 90, 95, 0.4);
    background: linear-gradient(135deg, #ff6b6b 0%, #e0484d 100%);
}

.btn-search-pro:active {
    transform: translateY(1px);
}

.guest-selector-wrapper {
    position: relative;
}

.guest-dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.guest-dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.guest-dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.guest-title {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 2px;
}

.guest-subtitle {
    font-size: 13px;
    color: var(--text-light);
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-counter {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-counter:hover {
    border-color: var(--text-dark);
    background-color: #f8fafc;
}

.btn-counter:active {
    transform: scale(0.95);
}

.counter-value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.child-ages-area {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.child-ages-area:not(:empty) {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.child-select-wrap select {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    width: 100%;
    margin-top: 5px;
    background-color: #fff;
}

.btn-guest-done {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background-color: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-guest-done:hover {
    background-color: #000;
}

@media (max-width: 991px) {
    #turForm {
        padding: 15px;
    }

    .col-lg-3,
    .col-lg-4,
    .col-lg-2 {
        margin-bottom: 15px;
    }

    .btn-search-pro {
        margin-top: 5px;
    }

    .guest-dropdown-content {
        width: 100%;
        left: 0;
        position: fixed;
        bottom: 0;
        top: auto;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        z-index: 10000;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    }

    .guest-dropdown-content.show {
        transform: translateY(0);
    }

    .guest-dropdown-content::before {
        display: none;
    }

    .guest-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .guest-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

:root {
    --card-bg: #ffffff;
    --card-border-radius: 16px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-blue: #3b82f6;
    --accent-orange: #f59e0b;
    --accent-green: #10b981;
    --btn-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.tour-card-master {
    display: flex;
    flex-wrap: wrap;
    background: var(--card-bg);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
}

.tour-card-master:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.tour-image-wrap {
    width: 35%;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.tour-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card-master:hover .tour-image-wrap img {
    transform: scale(1.05);
}

.badges-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.badge-item {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.badge-location {
    background: rgba(0, 0, 0, 0.6);
}

.badge-promo {
    background: var(--accent-orange);
}

.badge-success {
    background: var(--accent-green);
}

.tour-content-wrap {
    width: 40%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px dashed #e2e8f0;
}

.tour-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ts-card__meta-grid {
    display: grid;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 4px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.meta-item i {
    color: var(--accent-blue);
    width: 16px;
}

.tour-date-box {
    background-color: #f1f5f9;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.tour-action-wrap {
    width: 25%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    background: #fafafa;
}

.price-tag-wrap {
    margin-bottom: 15px;
}

.price-label {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.price-currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
}

.btn-inspect {
    background: var(--btn-gradient);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-inspect:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-details-toggle {
    font-size: 13px;
    color: var(--text-secondary);
    background: none;
    border: none;
    margin-top: 12px;
    cursor: pointer;
    text-decoration: underline;
}

.collapse-content-master {
    width: 100%;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 20px;
    display: none;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: var(--text-secondary);
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-row strong {
    color: var(--text-primary);
}

@media (max-width: 991px) {
    .tour-card-master {
        flex-direction: column;
    }

    .tour-image-wrap,
    .tour-content-wrap,
    .tour-action-wrap {
        width: 100%;
        border-right: none;
    }

    .tour-image-wrap {
        height: 200px;
    }

    .tour-action-wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 15px 24px;
        border-top: 1px solid #e2e8f0;
    }

    .btn-inspect {
        width: auto;
        padding: 10px 20px;
    }

    .price-tag-wrap {
        margin-bottom: 0;
    }
}

body {
    background-color: #f8fafc;
    color: #1e293b;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container.mt-5 {
    margin-top: 40px !important;
    margin-bottom: 60px;
}

.solsearch {
    background: #ffffff;
    padding: 2px;
    border-radius: 16px;
    position: -webkit-sticky;
    position: sticky;
    top: 2px;
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

.solsearch:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.solsearch h2 {
    font-size: 25px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 2px solid #f1f5f9;
    align-items: center;
    text-align: center;
}

.solsearch h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 18px;
    background: #1a3769;
    border-radius: 3px;
    margin-right: 10px;
}

.sonucbaslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 5px;
}

.sonucbaslik h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.5px;
    margin: 0;
    position: relative;
}

.sonucbaslik h2::after {
    content: '🚩';
    font-size: 20px;
    margin-left: 10px;
    opacity: 0.8;
}

.alert-warning {
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
    border-radius: 12px;
    padding: 20px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

@media (max-width: 991px) {
    .solsearch {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        z-index: 1;
    }

    .sonucbaslik h2 {
        font-size: 20px;
    }

    .container.mt-5 {
        margin-top: 20px !important;
    }
}

.sonucbaslik {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    font-size: x-large;
    font-weight: bold;
}

.sonucbaslik::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.sonucbaslik h2 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
}

.sonucbaslik .count-badge {
    background: #eff6ff;
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-card-master {
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    margin-bottom: 24px !important;
    background: #fff;
}

.col-md-12:nth-child(1) .tour-card-master {
    animation-delay: 0.1s;
}

.col-md-12:nth-child(2) .tour-card-master {
    animation-delay: 0.2s;
}

.col-md-12:nth-child(3) .tour-card-master {
    animation-delay: 0.3s;
}

.price-amount {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #111827;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.collapse-content-master {
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    border-top: 2px dashed #cbd5e1;
}

.breakdown-row strong {
    color: #0f172a;
    font-weight: 700;
}

.btn-inspect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-inspect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-inspect:hover::after {
    left: 100%;
}

.alert-warning {
    background: #ffffff;
    border: 2px dashed #fbbf24;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #4b5563;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: none;
}

.alert-warning::before {
    content: '\f071';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 40px;
    color: #fbbf24;
    margin-bottom: 10px;
    background: #fffbeb;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .sonucbaslik {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .sonucbaslik::before {
        width: 4px;
    }

    .sonucbaslik h2 {
        font-size: 18px;
    }

    .tour-card-master {
        margin-bottom: 20px !important;
    }
}

.ts-card {
    --ts-radius: 18px;
    --ts-border: 1px solid rgba(148, 163, 184, 0.35);
    --ts-bg: #ffffff;
    --ts-bg-alt: #f9fafb;
    --ts-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --ts-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --ts-primary: #2563eb;
    --ts-primary-soft: rgba(37, 99, 235, 0.08);
    --ts-danger: #ef4444;
    --ts-warning: #f97316;
    --ts-success: #16a34a;
    --ts-text-main: #0f172a;
    --ts-text-muted: #64748b;
    --ts-chip-bg: #0f172a;
    --ts-chip-text: #e5e7eb;
    display: grid;
    grid-template-columns: minmax(0, 2.8fr) minmax(0, 4fr) minmax(0, 3fr);
    gap: 18px;
    padding: 18px 20px;
    margin-bottom: 18px;
    border-radius: var(--ts-radius);
    border: var(--ts-border);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 55%),
        radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.18), transparent 55%),
        var(--ts-bg);
    box-shadow: var(--ts-shadow-soft);
    position: relative;
    overflow: hidden;
    transition:
        box-shadow 0.22s ease,
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.ts-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(59, 130, 246, .4), rgba(45, 212, 191, .4)) border-box;
    mask:
        linear-gradient(#000 0 0) padding-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.ts-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ts-shadow);
}

.ts-card:hover::before {
    opacity: 1;
}

.ts-card__image-col {
    align-self: stretch;
}

.ts-card__image-wrap {
    position: relative;
    border-radius: calc(var(--ts-radius) - 4px);
    overflow: hidden;
    height: 100%;
    background: #020617;
}

.ts-card__image {
    width: 100%;
    height: 100%;
    max-height: 248px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    filter: saturate(1.05) contrast(1.02);
}

.ts-card:hover .ts-card__image {
    transform: scale(1.06);
    filter: saturate(1.15) contrast(1.05);
}

.ts-card__badges {
    position: absolute;
    inset: 12px 12px auto 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    pointer-events: none;
}

.ts-badge {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.32);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.ts-badge i {
    font-size: 12px;
}

.ts-badge--location {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.88));
    color: var(--ts-chip-text);
}

.ts-badge--success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ecfdf5;
    border-color: rgba(22, 163, 74, 0.7);
}

.ts-card__content-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}

.ts-card__title h2 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
    color: var(--ts-text-main);
    font-weight: 700;
}

.ts-card__title h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, rgba(37, 99, 235, 0));
}

.ts-card__meta-grid {
    display: grid;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 40px;
    justify-content: left;
}

.ts-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ts-text-muted);
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.03);
}

.ts-meta-item i {
    font-size: 22px;
    color: #005892;
}

.ts-card__date-box {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(15, 23, 42, 0.04);
    color: var(--ts-text-main);
}

.ts-card__date-box i {
    color: #0f766e;
}

.ts-card__action-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ts-card__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.ts-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.ts-status--closed {
    background: rgba(239, 68, 68, 0.07);
    color: var(--ts-danger);
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.ts-status--closed i {
    font-size: 13px;
}

.ts-price-box {
    background: var(--ts-primary-soft);
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(37, 99, 235, 0.25);
}

.ts-price-box--warning {
    background: rgba(249, 115, 22, 0.06);
    border-color: rgba(249, 115, 22, 0.4);
}

.ts-price-box__label {
    font-size: 12px;
    color: var(--ts-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ts-price-box__value {
    align-items: baseline;
    gap: 4px;
    text-align: center;
}

.ts-price-box__amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--ts-primary);
}

.ts-price-box__currency {
    font-size: 13px;
    font-weight: 600;
    color: var(--ts-text-main);
}

.ts-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.ts-btn {
    width: 100%;
    border-radius: 999px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 9px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        transform 0.16s ease,
        box-shadow 0.18s ease;
}

.ts-btn i {
    font-size: 12px;
}

.ts-btn--primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #e5e7eb;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.ts-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.4);
}

.ts-btn--ghost {
    background: transparent;
    color: var(--ts-text-main);
    border: 1px solid rgba(148, 163, 184, 0.6);
    backdrop-filter: blur(6px);
}

.ts-btn--ghost:hover {
    background: rgba(15, 23, 42, 0.04);
}

.ts-btn--disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.ts-card__details {
    margin-top: 8px;
    padding: 10px 14px 2px;
    border-radius: 14px;
    background: var(--ts-bg-alt);
    border: 1px dashed rgba(148, 163, 184, 0.6);
    display: none;
}

.ts-card__details.is-open {
    display: block;
}

.ts-breakdown-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: var(--ts-text-main);
    padding: 4px 0;
}

.ts-breakdown-row small {
    color: var(--ts-text-muted);
    font-size: 11px;
}

.ts-breakdown-row strong {
    font-weight: 700;
}

.ts-breakdown-row--footer {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px dashed rgba(148, 163, 184, 0.6);
}

.ts-text-success {
    color: var(--ts-success);
}

@media (max-width: 991.98px) {
    .ts-card {
        grid-template-columns: minmax(0, 1.8fr) minmax(0, 3fr);
        grid-template-rows: auto auto;
    }

    .ts-card__action-col {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
        padding-top: 10px;
        margin-top: 6px;
    }

    .ts-card__buttons {
        flex-direction: row;
    }

    .ts-btn {
        font-size: 12px;
        padding: 8px 10px;
    }
}

@media (max-width: 767.98px) {
    .ts-card {
        grid-template-columns: 1fr;
        padding: 14px 12px;
    }

    .ts-card__image {
        max-height: 220px;
    }

    .ts-card__buttons {
        flex-direction: column;
    }
}

.date-input-pro {
    color: #333;
    font-family: inherit;
    cursor: text;
}

.form-floating-pro input[type="date"]+label {
    top: 0.5rem;
    font-size: 0.75rem;
    padding: 0 0.25rem;
    background: #fff;
    transform: translateY(0);
    z-index: 2;
    color: #007bff;
    opacity: 1;
}

.date-input-pro::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%23333" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}

.date-input-pro::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}
/* ============================= */
/* GALERİ GENEL */
/* ============================= */

.modern-gallery-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

/* ============================= */
/* MAIN SLIDER */
/* ============================= */

.swiper.mainSlider {
    width: 100%;
    height: 590px;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Slide */
.swiper.mainSlider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
}

/* Resim */
.swiper.mainSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================= */
/* DESKTOP (>=768px) */
/* Fade effect destek – HAYALET YOK */
/* ============================= */

@media (min-width: 768px) {
    .swiper.mainSlider {
        overflow: hidden;
    }
}

/* ============================= */
/* MOBİL (<768px) */
/* Yükseklik doğal – HEADER KAYBOLMAZ */
/* ============================= */

@media (max-width: 767px) {
    .swiper.mainSlider {
        height: auto;
    }

    .swiper.mainSlider img {
        height: auto;
        max-height: 60vh;
    }
}

/* ============================= */
/* ZOOM (DESKTOP HOVER) */
/* ============================= */

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-link:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Zoom ikon */
.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    color: #fff;
    font-size: 2rem;
    transition: all 0.25s ease;
    pointer-events: none;
}

.gallery-link:hover .zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ============================= */
/* THUMB SLIDER */
/* ============================= */

.swiper.thumbSlider {
    height: 100px;
    padding: 5px 0;
}

.swiper.thumbSlider .swiper-slide {
    opacity: 0.4;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s ease, border 0.2s ease;
}

.swiper.thumbSlider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #ff6b6b;
}

.swiper.thumbSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================= */
/* NAVIGATION */
/* ============================= */

.swiper-button-next,
.swiper-button-prev {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    backdrop-filter: blur(6px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* --- Tur Özellikleri Bilgi Çubuğu --- */
.tour-info-bar {
    margin-top: 20px;
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #eef2f5;
    /* İkon arka plan rengi */
    color: #2c3e50;
    /* İkon rengi */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.info-value {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Renkli İkonlar için Özelleştirme (Opsiyonel) */
.info-box.lunch .info-icon {
    color: #ff9f43;
    background: #fff0e1;
}

.info-box.cancel .info-icon {
    color: #28c76f;
    background: #e5f8ed;
}

.info-box.type .info-icon {
    color: #00cfe8;
    background: #e0f9fc;
}

.info-box.child .info-icon {
    color: #ea5455;
    background: #fceaea;
}

/* Sidebar Genel Alanı */
.tour-details-sidebar {
    padding: 10px 5px;
    top: 20px;
}

/* Konum Etiketi */
.tour-location {
    font-size: 0.9rem;
    color: #ff6b6b;
    /* Canlı bir mercan rengi veya senin tema rengin */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-location i {
    font-size: 1rem;
}

/* Ana Başlık */
.tour-title {
    font-size: 1.7rem;
    /* Büyük ve okunaklı */
    font-weight: 800;
    /* Kalın font */
    color: #2c3e50;
    /* Koyu lacivert/gri tonu - Siyah yerine tercih edilir */
    line-height: 1.2;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    /* Eğer yüklü değilse sistem fontunu kullanır */
}

/* Başlık Altı Dekoratif Çizgi */
.title-separator {
    width: 60px;
    /* Kısa çizgi */
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8e53 100%);
    /* Gradyan geçiş */
    border-radius: 2px;
    margin-bottom: 20px;
}

/* Mobilde Görünüm Ayarı */
@media (max-width: 768px) {
    .tour-title {
        font-size: 1.8rem;
        /* Mobilde biraz küçültelim */
    }

    .tour-details-sidebar {
        margin-top: 20px;
        /* Galeriden biraz uzaklaşsın */
        padding: 0;
    }
}

/* --- Modern Rezervasyon Kartı --- */
/* --- Modern Rezervasyon Kartı (Kaya Yachting Teması) --- */
.booking-card {
    background: #fff;
    border: 1px solid #e1e5ee;
    /* Çok hafif mavi-gri sınır */
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(4, 44, 92, 0.08);
    /* Lacivert gölge */
    position: relative;
    overflow: hidden;
}

/* Başlık */
.booking-card-header {
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 15px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #042c5c;
    /* LOGO RENGİ: Koyu Lacivert */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tarih ve Kişi Özeti */
.booking-summary-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.summary-item {
    background: #f0f4f8;
    /* Çok açık mavi zemin */
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #042c5c;
    /* Lacivert Yazı */
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dce4ec;
}

.summary-item i {
    color: #f5a623;
    /* İkonlar ALTIN/TURUNCU olsun (Sitedeki buton rengi) */
    font-size: 1.1rem;
}

/* Ayırıcı Çizgi */
.booking-divider {
    height: 1px;
    background: #eef2f5;
    margin: 15px 0;
}

/* Fiyat Satırları */
.item-name {
    font-size: 0.95rem;
    color: #555;
}

.item-name .count {
    font-weight: 700;
    color: #042c5c;
    /* Lacivert */
}

.item-price {
    font-weight: 700;
    color: #333;
}

.breakdown-row.free-item .item-price {
    color: #27ae60;
    /* Yeşil (Ücretsiz için standart) */
}

/* Toplam Tutar */
.total-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #555;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #042c5c;
    /* LOGO RENGİ */
}

/* Ön Ödeme Kutusu (ÖNEMLİ DEĞİŞİKLİK) */
.prepayment-box {
    background: #eef4fb;
    /* Kırmızı yerine çok açık MAVİ */
    border: 1px dashed #042c5c;
    /* Lacivert kesikli çizgi */
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
}

.prepayment-label {
    font-size: 0.9rem;
    color: #042c5c;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge-prepayment {
    background: #042c5c;
    /* Lacivert Zemin */
    color: #fff;
    /* Beyaz Yazı */
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.prepayment-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #042c5c;
    /* Lacivert */
    margin: 5px 0;
}

.prepayment-note {
    font-size: 0.85rem;
    color: #666;
}

/* Buton (Sitedeki Sarı/Turuncu Butonlara Uygun) */
.btn_1.full-width.purchase {
    width: 100%;
    border-radius: 8px;
    /* Daha köşeli modern buton */
    font-size: 1.1rem;
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;

    /* Sitedeki 'İNCELE' butonu gibi Turuncu/Sarı yapalım */
    background: #ffb400;
    color: #042c5c;
    /* Yazısı Lacivert olsun (Okunabilirlik için) */

    border: none;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
}

.btn_1.full-width.purchase:hover {
    background: #e5a100;
    /* Hoverda biraz koyulaşsın */
    transform: translateY(-2px);
}

/* Alternatif: Eğer butonu Mavi istersen bunu kullan:
.btn_1.full-width.purchase {
    background: #042c5c; 
    color: #fff;
}
*/

.secure-text {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.secure-text i {
    color: #27ae60;
    /* Yeşil Kilit İkonu */
}

/* --- Tur Kısa Açıklama Alanı (Kaya Yachting Style) --- */
.tour-highlight-text {
    background: #f8fbfe;
    /* Çok çok uçuk mavi zemin (Deniz hissi) */
    border-left: 4px solid #042c5c;
    /* Marka Rengi: Lacivert Çizgi */
    padding: 25px 60px;
    border-radius: 0 12px 12px 0;
    /* Sadece sağ tarafları yuvarla */
    margin: 20px 0 30px 0;
    /* Üstten ve alttan boşluk */
    position: relative;
    box-shadow: 0 5px 15px rgba(4, 44, 92, 0.03);
    /* Çok hafif gölge */
}

/* Dekoratif Tırnak İkonu */
.quote-icon {
    font-size: 2rem;
    color: #f5a623;
    /* Marka Rengi: Altın/Sarı */
    opacity: 0.2;
    /* Silik görünüm, metni ezmesin */
    position: absolute;
    top: 15px;
    left: 15px;
}

/* Metin İçeriği */
.desc-content {
    font-family: 'Poppins', sans-serif;
    /* Modern Font */
    font-size: 1.1rem;
    /* Standarttan biraz büyük */
    line-height: 1.8;
    /* Satır aralığı geniş, rahat okuma */
    color: #4a5568;
    /* Tam siyah değil, yumuşak koyu gri */
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.desc-content p {
    margin-bottom: 0;
    /* İçerdeki p'nin ekstra boşluğunu al */
}

/* Mobilde Düzenleme */
@media (max-width: 768px) {
    .tour-highlight-text {
        padding: 20px;
        font-size: 1rem;
    }
}

/* --- Tur Detay Metin Alanı (Kaya Yachting Style) --- */

/* Genel Kapsayıcı */
.tour-description-wrapper {
    background: #fff;
    padding-right: 20px;
    /* Sağ taraftaki sidebar ile mesafe */
    margin-bottom: 40px;
}

/* Bölüm Başlığı */
.desc-header {
    margin-bottom: 25px;
}

.desc-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #042c5c;
    /* Lacivert */
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

.desc-divider {
    width: 50px;
    height: 3px;
    background: #f5a623;
    /* Gold/Turuncu Çizgi */
    border-radius: 2px;
}

/* --- Editörden Gelen İçeriğin Formatlanması (.editor-content) --- */

/* Paragraflar */
.editor-content {
    font-family: 'Open Sans', sans-serif;
    /* Okunabilirlik için */
    font-size: 1rem;
    line-height: 1.8;
    /* Satır aralığı geniş ferah */
    color: #444;
    /* Göz yormayan koyu gri */
}

.editor-content p {
    margin-bottom: 20px;
}

/* Başlıklar (h2, h3, h4...) */
.editor-content h2,
.editor-content h3,
.editor-content h4 {
    color: #042c5c;
    /* Lacivert Başlıklar */
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.editor-content h2 {
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.editor-content h3 {
    font-size: 1.25rem;
}

/* Listeler (Madde İşaretleri) - EN ÖNEMLİ KISIM */
.editor-content ul {
    list-style: none;
    /* Standart noktaları kaldır */
    padding-left: 0;
    margin-bottom: 25px;
}

.editor-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

/* Maddelerin başına Gold renkli 'Tik' işareti koyuyoruz */
.editor-content ul li::before {
    content: '\f00c';
    /* FontAwesome Check İkonu */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    /* Hizalama */
    color: #f5a623;
    /* Gold Rengi */
    font-size: 0.9rem;
}

/* Alternatif: Numaralı Listeler */
.editor-content ol {
    padding-left: 20px;
    color: #042c5c;
    font-weight: 600;
}

.editor-content ol li {
    margin-bottom: 10px;
}

.editor-content ol li span, .editor-content ol li p {
    color: #555;
    font-weight: 400;
}

/* Görseller (Resimler taşmasın) */
.editor-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Linkler */
.editor-content a {
    color: #f5a623;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted #f5a623;
    transition: all 0.3s;
}

.editor-content a:hover {
    color: #042c5c;
    border-bottom: 1px solid #042c5c;
}

/* Mobilde Sağ Boşluğu Kaldır */
@media (max-width: 768px) {
    .tour-description-wrapper {
        padding-right: 0;
    }
}

/* --- Kaya Yachting Timeline Tasarımı --- */

.tour-program-sidebar {
    background: #fff;
    padding: 0;
    margin-top: 20px;
}

.program-main-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #042c5c;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-main-title i {
    color: #f5a623;
    /* Gold İkon */
}

/* Timeline Kapsayıcı */
.ky-timeline-wrapper {
    position: relative;
    padding-left: 10px;
}

/* Tekil Satır */
.ky-timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    position: relative;
}

.ky-timeline-item.last-item {
    padding-bottom: 0;
}

/* Sol İşaretçi Alanı */
.ky-timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    /* Genişlik sabit */
    flex-shrink: 0;
}

.ky-time-badge {
    background: #042c5c;
    /* Lacivert Zemin */
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(4, 44, 92, 0.2);
}

/* Dikey Çizgi */
.ky-line {
    width: 2px;
    background: #e1e5ee;
    /* Silik Çizgi */
    flex-grow: 1;
    margin-top: 5px;
    background-image: linear-gradient(to bottom, #042c5c 50%, transparent 50%);
    background-size: 2px 10px;
    /* Kesikli Çizgi Efekti */
    background-repeat: repeat-y;
}

.last-item .ky-line {
    display: none;
    /* Son elemanda çizgi olmasın */
}

/* İçerik Alanı */
.ky-timeline-content {
    flex-grow: 1;
    background: #f8fbfe;
    /* Çok açık mavi zemin */
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    transition: transform 0.3s ease;
}

.ky-timeline-content:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: #f5a623;
    /* Hoverda Gold Sınır */
}

.ky-activity-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.ky-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.meta-tag {
    font-size: 0.75rem;
    color: #666;
    background: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #e1e5ee;
}

.meta-tag i {
    color: #f5a623;
    /* Gold İkon */
    margin-right: 4px;
}

/* Carousel (Resim Galerisi) Özelleştirme */
.ky-program-carousel {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.ky-program-carousel .carousel-item img {
    height: 180px;
    /* Dar alanda çok yüksek olmasın */
    object-fit: cover;
}

/* Oklar */
.ky-program-carousel .carousel-control-prev,
.ky-program-carousel .carousel-control-next {
    width: 30px;
    height: 30px;
    background: rgba(4, 44, 92, 0.7);
    /* Yarı saydam lacivert */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.ky-program-carousel .carousel-control-prev {
    left: 10px;
}

.ky-program-carousel .carousel-control-next {
    right: 10px;
}

.ky-program-carousel .carousel-control-prev-icon,
.ky-program-carousel .carousel-control-next-icon {
    width: 12px;
    height: 12px;
}

/* Noktalar (Indicators) */
.ky-program-carousel .carousel-indicators li {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
}

.ky-program-carousel .carousel-indicators .active {
    background-color: #f5a623;
    /* Aktif nokta Gold */
    opacity: 1;
}

/* --- Kaya Yachting Text-Only Timeline --- */

.ky-timeline-wrapper {
    position: relative;
    padding: 10px 0;
}

/* Tekil Satır Yapısı */
.ky-timeline-item {
    display: flex;
    gap: 15px;
    /* Sol ve Sağ arasındaki boşluk */
    padding-bottom: 25px;
    /* Alt elemanla mesafe */
}

.ky-timeline-item.last-item {
    padding-bottom: 0;
}

/* --- SOL TARAF (MARKER) --- */
.ky-timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 55px;
    /* Sabit genişlik */
    flex-shrink: 0;
}

.ky-time-badge {
    background: #042c5c;
    /* Lacivert (Logo Rengi) */
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(4, 44, 92, 0.15);
    text-align: center;
    width: 100%;
}

/* Dikey Çizgi */
.ky-line {
    width: 2px;
    background-image: linear-gradient(to bottom, #042c5c 40%, rgba(4, 44, 92, 0.1) 100%);
    flex-grow: 1;
    margin-top: 5px;
    border-radius: 2px;
}

.last-item .ky-line {
    display: none;
    /* Son elemanda çizgi gizlenir */
}

/* --- SAĞ TARAF (İÇERİK) --- */
.ky-timeline-content {
    flex-grow: 1;
    background: #fdfdfd;
    padding: 15px 20px;
    border-radius: 0 12px 12px 12px;
    /* Sol üst köşe düz, diğerleri yuvarlak */
    border-left: 3px solid #f5a623;
    /* Gold Çizgi Vurgusu */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ky-timeline-content:hover {
    transform: translateX(5px);
    /* Hoverda hafif sağa kayma */
    box-shadow: 0 5px 20px rgba(4, 44, 92, 0.08);
    background: #fff;
}

/* Başlık */
.ky-activity-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

/* Meta Bilgiler (Süre, Konum) */
.ky-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-tag {
    font-size: 0.8rem;
    color: #666;
    background: #f4f6f8;
    padding: 4px 10px;
    border-radius: 20px;
    /* Hap şeklinde etiket */
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-tag i {
    color: #f5a623;
    /* Gold İkon */
    font-size: 0.9rem;
}

/* product_page.css veya custom.css dosyanıza ekleyin */

.reservation-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.card-title {
    color: #007bff;
    /* Veya temanızın ana rengi */
    font-weight: 600;
}

.form-label-custom {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

/* Kişi Sayacı Stilleri */
.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.guest-title {
    font-weight: 600;
}

.guest-controls {
    display: flex;
    align-items: center;
}

.btn-counter {
    background: #f8f9fa;
    border: 1px solid #ced4da;
    color: #007bff;
    width: 30px;
    height: 30px;
    line-height: 1;
    padding: 0;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-counter:hover {
    background-color: #e9ecef;
    border-color: #007bff;
}

.counter-value {
    display: inline-block;
    width: 30px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.guest-dropdown-content {
    border: 1px solid #ccc;
    border-top: none;
    padding: 15px;
    background-color: #fff;
    z-index: 1000;
    /* Diğer elementlerin üzerinde görünmesini sağlar */
    border-radius: 0 0 8px 8px;
}

.child-age-row label {
    font-size: 0.85rem;
}

.child-age-row input {
    max-width: 70px;
    /* Yaş inputunu daraltır */
    display: inline-block;
    text-align: center;
}

/* Hesaplama Sonucu Stilleri */
.fiyat-satiri {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dotted #eee;
}

.fiyat-satiri:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #007bff;
    font-size: 1.1em;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #ddd;
}

/* Resim kapsayıcısının pozisyonunu koru (zaten varsa tekrar eklemene gerek yok) */
.ts-card__image-wrap {
    position: relative;
    overflow: hidden;
    /* Diğer mevcut stillerin... */
}

/* Genel Köşe Etiketi Stili */
.ts-corner-label {
    position: absolute;
    top: 210px;
    /* Alttan boşluk */
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    line-height: 1;
}

/* SOL ALT ETİKET (Örn: Turuncu - Fırsat) */
.ts-label-left {
    left: 10px;
    right: auto;
    background-color: #f39c12;
    /* Turuncu Vurgu */
    /* İhtiyacınıza göre renk gradient kullanabilirsiniz: 
       background: linear-gradient(45deg, #f1c40f, #e67e22); */
}

/* SAĞ ALT ETİKET (Örn: Mor - Çok Satan) */
.ts-label-right {
    right: 10px;
    left: auto;
    background-color: #8e44ad;
    /* Mor Vurgu */
    /* İhtiyacınıza göre renk gradient kullanabilirsiniz: 
       background: linear-gradient(45deg, #9b59b6, #8e44ad); */
}

/* Bu rozetlerin etiketlerle çakışmaması için dikey konumunu korumalıyız */
.ts-card__badges {
    position: absolute;
    top: 0px;
    /* Üst kısımda kalsın */
    left: 10px;
    right: 10px;
    z-index: 10;
    /* Diğer stiliniz (display: flex, gap: 8px) burada kalmalı */
}

/* Mobilde biraz küçültelim ki resmi kapatmasın */
@media (max-width: 768px) {
    .ts-corner-label {
        font-size: 10px;
        padding: 4px 8px;
        bottom: 8px;
    }

    .ts-label-left {
        left: 8px;
    }

    .ts-label-right {
        right: 8px;
    }
}



/* GENEL KART DETAY YAPISI */
.ts-card__details {
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: none;
    /* Varsayılan gizli */
}

.ts-card__details.is-open {
    display: block;
    /* Açılınca görünür */
}

.ts-detail-inner {
    padding: 20px;
}

/* BAŞLIKLAR */
.ts-detail-title {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 8px;
}

.ts-detail-title i {
    color: #6b7280;
    font-size: 14px;
}

/* FİYAT BÖLÜMÜ */
.ts-price-summary {
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

.ts-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4b5563;
}

.ts-price-row .price {
    font-weight: 700;
    color: #111;
}

.ts-price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #d1d5db;
}

.ts-price-total .total-label {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ts-price-total .total-amount {
    font-size: 18px;
    font-weight: 800;
    color: #2563eb;
}

/* TUR ÖZELLİKLERİ */
.ts-mini-feature {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    height: 100%;
}

.ts-mini-feature:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.ts-mini-feature i {
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.ts-mini-feature i.text-primary {
    color: #2563eb;
    background: #eff6ff;
}

.ts-mini-feature i.text-warning {
    color: #f59e0b;
    background: #fffbeb;
}

.ts-mini-feature i.text-info {
    color: #06b6d4;
    background: #ecfeff;
}

.ts-mini-feature-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.ts-mini-feature .lbl {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
}

.ts-mini-feature .val {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* İPUÇLARI */
.ts-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ts-tag-pill {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ts-tag-pill i {
    color: #f59e0b;
    font-size: 13px;
}

/* RESPONSIVE AYARLAR */
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #e5e7eb;
    }

    .ts-detail-col {
        height: 100%;
    }
}

@media (max-width: 991px) {
    .ts-detail-col {
        border-bottom: 1px solid #e5e7eb;
    }

    .ts-detail-col:last-child {
        border-bottom: none;
    }

    .ts-detail-inner {
        padding: 15px;
    }
}

/* 1. ADIM: Ana Kartın sarmalamaya izin vermesini sağlıyoruz */
.ts-card {
    display: flex;
    /* Mevcut yapınızda muhtemelen var */
    flex-wrap: wrap !important;
    /* BU ÇOK ÖNEMLİ: Öğelerin alt satıra geçmesine izin verir */
}

/* 2. ADIM: Detay kutusuna "Sen tek başına bir satırsın" diyoruz */
.ts-card__details {
    width: 100% !important;
    /* Tam genişlik */
    flex-basis: 100% !important;
    /* Flex yapısında tam yer kapla */
    min-width: 100%;
    /* Sıkışmayı önle */

    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    margin-top: 0;
    /* Üst boşluğu sıfırla */
    display: none;
    /* Varsayılan gizli */
}

/* Açıldığında görünür olsun */
.ts-card__details.is-open {
    display: block;
}

/* Diğer iç ayarlar (Önceki kodlardan) */
.ts-detail-inner {
    padding: 20px;
}

/* =========================================
   SAĞ SÜTUN (FİYAT VE BUTONLAR) DÜZELTMESİ
   ========================================= */

/* Sadece Masaüstü (Geniş Ekranlar) İçin Ayarlar */
@media (min-width: 992px) {

    .ts-card__action-col {
        /* Sol tarafa gri çizgi ekle */
        border-left: 1px solid #e5e7eb;


        /* İçeriği dikeyde ortala ve yay */
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 180px;
        /* Kartın yüksekliği kadar esnesin */
    }


}

/* Butonların arasını açalım */
.ts-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* İki buton arasına 10px boşluk */
    margin-top: 15px;
    width: 100%;
}

/* Butonların tam genişlikte ve şık durması için */
.ts-card__buttons .ts-btn {
    width: 100%;
    /* Butonları kutuya yay */
    text-align: center;
    justify-content: center;
    padding: 10px 15px;
}

/* Fiyat kutusunu biraz güzelleştirelim */
.ts-price-box {
    background: #f9fafb;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    margin-bottom: 10px;
    text-align: center;
}

.ts-card__meta-grid {
    display: grid;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 20px !important;
    justify-content: left;
}

.ts-badge--location {
    background: radial-gradient(circle at top left, rgba(0, 51, 172, 0.95), rgba(21, 21, 21, 0.88));
    color: #fff;
    margin-top: 5px !important;
}

.form-select-pro:valid+label,
.form-control-pro:not(:placeholder-shown)+label,
.form-select-pro:focus+label,
.form-control-pro:focus+label {
    top: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #036;
    transform: translateY(0);
}

.result-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    position: relative;
    padding-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Sol tarafta ince çizgi efekti */
.result-title::before {
    content: "";
    width: 4px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    position: relative;
    left: 0;
}

/* Altında ince vurgu çizgisi */
.result-title::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -6px;
    width: 60%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.15), rgba(14, 165, 233, 0.0));
}

/* Küçük ekranlarda biraz küçültelim */
@media (max-width: 576px) {
    .result-title {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }
}

.ts-detail-inner {
    padding: 2px;
}

.solsearch h2 {
    font-size: 25px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0px;
    padding: 20px;
    align-items: center;
    text-align: center;
    border-bottom: none
}

@media (max-width: 576px) {
    .solsearch h2 {
        padding: 0px;

    }
}

.solsearch {
    background: #b7b7b71c;
    padding: 12px;
    border-radius: 16px;
    position: -webkit-sticky;
    position: sticky;
    top: 2px;
    z-index: 10;

    /* Modern shadow */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.06);

    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

/* Küçük hover efekti de hoş durur */
.solsearch:hover {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12),
        0 10px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

#page {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#page:after {
    display: none !important;
}


/* Form Alanı Genel */
.reservation-container {
    padding: 20px 0;
    background-color: #f8fbfe;
    margin-bottom: 0px !important;
}

/* Sol Taraf: Form Kutusu */
.form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(4, 44, 92, 0.05);
    border: 1px solid #e1e5ee;
    margin-bottom: 20px;
}

.form-header {
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.form-title {
    color: #042c5c;
    /* Lacivert */
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-title i {
    color: #f5a623;
    /* Gold */
}

/* Inputlar */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dce4ec;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
}

.form-control-custom:focus {
    border-color: #f5a623;
    /* Gold odaklanma */
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
    outline: none;
}

/* Yolcu Başlıkları */
.passenger-title {
    font-size: 1rem;
    font-weight: 700;
    color: #042c5c;
    margin-top: 10px;
    margin-bottom: 15px;
    background: #eef4fb;
    padding: 8px 12px;
    border-radius: 6px;
}

/* --- SAĞ TARAF: ÖZET KARTI (Önceki Sayfadan Miras Aldık + Güncelledik) --- */
.summary-card {
    background: #fff;
    border: 1px solid #042c5c;
    /* Lacivert Sınır */
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.summary-image {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.summary-body {
    padding: 20px;
}

.summary-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #042c5c;
    margin-bottom: 5px;
}

.summary-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

.summary-total {
    border-top: 2px dashed #eee;
    margin-top: 15px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    color: #042c5c;
    font-size: 1.2rem;
}

.summary-prepayment {
    background: #fff8e1;
    /* Çok açık sarı */
    color: #d35400;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #ffe0b2;
}

.btn-complete {
    width: 100%;
    background: #042c5c;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-complete:hover {
    background: #f5a623;
    color: #fff;
    transform: translateY(-2px);
}

/* KATEGORİLER SAYFALARI İÇİN Resim kapsayıcısının pozisyonunu koru (zaten varsa tekrar eklemene gerek yok) */
.ts-card__image-wrap {
    position: relative;
    overflow: hidden;
    /* Diğer mevcut stillerin... */
}

/* Genel Köşe Etiketi Stili */
.ts-corner-label {
    position: absolute;
    bottom: 10px;
    /* Alttan boşluk */
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    line-height: 1;
}

/* SOL ALT ETİKET (Örn: Turuncu - Fırsat) */
.ts-label-left {
    left: 10px;
    background-color: #f39c12;
    /* Turuncu */
    /* İstersen gradient kullanabilirsin: */
    /* background: linear-gradient(45deg, #f1c40f, #e67e22); */
}

/* SAĞ ALT ETİKET (Örn: Mor - Çok Satan) */
.ts-label-right {
    right: 10px;
    background-color: #8e44ad;
    /* Mor */
    /* background: linear-gradient(45deg, #9b59b6, #8e44ad); */
}

/* Mobilde biraz küçültelim ki resmi kapatmasın */
@media (max-width: 768px) {
    .ts-corner-label {
        font-size: 10px;
        padding: 4px 8px;
        bottom: 8px;
    }

    .ts-label-left {
        left: 8px;
    }

    .ts-label-right {
        right: 8px;
    }
}



/* GENEL KART DETAY YAPISI */
.ts-card__details {
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: none;
    /* Varsayılan gizli */
}

.ts-card__details.is-open {
    display: block;
    /* Açılınca görünür */
}

.ts-detail-inner {
    padding: 20px;
}

/* BAŞLIKLAR */
.ts-detail-title {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 8px;
}

.ts-detail-title i {
    color: #6b7280;
    font-size: 14px;
}

/* FİYAT BÖLÜMÜ */
.ts-price-summary {
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

.ts-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4b5563;
}

.ts-price-row .price {
    font-weight: 700;
    color: #111;
}

.ts-price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #d1d5db;
}

.ts-price-total .total-label {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ts-price-total .total-amount {
    font-size: 18px;
    font-weight: 800;
    color: #2563eb;
}

/* TUR ÖZELLİKLERİ */
.ts-mini-feature {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    height: 100%;
}

.ts-mini-feature:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.ts-mini-feature i {
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.ts-mini-feature i.text-primary {
    color: #2563eb;
    background: #eff6ff;
}

.ts-mini-feature i.text-warning {
    color: #f59e0b;
    background: #fffbeb;
}

.ts-mini-feature i.text-info {
    color: #06b6d4;
    background: #ecfeff;
}

.ts-mini-feature-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.ts-mini-feature .lbl {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
}

.ts-mini-feature .val {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* İPUÇLARI */
.ts-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ts-tag-pill {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ts-tag-pill i {
    color: #f59e0b;
    font-size: 13px;
}

/* RESPONSIVE AYARLAR */
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #e5e7eb;
    }

    .ts-detail-col {
        height: 100%;
    }
}

@media (max-width: 991px) {
    .ts-detail-col {
        border-bottom: 1px solid #e5e7eb;
    }

    .ts-detail-col:last-child {
        border-bottom: none;
    }

    .ts-detail-inner {
        padding: 15px;
    }
}

/* 1. ADIM: Ana Kartın sarmalamaya izin vermesini sağlıyoruz */
.ts-card {
    display: flex;
    /* Mevcut yapınızda muhtemelen var */
    flex-wrap: wrap !important;
    /* BU ÇOK ÖNEMLİ: Öğelerin alt satıra geçmesine izin verir */
}

/* 2. ADIM: Detay kutusuna "Sen tek başına bir satırsın" diyoruz */
.ts-card__details {
    width: 100% !important;
    /* Tam genişlik */
    flex-basis: 100% !important;
    /* Flex yapısında tam yer kapla */
    min-width: 100%;
    /* Sıkışmayı önle */

    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    margin-top: 0;
    /* Üst boşluğu sıfırla */
    display: none;
    /* Varsayılan gizli */
}

/* Açıldığında görünür olsun */
.ts-card__details.is-open {
    display: block;
}

/* Diğer iç ayarlar (Önceki kodlardan) */
.ts-detail-inner {
    padding: 20px;
}

/* =========================================
   SAĞ SÜTUN (FİYAT VE BUTONLAR) DÜZELTMESİ
   ========================================= */

/* Sadece Masaüstü (Geniş Ekranlar) İçin Ayarlar */
@media (min-width: 992px) {

    .ts-card__action-col {
        /* Sol tarafa gri çizgi ekle */
        border-left: 1px solid #e5e7eb;

        /* İçerikleri çizgiden uzaklaştır */
        padding-left: 25px !important;
        margin-left: 65px;

        /* İçeriği dikeyde ortala ve yay */
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 180px;
        /* Kartın yüksekliği kadar esnesin */
    }

    /* Orta sütunun sağ tarafını biraz rahatlatalım */
    .ts-card__content-col {
        padding-right: 110px;
    }
}

/* Butonların arasını açalım */
.ts-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* İki buton arasına 10px boşluk */
    margin-top: 15px;
    width: 100%;
}

/* Butonların tam genişlikte ve şık durması için */
.ts-card__buttons .ts-btn {
    width: 100%;
    /* Butonları kutuya yay */
    text-align: center;
    justify-content: center;
    padding: 10px 15px;
}

/* Fiyat kutusunu biraz güzelleştirelim */
.ts-price-box {
    background: #f9fafb;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    margin-bottom: 10px;
    text-align: center;
}



/* === SOL SEARCH / FİLTRE SIDEBAR === */
.solsearch {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .35);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
    padding: 16px 14px;
    position: sticky;
    top: 90px;
}

/* Başlık */
.solsearch h2 {
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 14px;
    letter-spacing: .2px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solsearch h2:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 4px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 8px 18px rgba(59, 130, 246, .25);
}

/* Grup başlıkları */
.solsearch .sol-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.solsearch .fw-bold {
    font-size: 12px;
    font-weight: 900 !important;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: .7px;
}

/* Chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .25);
    background: rgba(15, 23, 42, .03);
    color: #0f172a;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.chip .x {
    font-weight: 900;
    opacity: .7
}

.chip:hover {
    transform: translateY(-1px);
    background: rgba(59, 130, 246, .08);
    border-color: rgba(59, 130, 246, .35);
}

.chip--clear {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .22);
}

.chip--clear:hover {
    background: rgba(239, 68, 68, .12);
}

.chip--info {
    background: rgba(99, 102, 241, .08);
    border-color: rgba(99, 102, 241, .22);
}

/* Search inputs */
.filter-search {
    position: relative;
    margin: 0 0 10px;
}

.filter-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    opacity: .55;
}

.filter-search input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .30);
    background: #fff;
    padding: 10px 34px 10px 34px;
    font-weight: 700;
    font-size: 13px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.filter-search input:focus {
    border-color: rgba(99, 102, 241, .6);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, .12);
}

.filter-search .clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 10px;
    border: 0;
    background: rgba(15, 23, 42, .06);
    font-weight: 900;
    cursor: pointer;
    opacity: .7;
}

.filter-search .clear:hover {
    opacity: 1
}

/* list-group görünümü */
.solsearch .list-group {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .20);
    background: #fff;
}

.solsearch .list-group-item {
    border: 0;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    padding: 11px 12px;
    font-weight: 800;
    font-size: 14px;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: background .18s ease, transform .18s ease, color .18s ease;
}

.solsearch .list-group-item:last-child {
    border-bottom: 0;
}

.solsearch .list-group-item .txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.solsearch .list-group-item:hover {
    background: rgba(59, 130, 246, .06);
    transform: translateX(2px);
    color: #0b2a55;
}

.solsearch .list-group-item.active {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.solsearch .list-group-item.active:hover {
    transform: none;
}

/* badge */
.solsearch .badge {
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .08) !important;
    color: #0f172a;
}

.solsearch .list-group-item.active .badge {
    background: rgba(255, 255, 255, .18) !important;
    color: #fff;
}

/* Mobil */
@media (max-width:991px) {
    .solsearch {
        position: relative;
        top: auto;
        margin-bottom: 14px;
    }
}

/* KATEGORİLER SAYFALARI İÇİN BİTER */


/* REZERVASYON SAYFASI */
.summary-note {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

.rez-note {
    font-size: .85rem;
    color: #64748b;
    line-height: 1.4;
}

.rez-message {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: .92rem;
    line-height: 1.35;
    border: 1px solid rgba(148, 163, 184, .35);
    background: #f8fafc;
}

.rez-message.is-success {
    border-color: rgba(34, 197, 94, .35);
    background: rgba(34, 197, 94, .08);
}

.rez-message.is-error {
    border-color: rgba(239, 68, 68, .35);
    background: rgba(239, 68, 68, .08);
}

.btn-loading {
    font-weight: 700;
}

/* ANA BUTON */
#btnReservationSubmit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    min-height: 52px;

    border-radius: 14px;
    border: none;

    background: linear-gradient(135deg,
            #2563eb 0%,
            #1d4ed8 50%,
            #1e40af 100%);

    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2px;

    cursor: pointer;
    overflow: hidden;

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.3s ease;
}

/* HOVER */
#btnReservationSubmit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 32px rgba(37, 99, 235, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ACTIVE (BASILI HAL) */
#btnReservationSubmit:active {
    transform: translateY(0);
    box-shadow:
        0 6px 14px rgba(37, 99, 235, 0.35),
        inset 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* LOADING HALİ */
#btnReservationSubmit:disabled {
    cursor: not-allowed;
    opacity: 0.9;
    background: linear-gradient(135deg,
            #64748b 0%,
            #475569 100%);
    box-shadow: none;
}

/* LOADING YAZISI */
#btnReservationSubmit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

/* SPINNER */
#btnReservationSubmit .btn-loading::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: spin 0.9s linear infinite;
}

/* SPINNER ANİMASYONU */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* MOBİL */
@media (max-width: 576px) {
    #btnReservationSubmit {
        min-height: 48px;
        font-size: 0.95rem;
        border-radius: 12px;
    }
}

/* REZERVASYON SAYFASI BITER */

/* === TUR ARAMA KARTI (SAĞ SİDEBAR) === */

.tour-search-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
    padding: 18px 18px 20px;
    margin-bottom: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.tour-search-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tour-search-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.tour-search-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
}

.tour-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-search-field {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .tour-search-field.date-field {
        flex: 0 0 55%;
    }

    .tour-search-field.guest-field {
        flex: 0 0 45%;
    }

    .tour-search-field.button-field {
        flex: 1 1 100%;
    }
}

.form-floating-pro {
    position: relative;
}

.form-control-pro.date-input-pro,
.form-control-pro {
    width: 100%;
    height: 65px;
    padding: 25px 40px 5px 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    background-color: var(--bg-input);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.form-control-pro:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.5);
    background: #ffffff;
}

.form-floating-pro label {
    position: absolute;
    left: 12px;
    top: -8px;
    background: #ffffff;
    padding: 0 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
}

.form-floating-pro label i {
    margin-right: 4px;
    color: #4f46e5;
}

/* Misafir seçici */
.guest-selector-wrapper {
    position: relative;
}

.guest-selector-wrapper .chevron-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9ca3af;
}

.guest-dropdown-content {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 14px 14px 10px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.18s ease;
}

.guest-dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 10px;
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.guest-info {
    display: flex;
    flex-direction: column;
}

.guest-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.guest-subtitle {
    font-size: 0.78rem;
    color: #6b7280;
}

.guest-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-counter {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn-counter:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.counter-value {
    min-width: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.child-ages-area {
    margin-top: 6px;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 4px;
}

.child-age-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.child-age-label {
    font-size: 0.8rem;
    color: #374151;
}

.child-age-select {
    flex: 0 0 80px;
    min-height: 32px;
    font-size: 0.85rem;
}

.guest-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.btn-guest-done {
    border: none;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #4f46e5;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.btn-guest-done:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

/* Ara butonu */
.btn-search-pro {
    width: 100%;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(79, 70, 229, 0.45);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}

.btn-search-pro:disabled {
    opacity: 0.7;
    cursor: wait;
    box-shadow: none;
}

.btn-search-pro:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(79, 70, 229, 0.55);
}

.btn-search-pro .btn-icon i {
    font-size: 0.9rem;
}

/* Sonuç kartı */
#turSearchResult {
    margin-top: 16px;
}

.tur-result-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 14px 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
    font-size: 0.9rem;
    color: #111827;
}

.tur-result-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.tur-result-card-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.tur-result-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.tur-result-total {
    font-size: 1rem;
    font-weight: 700;
    color: #16a34a;
}

.tur-result-error {
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 10px 12px;
    font-size: 0.86rem;
}

.tur-result-loading {
    font-size: 0.86rem;
    color: #4b5563;
}

.tour-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (min-width: 768px) {
    .tour-search-field.date-field {
        flex: 0 0 55%;
    }

    .tour-search-field.guest-field {
        flex: 0 0 45%;
    }

    .tour-search-field.button-field {
        flex: 1 1 100%;
    }
}

/* === Tarih + Kişi + Buton: alt alta, ortalanmış, %80 genişlik === */
.tour-search-row {
    display: flex;
    flex-direction: column;
    /* hepsi alt alta */
    align-items: center;
    /* ortala */
    gap: 10px;
}

.tour-search-field {
    width: 80%;
    /* her satır %80 */
    max-width: 480px;
    /* istersen limit */
}

/* Eski media-query’yi ezmek için daha spesifik tanım */
@media (min-width: 768px) {

    .tour-search-row .tour-search-field.date-field,
    .tour-search-row .tour-search-field.guest-field,
    .tour-search-row .tour-search-field.button-field {
        flex: 0 0 auto;
        width: 80%;
        max-width: 480px;
    }
}

.guest-dropdown-content {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 14px 14px 10px;
    z-index: 9999;
    /* yüksek tut */
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.18s ease;
}

.booking-card {
    position: relative;
    overflow: visible !important;
    /* kesmeyi bırak */
}

/* İçteki grid satırları da kesmesin */
.tour-search-row,
.tour-search-field,
.guest-selector-wrapper {
    position: relative;
    overflow: visible !important;
}

/* KATEGORI SAYFALARI */

/* Resim kapsayıcısının pozisyonunu koru (zaten varsa tekrar eklemene gerek yok) */
.ts-card__image-wrap {
    position: relative;
    overflow: hidden;
    /* Diğer mevcut stillerin... */
}

/* Genel Köşe Etiketi Stili */
.ts-corner-label {
    position: absolute;
    bottom: 10px;
    /* Alttan boşluk */
    padding: 5px 10px 20px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    line-height: 1;
}

/* SOL ALT ETİKET (Örn: Turuncu - Fırsat) */
.ts-label-left {
    left: 10px;
    background-color: #f39c12;
    /* Turuncu */
    /* İstersen gradient kullanabilirsin: */
    /* background: linear-gradient(45deg, #f1c40f, #e67e22); */
}

/* SAĞ ALT ETİKET (Örn: Mor - Çok Satan) */
.ts-label-right {
    right: 10px;
    background-color: #8e44ad;
    /* Mor */
    /* background: linear-gradient(45deg, #9b59b6, #8e44ad); */
}

/* Mobilde biraz küçültelim ki resmi kapatmasın */
@media (max-width: 768px) {
    .ts-corner-label {
        font-size: 10px;
        padding: 4px 8px;
        bottom: 8px;
    }

    .ts-label-left {
        left: 8px;
    }

    .ts-label-right {
        right: 8px;
    }
}


/* GENEL KART DETAY YAPISI */
.ts-card__details {
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: none;
    /* Varsayılan gizli */
}

.ts-card__details.is-open {
    display: block;
    /* Açılınca görünür */
}

.ts-detail-inner {
    padding: 20px;
}

/* BAŞLIKLAR */
.ts-detail-title {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 8px;
}

.ts-detail-title i {
    color: #6b7280;
    font-size: 14px;
}

/* FİYAT BÖLÜMÜ */
.ts-price-summary {
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
}

.ts-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4b5563;
}

.ts-price-row .price {
    font-weight: 700;
    color: #111;
}

.ts-price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #d1d5db;
}

.ts-price-total .total-label {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ts-price-total .total-amount {
    font-size: 18px;
    font-weight: 800;
    color: #2563eb;
}

/* TUR ÖZELLİKLERİ */
.ts-mini-feature {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 2px 2px;
    border-radius: 8px;
    transition: all 0.2s ease;
    height: 100%;
}

.ts-mini-feature:hover {
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.ts-mini-feature i {
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.ts-mini-feature i.text-primary {
    color: #2563eb;
    background: #eff6ff;
}

.ts-mini-feature i.text-warning {
    color: #f59e0b;
    background: #fffbeb;
}

.ts-mini-feature i.text-info {
    color: #06b6d4;
    background: #ecfeff;
}

.ts-mini-feature-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-size: 14px !important;
}

.ts-mini-feature .lbl {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
}

.ts-mini-feature .val {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* İPUÇLARI */
.ts-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ts-tag-pill {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ts-tag-pill i {
    color: #f59e0b;
    font-size: 13px;
}

/* RESPONSIVE AYARLAR */
@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid #e5e7eb;
    }

    .ts-detail-col {
        height: 100%;
    }
}

@media (max-width: 991px) {
    .ts-detail-col {
        border-bottom: 1px solid #e5e7eb;
    }

    .ts-detail-col:last-child {
        border-bottom: none;
    }

    .ts-detail-inner {
        padding: 15px;
    }
}

/* 1. ADIM: Ana Kartın sarmalamaya izin vermesini sağlıyoruz */
.ts-card {
    display: flex;
    /* Mevcut yapınızda muhtemelen var */
    flex-wrap: wrap !important;
    /* BU ÇOK ÖNEMLİ: Öğelerin alt satıra geçmesine izin verir */
}

/* 2. ADIM: Detay kutusuna "Sen tek başına bir satırsın" diyoruz */
.ts-card__details {
    width: 100% !important;
    /* Tam genişlik */
    flex-basis: 100% !important;
    /* Flex yapısında tam yer kapla */
    min-width: 100%;
    /* Sıkışmayı önle */

    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    margin-top: 0;
    /* Üst boşluğu sıfırla */
    display: none;
    /* Varsayılan gizli */
}

/* Açıldığında görünür olsun */
.ts-card__details.is-open {
    display: block;
}

/* Diğer iç ayarlar (Önceki kodlardan) */
.ts-detail-inner {
    padding: 0px;
}

/* =========================================
   SAĞ SÜTUN (FİYAT VE BUTONLAR) DÜZELTMESİ
   ========================================= */

/* Sadece Masaüstü (Geniş Ekranlar) İçin Ayarlar */
@media (min-width: 992px) {

    .ts-card__action-col {
        /* Sol tarafa gri çizgi ekle */
        border-left: 1px solid #e5e7eb;

        /* İçerikleri çizgiden uzaklaştır */
        padding-left: 25px !important;
        margin-left: 0px;

        /* İçeriği dikeyde ortala ve yay */
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 180px;
        /* Kartın yüksekliği kadar esnesin */
    }

    /* Orta sütunun sağ tarafını biraz rahatlatalım */
    .ts-card__content-col {
        padding-right: 110px;
    }
}

/* Butonların arasını açalım */
.ts-card__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* İki buton arasına 10px boşluk */
    margin-top: 15px;
    width: 100%;
}

/* Butonların tam genişlikte ve şık durması için */
.ts-card__buttons .ts-btn {
    width: 100%;
    /* Butonları kutuya yay */
    text-align: center;
    justify-content: center;
    padding: 10px 15px;
}

/* Fiyat kutusunu biraz güzelleştirelim */
.ts-price-box {
    background: #f9fafb;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    margin-bottom: 10px;
    text-align: center;
}



/* === SOL SEARCH / FİLTRE SIDEBAR === */
.solsearch {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .35);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
    padding: 16px 14px;
    position: sticky;
    top: 90px;
}

/* Başlık */
.solsearch h2 {
    font-size: 21px;
    font-weight: 900;
    margin: 0 0 1px;
    letter-spacing: .2px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solsearch h2:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 4px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    box-shadow: 0 8px 18px rgba(59, 130, 246, .25);
}

/* Grup başlıkları */
.solsearch .sol-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.solsearch .fw-bold {
    font-size: 12px;
    font-weight: 900 !important;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: .7px;
}

/* Chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .25);
    background: rgba(15, 23, 42, .03);
    color: #0f172a;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.chip .x {
    font-weight: 900;
    opacity: .7
}

.chip:hover {
    transform: translateY(-1px);
    background: rgba(59, 130, 246, .08);
    border-color: rgba(59, 130, 246, .35);
}

.chip--clear {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .22);
}

.chip--clear:hover {
    background: rgba(239, 68, 68, .12);
}

.chip--info {
    background: rgba(99, 102, 241, .08);
    border-color: rgba(99, 102, 241, .22);
}

/* Search inputs */
.filter-search {
    position: relative;
    margin: 0 0 10px;
}

.filter-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    opacity: .55;
}

.filter-search input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .30);
    background: #fff;
    padding: 10px 34px 10px 34px;
    font-weight: 700;
    font-size: 13px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.filter-search input:focus {
    border-color: rgba(99, 102, 241, .6);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, .12);
}

.filter-search .clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 10px;
    border: 0;
    background: rgba(15, 23, 42, .06);
    font-weight: 900;
    cursor: pointer;
    opacity: .7;
}

.filter-search .clear:hover {
    opacity: 1
}

/* list-group görünümü */
.solsearch .list-group {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .20);
    background: #fff;
}

.solsearch .list-group-item {
    border: 0;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    padding: 11px 12px;
    font-weight: 800;
    font-size: 14px;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: background .18s ease, transform .18s ease, color .18s ease;
}

.solsearch .list-group-item:last-child {
    border-bottom: 0;
}

.solsearch .list-group-item .txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.solsearch .list-group-item:hover {
    background: rgba(59, 130, 246, .06);
    transform: translateX(2px);
    color: #0b2a55;
}

.solsearch .list-group-item.active {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.solsearch .list-group-item.active:hover {
    transform: none;
}

/* badge */
.solsearch .badge {
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .08) !important;
    color: #0f172a;
}

.solsearch .list-group-item.active .badge {
    background: rgba(255, 255, 255, .18) !important;
    color: #fff;
}

/* Mobil */
@media (max-width:991px) {
    .solsearch {
        position: relative;
        top: auto;
        margin-bottom: 14px;
    }
}

/* KATEGORI SAYFALARI  BITER */
/* ================================================= */
/* === REZERVASYON ÖZET KARTI DETAY STİLLERİ === */
/* ================================================= */

/* Genel Özet Kartı Stili (Summary Card) */
/* CSS BLOKU AYNEN KALSIN (Kullanıcının verdiği tüm CSS) */
#page {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#page:after {
    display: none !important;
}


/* Form Alanı Genel */
.reservation-container {
    padding: 20px 0;
    background-color: #f8fbfe;
    margin-bottom: 0px !important;
}

/* Sol Taraf: Form Kutusu */
.form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(4, 44, 92, 0.05);
    border: 1px solid #e1e5ee;
    margin-bottom: 20px;
}

.form-header {
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.form-title {
    color: #042c5c;
    /* Lacivert */
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-title i {
    color: #f5a623;
    /* Gold */
}

/* Inputlar */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dce4ec;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
}

.form-control-custom:focus {
    border-color: #f5a623;
    /* Gold odaklanma */
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
    outline: none;
}

/* Yolcu Başlıkları */
.passenger-title {
    font-size: 1rem;
    font-weight: 700;
    color: #042c5c;
    margin-top: 10px;
    margin-bottom: 15px;
    background: #eef4fb;
    padding: 8px 12px;
    border-radius: 6px;
}

/* --- SAĞ TARAF: ÖZET KARTI (Önceki Sayfadan Miras Aldık + Güncelledik) --- */
.summary-card {
    background: #fff;
    border: 1px solid #042c5c;
    /* Lacivert Sınır */
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.summary-image {

    width: 100%;
    object-fit: cover;
}

.summary-body {
    padding: 20px;
}

.summary-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #042c5c;
    margin-bottom: 5px;
}

.summary-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1px;
    font-size: 0.95rem;
    color: #555;
}

.summary-total {
    border-top: 2px dashed #eee;
    margin-top: 15px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    color: #042c5c;
    font-size: 1.2rem;
}

.summary-prepayment {
    background: #fff8e1;
    /* Çok açık sarı */
    color: #d35400;
    padding: 10px;
    border-radius: 8px;
    margin-top: 1px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #ffe0b2;
}

.btn-complete {
    width: 100%;
    background: #042c5c;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    margin-top: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-complete:hover {
    background: #f5a623;
    color: #fff;
    transform: translateY(-2px);
}

/* REZERVAAYON SAYFASI BITER */


/* ================================================= */
/* === VİLLA BİLGİ ÇUBUĞU STİLİ (.tour-info-bar) === */
/* ================================================= */

:root {
    --villa-primary: #007AFE;
    --border-radius-sm: 8px;
    --box-bg: #ffffff;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tour-info-bar {
    margin-top: 30px;
    margin-bottom: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    background-color: var(--box-bg);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius-sm);
    padding: 6px;
    box-shadow: var(--shadow-light);
    transition: box-shadow 0.3s ease;
    height: 100%;
    /* Row ile hizalamayı sağlar */
}

.info-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--villa-primary);
    background-color: #f0f8ff;
    /* Çok açık mavi arka plan */
    margin-right: 1px;
}

.info-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.info-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.info-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark, #1f2937);
    white-space: nowrap;
    /* Değerlerin bölünmesini engelle */
}

/* Kategoriye Özel Renk İnce Ayarları (Opsiyonel) */
.info-box.capacity .info-icon {
    color: #28a745;
    background-color: #e6ffe6;
}

/* Yeşil vurgu */
.info-box.bedroom .info-icon {
    color: #ffc107;
    background-color: #fff8e1;
}

/* Sarı/Altın vurgu */
.info-box.bathroom .info-icon {
    color: #007bff;
    background-color: #e6f7ff;
}

/* Mavi vurgu */
.info-box.location .info-icon {
    color: #dc3545;
    background-color: #ffe8e8;
}

/* VİLLA DAHİL HARİÇ BAŞLAR */

.availability-calendar .calendar-table td {
    height: 80px;
    /* Yükseklik olmazsa takvim basık görünür */
    vertical-align: top;
    position: relative;
    cursor: default;
}

.availability-calendar .calendar-table td .date {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Fiyat etiketi stili */
.availability-calendar .calendar-table td .status {
    font-size: 11px;
    border-radius: 4px;
    padding: 2px 5px;
    display: inline-block;
    font-weight: 600;
}

/* Geçmiş Tarih */
.availability-calendar .calendar-table td.past-date {
    background-color: #f9f9f9;
    color: #ccc;
}



.feature-list-container {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    /* Eğer bir kutu içinde değilse bunu açabilirsin:
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee; */
}

/* Başlıklar */
.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-title.title-included {
    color: #27ae60;
    border-color: rgba(39, 174, 96, 0.2);
}

.feature-title.title-excluded {
    color: #c0392b;
    border-color: rgba(192, 57, 43, 0.2);
}

/* Liste Elemanları (Genel) */
.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    height: 100%;
    /* Yanyana elemanların yüksekliğini eşitler */
}

/* Hover Efekti */
.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* DAHİL Olanlar (Yeşil Tema) */
.item-included {
    background-color: #f0fdf4;
    /* Çok açık yeşil */
    color: #166534;
    /* Koyu yeşil yazı */
    border: 1px solid #bbf7d0;
}

.item-included i {
    color: #16a34a;
    font-size: 16px;
    margin-right: 10px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
}

/* HARİÇ Olanlar (Kırmızı Tema) */
.item-excluded {
    background-color: #fef2f2;
    /* Çok açık kırmızı */
    color: #991b1b;
    /* Koyu kırmızı yazı */
    border: 1px solid #fecaca;
}

.item-excluded i {
    color: #dc2626;
    font-size: 16px;
    margin-right: 10px;
    background: #fff;
    border-radius: 50%;
    padding: 3px 4px;
    /* Çarpı ikonu biraz dar olduğu için */
}

/* Boş Durum Uyarısı */
.alert-empty {
    background: #f8f9fa;
    color: #6c757d;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-style: italic;
    border: 1px dashed #dee2e6;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .feature-item {
        font-size: 13px;
        padding: 10px;
    }

    .feature-title {
        font-size: 15px;
    }
}

/* VİLLA DAHİL HARİÇ BİTER */
/* VILLA ONEMLİ NOT BOLUMU BAŞLAR */
.ts-inc-box {
    background-color: #fff;
    /* Çok açık yeşil arka plan */
    border: 1px solid #dcfce7;
    /* İnce yeşil çerçeve */
    border-left: 4px solid #22c55e;
    /* Sol tarafta kalın yeşil çizgi */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ts-inc-box:hover {
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

/* Başlık Alanı */
.ts-inc-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #bbf7d0;
    /* Kesikli çizgi ayırıcı */
}

/* Tik İkonu Yuvarlağı */
.ts-inc-header .icon-box {
    width: 32px;
    height: 32px;
    background-color: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.3);
}

/* Başlık Yazısı */
.ts-inc-header .title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #15803d;
    /* Koyu yeşil yazı */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* İçerik Yazısı */
.ts-inc-content {
    color: #374151;
    /* Koyu gri okunabilir metin */
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

/* Eğer metin nl2br ile geliyorsa satır araları düzgün dursun */
.ts-inc-content br {
    display: block;
    margin-bottom: 8px;
    content: "";
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .ts-inc-box {
        padding: 15px;
    }

    .ts-inc-header .title {
        font-size: 15px;
    }
}

/* VILLA ONEMLİ NOT BOLUMU BİTER*/
/* VILLA sıde info2 başlar*/
.ts-sidecard {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .35);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
    overflow: hidden;
    margin-top: 15px;
}

/* ✅ HAVALI HEADER */
.ts-sidecard__head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, .25);
    background:
        radial-gradient(1200px 120px at 10% 0%, rgba(59, 130, 246, .18), transparent 60%),
        radial-gradient(900px 120px at 90% 0%, rgba(34, 197, 94, .14), transparent 55%),
        linear-gradient(180deg, rgba(248, 250, 252, .95), #fff);
}

.ts-sidecard__head:after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, .75), rgba(34, 197, 94, .55), rgba(59, 130, 246, .2));
    border-radius: 99px;
}

.ts-sidecard__head-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ts-sidecard__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    color: #1d4ed8;
}

.ts-sidecard__title {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ts-sidecard__title strong {
    font-weight: 900;
    color: #0f172a;
    letter-spacing: .2px;
}

.ts-sidecard__title small {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.ts-sidecard__badge {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .06);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, .08);
    white-space: nowrap;
}

.ts-sidecard__body {
    padding: 10px 16px;
}

.ts-side-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(148, 163, 184, .35);
    font-size: 14px;
    align-items: center;
}

.ts-side-row:last-child {
    border-bottom: none;
}

/* ✅ ICON + LABEL */
.ts-side-row .k {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 52%;
}

.ts-side-row .k i {
    width: 18px;
    text-align: center;
    opacity: .9;
    color: #003b70;
}

.ts-side-row .v {
    font-weight: 800;
    color: #0f172a;
    text-align: right;
}

.ts-side-sep {
    height: 1px;
    background: rgba(148, 163, 184, .22);
    margin: 10px 0;
}

/* VILLA sıde info2 biter*/

/* VILLA  FAQ BOLUMU BASLAR  */
.ozel-faq-wrap {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .35);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
    overflow: hidden;
    margin-top: 14px;
}

/* HEAD (başlık tablo içine) */
.ozel-faq-wrap__head {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, .25);
    background: linear-gradient(180deg, rgba(248, 250, 252, .95), #fff);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ozel-faq-wrap__head-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #0f172a;
}

.ozel-faq-wrap__head-left i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    color: #1d4ed8;
}

.ozel-faq-wrap__sub {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    padding-left: 44px;
    /* ikon hizası */
}

/* BODY */
.ozel-faq-wrap__body {
    padding: 14px 14px 16px;
}

/* FAQ list */
.ozel-faq-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* CARD */
.ozel-faq-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: all .25s ease;
}

.ozel-faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

/* HEADER */
.ozel-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    position: relative;
    background: linear-gradient(180deg, rgba(248, 250, 252, .9), #fff);
}

.ozel-faq-header::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, .35), rgba(34, 197, 94, .35), rgba(59, 130, 246, .12));
}

.ozel-faq-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    padding-right: 40px;
}

/* ICON */
.ozel-faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    transition: all .25s ease;
}

.ozel-faq-icon i {
    transition: transform .25s ease;
}

/* ACTIVE */
.ozel-faq-card.aktif {
    border-color: rgba(59, 130, 246, .45);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
}

.ozel-faq-card.aktif .ozel-faq-icon {
    background: linear-gradient(135deg, #3b82f6, #22c55e);
    border-color: transparent;
    color: #fff;
}

.ozel-faq-card.aktif .ozel-faq-icon i {
    transform: rotate(45deg);
}

/* BODY open/close */
.ozel-faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
}

.ozel-faq-card.aktif .ozel-faq-body {
    max-height: 700px;
    opacity: 1;
}

.ozel-faq-content {
    padding: 14px 16px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

/* VILLA  FAQ BOLUMU BITER  */
/* TURREZDETAY2 BAŞLAR */

.tour-search-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
    padding: 18px 18px 20px;
    margin-bottom: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.tour-search-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tour-search-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.tour-search-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
}

.tour-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-search-field {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .tour-search-field.date-field {
        flex: 0 0 55%;
    }

    .tour-search-field.guest-field {
        flex: 0 0 45%;
    }

    .tour-search-field.button-field {
        flex: 1 1 100%;
    }
}

.form-floating-pro {
    position: relative;
}

.form-control-pro.date-input-pro,
.form-control-pro {
    width: 100%;
    height: 65px;
    padding: 25px 40px 5px 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    background-color: var(--bg-input);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.form-control-pro:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.5);
    background: #ffffff;
}

.form-floating-pro label {
    position: absolute;
    left: 12px;
    top: -8px;
    background: #ffffff;
    padding: 0 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
}

.form-floating-pro label i {
    margin-right: 4px;
    color: #4f46e5;
}

/* Misafir seçici */
.guest-selector-wrapper {
    position: relative;
}

.guest-selector-wrapper .chevron-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9ca3af;
}

.guest-dropdown-content {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 14px 14px 10px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.18s ease;
}

.guest-dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 10px;
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.guest-info {
    display: flex;
    flex-direction: column;
}

.guest-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.guest-subtitle {
    font-size: 0.78rem;
    color: #6b7280;
}

.guest-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-counter {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn-counter:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.counter-value {
    min-width: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.child-ages-area {
    margin-top: 6px;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 4px;
}

.child-age-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.child-age-label {
    font-size: 0.8rem;
    color: #374151;
}

.child-age-select {
    flex: 0 0 80px;
    min-height: 32px;
    font-size: 0.85rem;
}

.guest-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.btn-guest-done {
    border: none;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #4f46e5;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.btn-guest-done:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

/* Ara butonu */
.btn-search-pro {
    width: 100%;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(79, 70, 229, 0.45);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}

.btn-search-pro:disabled {
    opacity: 0.7;
    cursor: wait;
    box-shadow: none;
}

.btn-search-pro:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(79, 70, 229, 0.55);
}

.btn-search-pro .btn-icon i {
    font-size: 0.9rem;
}

/* Sonuç kartı */
#turSearchResult {
    margin-top: 16px;
}

.tur-result-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 14px 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
    font-size: 0.9rem;
    color: #111827;
}

.tur-result-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.tur-result-card-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.tur-result-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.tur-result-total {
    font-size: 1rem;
    font-weight: 700;
    color: #16a34a;
}

.tur-result-error {
    border-radius: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 10px 12px;
    font-size: 0.86rem;
}

.tur-result-loading {
    font-size: 0.86rem;
    color: #4b5563;
}

.tour-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (min-width: 768px) {
    .tour-search-field.date-field {
        flex: 0 0 55%;
    }

    .tour-search-field.guest-field {
        flex: 0 0 45%;
    }

    .tour-search-field.button-field {
        flex: 1 1 100%;
    }
}

/* === Tarih + Kişi + Buton: alt alta, ortalanmış, %80 genişlik === */
.tour-search-row {
    display: flex;
    flex-direction: column;
    /* hepsi alt alta */
    align-items: center;
    /* ortala */
    gap: 10px;
}

.tour-search-field {
    width: 80%;
    /* her satır %80 */
    max-width: 480px;
    /* istersen limit */
}

/* Eski media-query’yi ezmek için daha spesifik tanım */
@media (min-width: 768px) {

    .tour-search-row .tour-search-field.date-field,
    .tour-search-row .tour-search-field.guest-field,
    .tour-search-row .tour-search-field.button-field {
        flex: 0 0 auto;
        width: 80%;
        max-width: 480px;
    }
}

.guest-dropdown-content {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    padding: 14px 14px 10px;
    z-index: 9999;
    /* yüksek tut */
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.18s ease;
}

.booking-card {
    position: relative;
    overflow: visible !important;
    /* kesmeyi bırak */
}

/* İçteki grid satırları da kesmesin */
.tour-search-row,
.tour-search-field,
.guest-selector-wrapper {
    position: relative;
    overflow: visible !important;
}

/* Eğer sadece misafir inputu içinse (Daha spesifik) */
#guestDisplay.form-control-pro {
    padding-left: 25px !important;
    padding-top: 16px !important;
}

/* ================================================= */
/* === VİLLA FİYAT SONUÇ ALANI STİLLERİ === */
/* ================================================= */

/* Ana Sonuç Kapsayıcısı */
#villaSearchResult {
    margin-top: 20px !important;

}

/* 1. Yükleme ve Hata Mesajları */
.tur-result-loading,
.tur-result-error {
    border-radius: 12px !important;
    padding: 12px 15px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.tur-result-loading {
    background: #eef4ff !important;
    color: #4f46e5 !important;
    border: 1px solid #c7d2fe !important;
}

.tur-result-error {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    color: #b91c1c !important;
}

/* 2. AJAX ile Gelen Fiyat Kartı (villa_fiyat_hesapla.php'nin içeriği) */
/* NOT: villa_fiyat_hesapla.php çıktınızdaki ana div'e bu sınıfları eklediğinizi varsayıyorum. */
.tur-result-details {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 2px solid #e5e7eb !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    padding: 20px !important;
}

/* Fiyat Dökümü Satırları (Breakdown) */
.price-breakdown {
    border-bottom: 1px dashed #e5e7eb !important;
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
}

.breakdown-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 6px !important;
    font-size: 0.9rem !important;
}

.breakdown-row .item-desc {
    color: #4b5563 !important;
    font-weight: 500 !important;
}

.breakdown-row .item-value {
    color: #1f2937 !important;
    font-weight: 600 !important;
}

/* İndirim Satırı (Vurgulu) */
.breakdown-row.discount-row {
    color: #ef4444 !important;
    /* Kırmızı metin */
    font-weight: 700 !important;
}

.breakdown-row.discount-row .item-value {
    color: #ef4444 !important;
}


/* 3. Toplam Fiyat Alanı */
.total-section {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
    border-top: 1px solid #e5e7eb !important;
    /* Üstte çizgi */
    margin-top: 10px !important;
}

.total-label {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #3ca81d !important;
}

.total-value {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #10b981 !important;
    /* Yeşil vurgu rengi */
}

/* 4. Ön Ödeme Detayı */
.prepayment-section {
    background: #eef4fb;
    border: 1px dashed #042c5c;
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
}

.prepayment-label {
    font-size: 0.8rem !important;
    color: #6b7280 !important;
    display: block !important;
    margin-bottom: 4px !important;
}

.prepayment-amount {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #f49e42 !important;
    /* Turuncu/Sarı vurgu */
}


/* 5. Rezervasyon Butonu */
.btn-reservation.js-go-reservation {
    width: 100% !important;
    margin-top: 20px !important;
    padding: 14px 20px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    border: none !important;
    background: linear-gradient(135deg, #4f46e5, #6366f1) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-reservation.js-go-reservation:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.5) !important;
}

/* Mobil Düzeltme */
@media (max-width: 600px) {
    #villaSearchResult {
        padding: 0 0% !important;
        /* Mobilde tam genişlik kullan */
    }
}

/* TURREZDETAY2 BİTER */
/* ================================
   AVASAYFA VILLA GRID BAŞLAR
   ================================ */

/* ---- Root tokens (istersen admin temandaki değişkenlere bağla) ---- */
:root {
    --v-bg: #ffffff;
    --v-text: #0f172a;
    --v-muted: #64748b;
    --v-border: rgba(148, 163, 184, .35);
    --v-shadow: 0 14px 35px rgba(15, 23, 42, .12);
    --v-shadow-hover: 0 22px 55px rgba(15, 23, 42, .18);
    --v-radius: 18px;

    --v-brand: #4f46e5;
    /* indigo */
    --v-brand2: #7c3aed;
    /* purple */
    --v-accent: #f59e0b;
    /* amber */
    --v-danger: #ef4444;

    --v-glass: rgba(255, 255, 255, .78);
    --v-glass-border: rgba(255, 255, 255, .32);
}

/* ================================
   HEADER SECTION
   ================================ */
.header-section {
    position: relative;
    padding: 34px 18px 20px;
    margin: 10px auto 18px;
    max-width: 1200px;
    text-align: center;
}

.header-section__title {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.15;
    font-weight: 900;
    color: var(--v-text);
    letter-spacing: -0.02em;
}

.header-section__title-accent {
    display: inline-block;
    background: linear-gradient(90deg, var(--v-brand), var(--v-brand2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 8px;
}

.header-section__subtitle {
    margin: 10px auto 0;
    max-width: 720px;
    color: var(--v-muted);
    font-size: 15px;
    line-height: 1.7;
}

.header-section__separator {
    width: 110px;
    height: 5px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--v-brand), var(--v-accent));
    box-shadow: 0 10px 20px rgba(79, 70, 229, .18);
}

/* ================================
   GRID LAYOUT
   ================================ */
.villa-grid {

    margin: 0 auto;
    padding: 6px 14px 10px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

@media (min-width: 640px) {
    .villa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptop */
@media (min-width: 1024px) {
    .villa-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Büyük ekran – 4 kart */
@media (min-width: 1280px) {
    .villa-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================
   CARD ENHANCEMENTS
   ================================ */
/* Senin kart yapında en dış kutu: "max-w-sm ... rounded-xl ... shadow-2xl" */
.villa-grid .item>div {
    border-radius: var(--v-radius);
    border: 1px solid var(--v-border);
    background: var(--v-bg);
    box-shadow: var(--v-shadow);
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow, border-color;
    position: relative;
}

/* Hover hissi (mevcut tailwind hover scale ile uyumlu) */
.villa-grid .item>div:hover {
    box-shadow: var(--v-shadow-hover);
    border-color: rgba(79, 70, 229, .55);
}

/* Üst görsel alanına premium overlay + ışık efekti */
.villa-grid .item .relative {
    position: relative;
    overflow: hidden;
}

.villa-grid .item .relative::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(600px 220px at 10% 0%, rgba(255, 255, 255, .30), transparent 60%),
        radial-gradient(500px 260px at 90% 15%, rgba(79, 70, 229, .22), transparent 60%),
        linear-gradient(to top, rgba(15, 23, 42, .40), transparent 55%);
    opacity: .85;
    pointer-events: none;
}

.villa-grid .item img {
    display: block;
    width: 100%;
    height: 230px;
    /* görsel standardı */
    object-fit: cover;
    transition: transform .65s ease, filter .65s ease;
    filter: saturate(1.02) contrast(1.02);
}

.villa-grid .item>div:hover img {
    transform: scale(1.06);
    filter: saturate(1.10) contrast(1.05);
}

/* ================================
   HEART BUTTON (top-right)
   ================================ */
.villa-grid .item .fa-heart {
    transition: transform .2s ease, color .2s ease;
}

.villa-grid .item .absolute.top-3.right-3 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: var(--v-glass);
    border: 1px solid var(--v-glass-border);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .14);
    transition: transform .2s ease, box-shadow .2s ease;
}

.villa-grid .item .absolute.top-3.right-3:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
}

.villa-grid .item .absolute.top-3.right-3:hover .fa-heart {
    transform: scale(1.08);
    color: var(--v-danger);
}

/* ================================
   LOCATION TAG (bottom-left)
   ================================ */
.villa-grid .item .absolute.bottom-0.left-0 {
    background: rgba(15, 23, 42, .72);
    border-top-right-radius: 16px;
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: .01em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, .10);
    border-right: 1px solid rgba(255, 255, 255, .10);
}

/* ================================
   PRICE PILL (bottom-right)
   ================================ */
.villa-grid .item .absolute.bottom-0.right-0 {
    background: linear-gradient(135deg, var(--v-brand), var(--v-brand2));
    border-top-left-radius: 18px;
    padding: 10px 14px;
    box-shadow: 0 18px 45px rgba(79, 70, 229, .30);
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.villa-grid .item .absolute.bottom-0.right-0 .price {
    text-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

/* ================================
   BADGE STACK (your custom)
   ================================ */
.villa-badge-stack {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 12;
}

.villa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .14);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}

.villa-badge i {
    font-style: normal;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .25));
}

.villa-badge.badge--accent-yellow {
    background: rgba(245, 158, 11, .18);
    color: #fff;
    border-color: rgba(245, 158, 11, .25);
}

.villa-badge.badge--primary-indigo {
    background: rgba(79, 70, 229, .16);
    color: #fff;
    border-color: rgba(79, 70, 229, .25);
}

/* ================================
   CONTENT AREA
   ================================ */
.villa-grid .item .p-5 {
    padding: 16px 16px 18px;
}

.villa-grid .item h2 {
    color: var(--v-text);
    letter-spacing: -0.01em;
}

.villa-grid .item hr {
    border-color: rgba(148, 163, 184, .25);
}

.villa-grid .item .space-y-3 {
    margin-top: 8px;
}

.villa-grid .item .space-y-3 .flex {
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(248, 250, 252, .75);
    border: 1px solid rgba(148, 163, 184, .20);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.villa-grid .item .space-y-3 .flex:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 70, 229, .25);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
}

/* Icon renk uyumu */
.villa-grid .item .space-y-3 i {
    opacity: .95;
}

/* ================================
   CTA BUTTON
   ================================ */
.villa-grid .item a.mt-4.block.w-full {
    border-radius: 14px;
    background: linear-gradient(135deg, var(--v-brand), var(--v-brand2));
    box-shadow: 0 16px 40px rgba(79, 70, 229, .30);
    border: 1px solid rgba(255, 255, 255, .16);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.villa-grid .item a.mt-4.block.w-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(79, 70, 229, .38);
    filter: brightness(1.02);
}

/* ================================
   ACCESSIBILITY / REDUCE MOTION
   ================================ */
@media (prefers-reduced-motion: reduce) {

    .villa-grid .item img,
    .villa-grid .item>div,
    .villa-grid .item .space-y-3 .flex,
    .villa-grid .item a.mt-4.block.w-full {
        transition: none !important;
    }
}

/* ================================
   SMALL FIXES
   ================================ */
.villa-grid .alert {
    grid-column: 1 / -1;
    margin: 12px 0;
}

/* ================================
   AVASAYFA VILLA GRID BITER
   ================================ */
/* ================================================= */
/* === RENTACAR anasayfa baslar=== */
/* ================================================= */

.rentacar-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rentacar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-image-container {
    position: relative;
}

.card-image {
    width: 100%;
    height: 220px;
    /* Sabit yükseklik */
    object-fit: cover;
}

/* Fiyat ve Konum Bantları */
.card-location-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(30, 41, 59, 0.8);
    /* Slate-800 benzeri */
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-top-right-radius: 12px;
}

.card-price-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #4f46e5;
    /* İndigo */
    color: #ffffff;
    padding: 8px 15px;
    border-top-left-radius: 12px;
    text-align: right;
}

.price-start-text {
    font-size: 0.75rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
}

/* İçerik Alanı */
.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
    transition: color 0.2s;
    text-decoration: none;
    display: block;
}

.card-title:hover {
    color: #4f46e5;
}

.divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin: 15px 0;
}

/* Bilgi Gridleri */
.car-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
}

.detail-icon {
    color: #4f46e5;
    /* İndigo */
    margin-right: 8px;
    font-size: 1rem;
}

.security-details {
    grid-column: span 2;
    font-weight: 600;
    color: #2d3748;
}

/* Etiketler (Badges) */
.badge-stack {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge--accent-yellow {
    background-color: #fcd34d;
    /* Amber-400 */
    color: #451a03;
    /* Kahverengi/Siyah tonu */
}

.badge--primary-indigo {
    background-color: #6366f1;
    /* İndigo-500 */
    color: #ffffff;
}

/* Detay Butonu */
.card-detail-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #4f46e5;
    color: #ffffff;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.1s;
    text-decoration: none;
}

.card-detail-button:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
}



.car-info-grid {
    /* Genel grid yapısı */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
    /* Dikeyde 12px, yatayda 16px boşluk */
    font-size: 0.875rem;
    /* 14px */
    color: #4b5563;
    /* Orta gri metin */
    margin-bottom: 15px;
    padding: 5px 0;
    /* Hafif iç boşluk */
}

.info-item {
    display: flex;
    align-items: center;
    /* transition: color 0.2s; - İsteğe bağlı hover efekti için */
}

/* Detay Simgeleri */
.detail-icon {
    /* Simge rengini daha canlı yapalım */
    color: #4f46e5;
    /* İndigo 600 */
    margin-right: 8px;
    font-size: 1rem;
    width: 20px;
    /* Simgelerin hizalanması için sabit genişlik */
    text-align: center;
}

/* Güvenlik Detayı (Airbag, ABS) */
.security-details {
    /* Bu satır iki sütunu kaplayacağı için grid-column: span 2 kullanılır */
    grid-column: span 2;
    font-weight: 600;
    padding: 4px 0;
    border-top: 1px dashed #e5e7eb;
    /* Hafif ayırıcı */
    margin-top: 5px;
    color: #10b981;
    /* Yeşil tonu ile güvenliği vurgulama */
}

.security-details .detail-icon {
    color: #10b981;
    /* Güvenlik simgesi yeşil */
}

.info-item span {
    font-weight: 500;
}


.info-item:hover {
    color: #1f2937;
    background-color: #f9fafb;
    border-radius: 4px;
    padding: 2px;
}

/* ================================================= */
/* === RENTACAR anasayfa biter=== */
/* Hariç etiketleri */
.ts-tag-pill--danger {
    background: rgba(239, 68, 68, 0.08);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* icon kırmızı */
.ts-tag-pill--danger i {
    color: #dc2626;
}

/* TUR DETAY2 SSS BAŞLAR */


:root {
    --c-brand: #1e40af;
    /* kurumsal mavi */
    --c-title: #0f172a;
    /* koyu başlık */
    --c-text: #334155;
    /* normal metin */
    --c-muted: #64748b;
    /* ikincil */
    --c-border: rgba(15, 23, 42, .10);
    --c-bg: #ffffff;
    --c-soft: rgba(30, 64, 175, .08);
    --c-shadow: 0 10px 28px rgba(2, 6, 23, .08);
    --c-shadow-hover: 0 16px 44px rgba(2, 6, 23, .12);
    --c-radius: 16px;
}

/* ---------- HEADER (Kurumsal Panel) ---------- */
.ozel-faq-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    padding: 18px 18px;
    margin-bottom: 22px;

    border: 1px solid var(--c-border);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 14px 40px rgba(2, 6, 23, .06);
    position: relative;
    overflow: hidden;
}

.ozel-faq-section-header::before {
    content: "";
    position: absolute;
    inset: -60px -60px auto -60px;
    height: 150px;
    background: radial-gradient(650px 150px at 18% 38%, rgba(30, 64, 175, .14), transparent 62%);
    pointer-events: none;
    opacity: .9;
}

.ozel-faq-header-left {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.ozel-faq-accent {
    width: 5px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--c-brand), rgba(30, 64, 175, .35));
    box-shadow: 0 12px 26px rgba(30, 64, 175, .25);
    flex-shrink: 0;
    margin-top: 3px;
}

.ozel-faq-headings {
    min-width: 0;
}

.ozel-faq-headings h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--c-title);
    line-height: 1.15;
}

.ozel-faq-headings p {
    margin: 8px 0 0 0;
    font-size: 14px;
    font-weight: 650;
    color: var(--c-muted);
    line-height: 1.55;
    max-width: 760px;
}

.ozel-faq-header-right {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(15, 23, 42, .03);

    color: var(--c-title);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.ozel-faq-header-right i {
    color: var(--c-brand);
}

/* ---------- FAQ LIST ---------- */
.ozel-faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ozel-faq-card {
    border-radius: var(--c-radius);
    border: 1px solid var(--c-border);
    background: var(--c-bg);
    box-shadow: 0 8px 20px rgba(2, 6, 23, .06);
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
    position: relative;
}

.ozel-faq-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--c-shadow-hover);
    border-color: rgba(30, 64, 175, .20);
}

.ozel-faq-card.aktif {
    box-shadow: var(--c-shadow);
    border-color: rgba(30, 64, 175, .26);
}

/* Header clickable area */
.ozel-faq-header {
    padding: 18px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    user-select: none;
    background: #fff;
}

.ozel-faq-title {
    font-size: 15.5px;
    font-weight: bold;
    color: var(--c-title);
    line-height: 1.35;
    letter-spacing: -.01em;
    flex: 1;
    min-width: 0;
}

.ozel-faq-card.aktif .ozel-faq-title {
    color: var(--c-brand);
}

/* Icon */
.ozel-faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--c-soft);
    border: 1px solid rgba(30, 64, 175, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brand);
    flex-shrink: 0;
    transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.ozel-faq-card.aktif .ozel-faq-icon {
    background: var(--c-brand);
    color: #fff;
    transform: rotate(45deg);
    border-color: rgba(255, 255, 255, .35);
}

/* Body */
.ozel-faq-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .40s ease, opacity .25s ease;
    background: #fff;
}

.ozel-faq-card.aktif .ozel-faq-body {
    max-height: 1200px;
    opacity: 1;
}

.ozel-faq-content {
    padding: 0 18px 18px 18px;
    color: var(--c-text);
    font-size: 14.8px;
    line-height: 1.75;
}

.ozel-faq-content p {
    margin: 10px 0;
}

.ozel-faq-content ul,
.ozel-faq-content ol {
    margin: 10px 0 10px 18px;
}

.ozel-faq-content a {
    color: var(--c-brand);
    font-weight: 750;
    text-decoration: none;
}

.ozel-faq-content a:hover {
    text-decoration: underline;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    .ozel-faq-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ozel-faq-header-right {
        width: 100%;
        justify-content: flex-start;
    }

    .ozel-faq-headings h2 {
        font-size: 22px;
    }
}

/* ===============================
   WIDGET CONTAINER (Corporate)
================================ */

.widget.recent-post {
    position: relative;
    background: #ffffff;
    border-radius: 18px;

    /* İnce kurumsal border */
    border: 1px solid rgba(15, 23, 42, 0.10);

    /* Yumuşak ama kaliteli gölge */
    box-shadow:
        0 12px 30px rgba(2, 6, 23, 0.08),
        0 2px 6px rgba(2, 6, 23, 0.04);

    padding: 18px;
    margin-bottom: 30px;

    transition: box-shadow .25s ease, transform .25s ease;
}

/* Hover (çok hafif, profesyonel) */
.widget.recent-post:hover {
    box-shadow:
        0 18px 45px rgba(2, 6, 23, 0.12),
        0 4px 10px rgba(2, 6, 23, 0.06);
    transform: translateY(-1px);
}

/* Mobilde padding biraz daralsın */
@media (max-width: 576px) {
    .widget.recent-post {
        padding: 14px;
        border-radius: 16px;
    }
}

/* TUR DETAY2 SSS BİTER */
/* HEADER BAŞLAR */
/* Navigasyon listesini 2 satıra izin verecek şekilde ayarla */
.header-nav .nav-list {
    display: flex;
    flex-wrap: wrap;
    /* Sığmayan elemanları alt satıra atar */
    justify-content: center;
    /* Elemanları yatayda ortalar */
    gap: 10px 20px;
    /* Satırlar arası 10px, yan yana 20px boşluk bırakır */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Menü elemanlarının genişliğini ve hizalamasını düzenle */
.header-nav .nav-list>li {
    display: inline-block;
    position: relative;
    white-space: nowrap;
    /* Metinlerin kırılmasını önler, yan yana tutar */
}



/* Dropdown menülerin 2. satırda da doğru açılması için */
.header-nav .nav-list .dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Dropdown temel */
.header-nav .nav-list>li.has-dropdown {
    position: relative;
}

.header-nav .nav-list>li.has-dropdown>.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 9999;
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .35);
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .18);
}

/* Desktop hover ile aç */
@media (min-width: 992px) {
    .header-nav .nav-list>li.has-dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* Üstteki senin kuralın kalsın ama istersen daha güvenlisi: */
.header-nav .nav-list>li.has-dropdown>.dropdown-menu {
    top: calc(50% + 10px);
    left: 50%;
    transform: translateX(-50%);
}

/* HEADER BİTER */
/* Mobil menü aç/kapa */
.mobile-menu-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.mobile-menu-container {
    transform: translateX(110%);
    transition: transform .25s ease;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container.is-open {
    transform: translateX(0);
}

/* Body scroll kilidi */
.no-scroll {
    overflow: hidden;
}

/* Mobil dropdown */
.mobile-dropdown-toggle .mobile-sub-menu {
    display: none;
}

.mobile-dropdown-toggle.is-open .mobile-sub-menu {
    display: block;
}

.rez-note {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px dashed rgba(148, 163, 184, 0.6);
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
}

.rez-note::before {
    content: "\f05a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    font-size: 1.1rem;
    color: #3b82f6;
    margin-bottom: 6px;
}

@media (max-width: 576px) {
    .rez-note {
        font-size: 0.85rem;
        padding: 12px 14px;
    }
}

/* özel takvim başlar */
.custom-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    width: 280px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 12px;
    z-index: 9999;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.calendar-header button {
    width: 32px;
    height: 32px;
    background-color: #f1f1f1;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.calendar-header button:hover {
    background-color: #4e54c8;
    color: #fff;
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day-header,
.calendar-day,
.calendar-empty {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

.calendar-day-header {
    font-weight: bold;
    color: #666;
    font-size: 13px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.calendar-day {
    color: #444;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.calendar-day:hover {
    background-color: #e6f0ff;
}

.calendar-day.selected {
    background-color: #4e54c8;
    color: #fff;
    font-weight: bold;
}

.calendar-day.today {
    border: 1px dashed #4e54c8;
}

.calendar-day {
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* Rakamlar beyaz */
    font-weight: bold;
}

.calendar-day.past {
    background-color: #e74c3c;
    /* Kırmızı */
}

.calendar-day.today {
    background-color: #3498db;
    /* Mavi */
}

.calendar-day.future {
    background-color: #2ecc71;
    /* Yeşil */
}

.calendar-day:hover:not(.past) {
    opacity: 0.85;
}

.calendar-day.selected {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}

.calendar-day:hover:not(.past) {
    background-color: #dcdcdc;
    /* hover için arka plan (opsiyonel) */
    color: #000;
    /* Hover olunca yazı siyah olsun */
}

/* Tarih input’unu güzelleştirme */
.custom-date-input {
    width: 100%;
    height: 65px;
    padding: 5px 40px 5px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    background-color: var(--bg-input);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    appearance: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.custom-date-input:focus {
    outline: none;
    border-color: #4e54c8;
    /* Focus’da renk değiştirme */
    box-shadow: 0 0 0 3px rgba(78, 84, 200, 0.2);
}

.calendar-header {
    position: relative;
    text-align: center;
}

.calendar-header .prev-month,
.calendar-header .next-month {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.calendar-header .prev-month {
    left: 0;
}

.calendar-header .next-month {
    right: 0;
}

.calendar-header .month-year {
    display: inline-block;
}

/* özel takvim biter */

/* search formda transfer toogle */
#toggleSearchForm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* İkonu sağa yaslar */
    background: linear-gradient(135deg, #042c5c 0%, #06438c 100%);
    /* Kurumsal Mavi */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(4, 44, 92, 0.15);
    user-select: none;
    position: relative;
    overflow: hidden;
}

/* Hover (Üzerine Gelince) Efekti */
#toggleSearchForm:hover {
    background: linear-gradient(135deg, #06438c 0%, #042c5c 100%);
    box-shadow: 0 6px 16px rgba(4, 44, 92, 0.25);
    transform: translateY(-2px);
}

/* Tıklama Efekti */
#toggleSearchForm:active {
    transform: translateY(0);
}

/* Sol Tarafa İkon Eklemek İçin (Pseudo Element) */
#toggleSearchForm::before {
    content: '\f002';
    /* FontAwesome Arama İkonu */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 12px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sağ Tarafa Açılır/Kapanır Ok İşareti (Pseudo Element) */
#toggleSearchForm::after {
    content: '\f078';
    /* FontAwesome Aşağı Ok */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Form Açıldığında Oku Döndürmek İçin (JS ile bu class'ı toggle yapabilirsin) */
#toggleSearchForm.is-active::after {
    transform: rotate(180deg);
}

/* Ok ikonunu hedefleyen özel stil */
.ts-badge--location .fa-arrow-right {
    display: inline-block;
    color: #f97316;
    /* Vurgu rengi (Turuncu) */
    font-size: 0.85rem;
    margin: 0 8px;
    animation: transferFlow 1.8s infinite ease-in-out;
    filter: drop-shadow(0 0 2px rgba(249, 115, 22, 0.4));
}

/* Hareket ve Parlama Animasyonu */
@keyframes transferFlow {
    0% {
        transform: translateX(-3px);
        opacity: 0.4;
    }

    50% {
        transform: translateX(3px);
        opacity: 1;
        /* Parlama efekti */
        text-shadow: 0 0 8px rgba(249, 115, 22, 0.8);
    }

    100% {
        transform: translateX(-3px);
        opacity: 0.4;
    }
}

/* Badge (Konteynır) için küçük bir dokunuş */
.ts-badge--location {
    display: block;
    align-items: center;
    background: rgba(241, 245, 249, 0.8);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #334155;
    border: 1px solid #e2e8f0;
}

/* search formda transfer toogle biter */
/* VILLA ARAMA SONUC BEC BASLAR */
.ts-card__content-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.ts-card__image {

    max-height: 258px;

}

.sonuc-meta {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.sonuc-meta .meta-sep {
    opacity: .6;
}

.sonuc-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sonuc-meta .meta-days {
    opacity: .85;
}

.semt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(79, 70, 229, .10);
    border: 1px solid rgba(79, 70, 229, .18);
    color: #3730a3;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.semt-badge i {
    font-size: .9em;
    opacity: .9;
}

/* Mobilde semt badge otomatik alt satıra düşsün */
@media (max-width: 767.98px) {
    .sonuc-meta {
        gap: 10px;
    }

    .sonuc-meta .meta-sep {
        display: none;
    }

    .semt-badge {
        width: 100%;
        justify-content: flex-start;
    }
}

/* VILLA ARAMA SONUC BEC BİTER */
/* REZERVASYON SAYFASI SAĞ TARAF BAŞLAR */
.summary-image {
    height: 284px;
    width: 100%;
    object-fit: cover;
}

.summary-body {
    padding: 20px 18px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-body {
    padding: 10px 10px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, .85);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.summary-route {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid rgba(226, 232, 240, .9);
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
}

.summary-route__pin {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    flex: 0 0 auto;
}

.summary-route__pin i {
    color: #4f46e5;
}

.summary-route__from,
.summary-route__to {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
}

.summary-route__arrow {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    flex: 0 0 auto;
}

.summary-route__arrow i {
    color: #334155;
}

.summary-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 12px;
    color: #475569;
    font-size: .95rem;
}

.summary-date i {
    color: #6366f1;
}

.summary-row,
.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 12px;
    background: #f9fafb;
    color: #334155;
}

.summary-row__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.summary-row__label i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #4f46e5;
    flex: 0 0 auto;
}

.summary-row__value .price {
    font-weight: 900;
    color: #0f172a;
}

.summary-total {
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    border: 1px dashed #c7d2fe;
}

.summary-prepayment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
}


.summary-prepayment__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .9rem;
    opacity: .95;
    margin-bottom: 1px;
}

.summary-prepayment__label i {
    color: #93c5fd;
}

.summary-prepayment__value .price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #facc15;
}

.btn-complete {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 12px 28px rgba(37, 99, 235, .35);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-complete:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, .45);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-complete i {
    margin-left: 8px;
}

.summary-secure {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .85rem;
    color: #64748b;
}

.summary-secure i {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: #16a34a;
}

.time-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .45);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.time-select:focus-within {
    border-color: rgba(79, 70, 229, .65);
    box-shadow: 0 16px 35px rgba(79, 70, 229, .15);
    transform: translateY(-1px);
}

.time-select__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #4f46e5;
    flex: 0 0 auto;
}

.time-select__control {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-weight: 800;
    color: #0f172a;
    padding: 6px 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.time-select::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.time-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed rgba(148, 163, 184, .55);
    color: #334155;
    font-weight: 700;
}

.time-preview i {
    color: #22c55e;
}

.summary-datetime {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, .9);
}

.summary-datetime .summary-date,
.summary-datetime .time-preview {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #475569;
}

.summary-datetime .summary-date i {
    color: #6366f1;
}

.summary-datetime .time-preview {
    padding: 6px 10px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px dashed rgba(148, 163, 184, .55);
    font-weight: 600;
}

.summary-datetime .time-preview i {
    color: #22c55e;
}

/* Mobilde alt alta düşsün */
@media (max-width: 576px) {
    .summary-datetime {
        flex-direction: column;
        align-items: stretch;
    }

    .summary-datetime .time-preview {
        justify-content: center;
    }
}

/* REZERVASYON SAYFASI SAĞ TARAF BİTER */
/* VILLA DETAY DAKİ KİŞİ SEÇİMİ BAŞLAR */
.booking-summary-info {
    display: flex;
    flex-direction: column;
    /* 🔥 ALT ALTA */
    gap: 10px;
}

.summary-item {
    background: #f0f4f8;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #042c5c;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dce4ec;
    /* 🔒 Tek satır kilidi */
    flex-wrap: nowrap;
    white-space: nowrap;
}

.kisi-select-pro {
    min-width: 64px;
    height: 36px;
    padding: 4px 28px 4px 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #042c5c;
    background-color: #ffffff;
    border: 2px solid #3b82f6;
    /* 🔵 belirgin mavi */
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    appearance: none;
    /* default oku gizle */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffb426;
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px 8px;
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px 8px;
    transition: all 0.2s ease;
}

.kisi-select-pro:hover {
    border-color: #2563eb;
    background-color: #f0f7ff;
}

.kisi-select-pro:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .kisi-select-pro {
        height: 40px;
        min-width: 72px;
        font-size: 1rem;
    }
}

/* VILLA DETAY DAKİ KİŞİ SEÇİMİ BİTER */
/* ANASAYFA XFERGRID BAŞLAR */

.rentacar-card.transfer-card-mini {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rentacar-card.transfer-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    border-color: rgba(79, 70, 229, 0.9);
}

/* KART İÇİ */
.card-body-mini {
    padding: 12px 14px 8px;
}

/* ROTA SATIRI */
.card-route {
    margin-bottom: 8px;
}

.route-line {
    display: block;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: large;
    color: #4b5563;
    text-align: center;
    background: #f2f2f2;
    font-weight: bold;
    margin-bottom: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
}

.route-from i {
    color: #ef4444;
}

.route-to i {
    color: #22c55e;
}

.route-arrow i {
    color: #6b7280;
}

/* KAPASİTE + FİYAT SATIRLARI (ÇOKLU) */
.card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 1px;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.9);
}

.card-meta-left .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4b5563;
    font-weight: 500;
}

.card-meta-left .meta-item i {
    color: #0ea5e9;
}

.card-meta-right {
    flex-shrink: 0;
    text-align: right;
}

.card-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    color: #ffffff;
    white-space: nowrap;
}

.card-price--ask {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 600;
}

/* AYIRICI ÇİZGİ */
.divider {
    border: none;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    margin: 8px 14px 6px;
}

/* DETAY BUTONU */
.card-detail-button {
    display: block;
    text-align: center;
    padding: 9px 12px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #4f46e5;
    background: rgba(249, 250, 251, 0.9);
    border-radius: 0 0 16px 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

.card-detail-button:hover {
    background: rgba(79, 70, 229, 0.08);
    color: #3730a3;
}

/* GRID YAPISI */
.tour-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 576px) {
    .tour-grid {
        gap: 14px;
    }

    .card-body-mini {
        padding: 10px 12px 8px;
    }
}

@media (min-width: 576px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .tour-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .tour-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tour-grid .item .price {
    border-top-left-radius: 1.25rem;
    font-size: inherit;
}

/* ANASAYFA XFERGRID BİTER */
/* — MODUL SAYFALAR BASLAR — */
/* — Layout — */
.ky-layout-2col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
}

@media (max-width: 1100px) {
    .ky-layout-2col {
        grid-template-columns: 1fr;
    }

    .ky-aside {
        position: static;
        top: auto;
    }
}

/* — Page head uyumu — */
.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.page-head .title-wrap h3 {
    margin: 0;
    font-weight: 700;
}

.page-head .sub {
    color: #6b7280;
    font-size: 14px;
    margin-top: 4px;
}

.toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* — Cards — */
.ky-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.ky-card__head {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ky-card__title {
    font-weight: 700;
}

.ky-card__body {
    padding: 16px;
}

/* — Form grid — */
.ky-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.ky-form-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.col-12 {
    grid-column: span 12;
}

.col-6 {
    grid-column: span 6;
}

.col-4 {
    grid-column: span 4;
}

.col-8 {
    grid-column: span 8;
}

@media (max-width: 992px) {

    .col-6,
    .col-4,
    .col-8 {
        grid-column: span 12;
    }
}

/* — Sidebar — */
.ky-aside {
    position: sticky;
    top: 16px;
    display: grid;
    gap: 12px;
}

.ky-meta {
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.ky-meta .k {
    color: #6b7280;
    font-size: 12px;
}

.ky-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    background: #eef2ff;
    color: #344b9b;
    border: 1px solid #d7defc;
    border-radius: 999px;
    padding: 4px 10px;
}

.ky-badge.gray {
    background: #f3f4f6;
    color: #374151;
    border-color: #e5e7eb;
}

.ky-badge.ok {
    background: #ecfdf5;
    color: #047857;
    border-color: #bbf7d0;
}

.ky-badge.warn {
    background: #fff7ed;
    color: #9a3412;
    border-color: #fed7aa;
}

/* — Helpers — */
.req {
    color: #ef4444;
}

.ky-help {
    color: #6b7280;
    font-size: 12px;
}

.ky-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ky-preview {
    max-height: 200px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 10px;
    display: none;
    margin-top: 10px;
}

/* — MODUL SAYFALAR BITER — */
/* — blog SAYFALAR baslar — */
/* --- OKUMA İLERLEME ÇUBUĞU --- */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 9999;
    transition: width 0.1s;
}

/* --- heroblog SECTION (SİNEMATİK KAPAK) --- */
.blog-heroblog {
    position: relative;
    height: 65vh;
    /* Ekranın %80'i */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    /* Parallax Efekti */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-heroblog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 30, 52, 0.24), rgba(206, 232, 255, 0.17));
    /* Karartma */
}

.heroblog-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.heroblog-tag {
    display: inline-block;
    padding: 6px 15px;
    background: #8cc63f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 50px;
}

.heroblog-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

.heroblog-desc {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    background: #d9d6d6;
    padding: 10px;
    border-radius: 10px;
    color: black;
}

/* --- İÇERİK ALANI (DERGİ DÜZENİ) --- */
.blog-wrapper {
    position: relative;
    max-width: 1000px;
    margin: -100px auto 50px;
    /* Resmi yukarı doğru ezer */
    z-index: 10;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

/* Sol Taraf: Sticky Paylaşım */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 60px;
    padding-top: 20px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    font-size: 18px;
}

.share-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Ana Metin Kutusu */
.article-container {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    flex: 1;
}

/* Metin Tipografisi */
.article-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a5568;
}

.article-body p {
    margin-bottom: 25px;
}

/* İlk Harf Büyütme (Drop Cap) */
.article-body>p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 15px;
    margin-top: 5px;
    color: var(--primary-color);
}

/* Editörden gelen resimler taşmasın */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-body h2,
.article-body h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-top: 40px;
}

.article-body blockquote {
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
    padding: 20px 30px;
    background: #fdfbf7;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
}

/* --- MOBİL UYUM --- */
@media (max-width: 992px) {
    .blog-heroblog {
        height: 60vh;
    }

    .heroblog-title {
        font-size: 2.5rem;
    }

    .blog-wrapper {
        flex-direction: column;
        margin-top: 0;
        padding: 0;
    }

    .sticky-sidebar {
        display: none;
    }

    /* Mobilde yan barı gizle */
    .article-container {
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
    }

    .article2-container {
        background: #fff;
        padding: 49px;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
        flex: 1;
        margin-top: 0px !important;
    }

    .pro-search-tabs .nav-item {
        flex: 1;
        display: grid !important;
    }

    .search-body {
        background: #fff;
        padding: 10px !important;
        border-radius: 0 0 12px 12px;
    }

    .rentacar-card {
        margin: 20px !important;
    }

    .tour-grid {

        padding: 20px !important;
    }

}

/* Animasyon */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rentacar-card {
    margin: 10px !important;
}

/* — blog SAYFALAR biter — */
#toTop.visible {

    display: none !important;
}

/* RESET – footer / body ile kavga etmesin */
.wa-float,
.wa-panel {
    all: unset;
}

/* Floating Button */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* Panel */
.wa-panel {
    position: fixed;
    right: 18px;
    bottom: 84px;
    width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    z-index: 99999;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: .25s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.wa-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Header */
.wa-header {
    background: #25D366;
    color: #fff;
    padding: 12px 14px;
    font-weight: 600;
    border-radius: 14px 14px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-close {
    cursor: pointer;
    font-size: 20px;
}

/* Items */
.wa-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.wa-item:last-child {
    border-bottom: none;
}

.wa-item i {
    font-size: 20px;
    color: #25D366;
}

/* Status */
.wa-status {
    margin-left: auto;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
}

.wa-status.online {
    background: #e6f9ef;
    color: #1e9e5a;
}

body {
    padding-bottom: 0px !important;
}