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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Üst Menü */
.top-menu {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-menu-left {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.top-menu-left li {
    position: relative;
}

.top-menu-left a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.top-menu-left a:hover {
    color: #ffd700;
}

.top-menu-left .dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 5px;
}

.top-menu-left .dropdown-item {
    color: #333;
    padding: 10px 20px;
    transition: background 0.3s;
}

.top-menu-left .dropdown-item:hover {
    background: #f8f9fa;
    color: #2a5298;
}

.top-menu-right {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.top-menu-right {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.top-menu-right li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-menu-item {
    margin: 0 10px;
}

.social-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.social-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.1);
    color: #ffd700;
}

.social-menu a i {
    font-size: 14px;
}

@media (max-width: 991px) {
    .top-menu-left,
    .top-menu-right {
        justify-content: center;
        text-align: center;
        margin-top: 5px;
        flex-wrap: wrap;
    }
    
    .top-menu-item {
        margin: 5px;
        font-size: 12px;
    }
    
    .social-menu {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 10px;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .top-menu-right {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobil Menü Düzeltmeleri - 991px ve altı */
    .navbar-collapse {
        background: #fff;
        margin-top: 10px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .main-menu {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        gap: 5px !important;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        width: 100%;
        align-items: stretch !important;
    }
    
    .main-menu .nav-item {
        width: 100%;
        display: block;
    }
    
    .navbar-nav .nav-link {
        font-size: 14px !important;
        margin: 0 !important;
        padding: 12px 15px !important;
        flex-direction: row;
        gap: 10px;
        white-space: normal;
        width: 100%;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover {
        background: #f8f9fa;
        color: #2a5298 !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .nav-icon {
        font-size: 16px;
        width: 20px;
        min-width: 20px;
    }
    
    .nav-text {
        font-size: 13px;
        letter-spacing: 0.3px;
        flex: 1;
    }
    
    /* Dropdown menüler mobilde */
    .mega-menu .mega-dropdown,
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: #f8f9fa;
        border: none;
        box-shadow: none;
        padding: 0;
        min-width: auto !important;
    }
    
    .dropdown-item {
        padding: 10px 15px 10px 45px !important;
        border-bottom: 1px solid #e9ecef;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background: #e9ecef;
        padding-left: 50px !important;
    }
}

.top-menu-right a {
    color: #fff;
    text-decoration: none;
}

.top-menu-right i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Ana Navbar */
.main-navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px 0;
    transition: all 0.3s;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

.main-menu .nav-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.main-navbar.navbar-scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.main-navbar.navbar-scrolled .logo-img {
    height: 45px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: height 0.3s;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 4px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 10px !important;
    white-space: nowrap;
    line-height: 1.2;
}

.navbar-nav .nav-link:hover {
    color: #2a5298 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2a5298;
    transition: width 0.3s;
}

/* Dropdown menülerde çizgiyi gizle */
.navbar-nav .nav-link.dropdown-toggle::after {
    display: none;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Dropdown olmayan linklerde çizgiyi göster */
.navbar-nav .nav-item:not(.dropdown) .nav-link:hover::after {
    width: 100%;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    width: 16px;
    min-width: 16px;
    text-align: center;
    transition: transform 0.3s;
    flex-shrink: 0;
    line-height: 1;
}

.nav-text {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar-nav .nav-link:hover .nav-icon {
    transform: scale(1.2) rotate(5deg);
}

.mega-menu .mega-dropdown {
    min-width: 220px;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-link.dropdown-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.navbar-toggler-icon i {
    color: #333;
    font-size: 24px;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.15) rotate(5deg);
}

.navbar-nav .nav-link .nav-icon i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #2a5298;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 0;
    top: 100%;
    left: 0;
    display: block;
    position: absolute;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Dropdown hover durumu - menü açık kalmalı */
.nav-item.dropdown:hover .dropdown-menu,
.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

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

.nav-item.dropdown .dropdown-menu {
    margin-top: 0;
    top: 100%;
    left: 0;
}

/* Dropdown menü ile link arasında boşluk olmamalı - padding ile düzelt */
.nav-item.dropdown .nav-link {
    padding-bottom: 6px !important;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #2a5298;
    padding-left: 25px;
}

/* Gelişmiş Arama Sistemi */
/* Kurumsal Arama Bölümü - Slider'ın Hemen Altında */
.corporate-search-section {
    margin-top: -80px;
    position: relative;
    z-index: 15;
    padding-bottom: 0;
}

.corporate-search-wrapper {
    background: #FDFDFD;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 0;
}

.search-tabs-corporate {
    display: flex;
    background: transparent;
    border-bottom: none;
    padding: 20px 30px 15px;
    gap: 10px;
}

.search-tab-corporate {
    flex: 1;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    color: #9e9e9e;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.search-tab-corporate i {
    font-size: 18px;
    color: #9e9e9e;
}

.search-tab-corporate:hover {
    background: rgba(0,0,0,0.02);
    color: #666;
}

.search-tab-corporate.active {
    background: #fff;
    border-color: #e0e0e0;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-tab-corporate.active i {
    color: #1A73E8;
}

.search-tab-corporate.active::after {
    display: none;
}

.search-content-corporate {
    padding: 30px;
    background: transparent;
}

.search-panel-corporate {
    display: none;
}

.search-panel-corporate.active {
    display: block;
    animation: fadeInUp 0.4s ease-out;
}

.search-field-corporate {
    position: relative;
    margin-bottom: 0;
}

.search-field-corporate label {
    display: none;
}

.search-field-corporate label i {
    display: none;
}

.search-field-corporate .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.3s;
    font-size: 15px;
    background: #fff;
    width: 100%;
}

.search-field-corporate .form-control:focus {
    border-color: #1A73E8;
    box-shadow: 0 0 0 2px rgba(26,115,232,0.1);
    outline: none;
}

.search-field-corporate .form-control::placeholder {
    color: #9e9e9e;
}

.date-field-wrapper {
    position: relative;
}

.date-field-wrapper {
    position: relative;
}

.date-field-wrapper:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #e0e0e0;
    z-index: 1;
}

@media (max-width: 768px) {
    .date-field-wrapper::after {
        display: none;
    }
}

.guest-field-wrapper {
    position: relative;
}

.guest-display {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s;
}

.guest-display:hover {
    border-color: #1A73E8;
}

.guest-count {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1;
    margin-bottom: 2px;
}

.guest-label {
    font-size: 12px;
    color: #9e9e9e;
    line-height: 1;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    margin-top: 5px;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f9fa;
    color: #2a5298;
}

.suggestion-item i {
    margin-right: 8px;
    color: #ffd700;
}

.search-actions-corporate {
    display: none;
}

.btn-search-corporate {
    width: 100%;
    height: 100%;
    min-height: 50px;
    padding: 0;
    background: #1A73E8;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26,115,232,0.3);
}

.btn-search-corporate:hover {
    background: #1557B0;
    box-shadow: 0 4px 12px rgba(26,115,232,0.4);
    transform: translateY(-1px);
}

.btn-search-corporate i {
    font-size: 18px;
}

.popular-searches {
    padding: 20px 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

.popular-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.popular-link {
    font-size: 14px;
    color: #1A73E8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.popular-link:hover {
    color: #1557B0;
    text-decoration: underline;
}

.popular-link i {
    font-size: 12px;
}

/* Kişi Sayısı Sayaç */
.person-counter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.counter-btn {
    width: 35px;
    height: 40px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #2a5298;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.counter-btn:hover {
    background: #2a5298;
    color: #fff;
    border-color: #2a5298;
    transform: scale(1.05);
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-input {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 5px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
}

.counter-input:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42,82,152,0.1);
    outline: none;
}

.advanced-search-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.advanced-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.search-tab {
    background: rgba(42, 82, 152, 0.9);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    position: relative;
}

.search-tab:first-child {
    border-radius: 8px 0 0 0;
}

.search-tab:last-child {
    border-radius: 0 8px 0 0;
}

.search-tab:hover {
    background: rgba(42, 82, 152, 1);
    transform: translateY(-2px);
}

.search-tab.active {
    background: #ff6b35;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}


.search-content {
    position: relative;
    z-index: 1;
}

.search-panel {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}


.search-field {
    margin-bottom: 15px;
}

.search-field label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.search-field label i {
    margin-right: 5px;
    color: #2a5298;
}

.search-field .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.search-field .form-control:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.25);
}

.search-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn-filter {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-filter:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-search-main {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
}

.btn-search-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 82, 152, 0.4);
}

/* Arama Kutusu */
.search-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 0;
}

.search-box {
    display: flex;
    gap: 10px;
    position: relative;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: #999;
    font-size: 18px;
    z-index: 10;
    animation: searchPulse 2s infinite;
}

@keyframes searchPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.search-box input {
    flex: 1;
    padding: 15px 20px 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.search-box input::placeholder {
    color: #999;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn-search {
    padding: 15px 30px;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-search:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.btn-search i {
    margin-right: 5px;
    animation: searchRotate 2s infinite;
}

@keyframes searchRotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* Slider */
#mainSlider {
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.slider-image {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: all 1s ease-in-out;
    will-change: transform, opacity, filter;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* Dalgalanma Efekti (Wave) */
.carousel-item[data-effect="wave"] .slider-image {
    animation: waveEffect 1.5s ease-in-out;
    transform-origin: center center;
}

@keyframes waveEffect {
    0% {
        transform: scale(1.2) rotate(0deg);
        opacity: 0;
        filter: brightness(0.5) blur(10px);
    }
    50% {
        transform: scale(1.05) rotate(2deg);
        filter: brightness(0.6) blur(5px);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: brightness(0.7) blur(0px);
    }
}

.carousel-item[data-effect="wave"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: waveShine 1.5s ease-in-out;
    z-index: 2;
}

@keyframes waveShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Parçalanma Efekti (Shatter) */
.carousel-item[data-effect="shatter"] .slider-image {
    animation: shatterEffect 1.2s ease-out;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@keyframes shatterEffect {
    0% {
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        transform: scale(1.3) rotate(5deg);
        opacity: 0;
        filter: brightness(0.3) contrast(2);
    }
    25% {
        clip-path: polygon(0 0, 50% 0, 50% 0, 0 0);
        transform: scale(1.2) rotate(3deg);
        filter: brightness(0.5) contrast(1.5);
    }
    50% {
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
        transform: scale(1.1) rotate(1deg);
        filter: brightness(0.6) contrast(1.2);
    }
    75% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: scale(1.05) rotate(0.5deg);
        filter: brightness(0.65) contrast(1.1);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: brightness(0.7) contrast(1);
    }
}

.carousel-item[data-effect="shatter"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shatterLines 1.2s ease-out;
    z-index: 2;
    pointer-events: none;
}

@keyframes shatterLines {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Zoom Fade Efekti */
.carousel-item[data-effect="zoom-fade"] .slider-image {
    animation: zoomFadeEffect 1.3s ease-out;
}

@keyframes zoomFadeEffect {
    0% {
        transform: scale(1.5);
        opacity: 0;
        filter: brightness(0.2) blur(15px);
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
        filter: brightness(0.5) blur(8px);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: brightness(0.7) blur(0px);
    }
}

.carousel-item[data-effect="zoom-fade"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: zoomRipple 1.3s ease-out;
    z-index: 2;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

@keyframes zoomRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* Slide Fade Efekti */
.carousel-item[data-effect="slide-fade"] .slider-image {
    animation: slideFadeEffect 1.4s ease-in-out;
}

@keyframes slideFadeEffect {
    0% {
        transform: translateX(-100%) scale(1.1);
        opacity: 0;
        filter: brightness(0.3) blur(10px);
    }
    50% {
        transform: translateX(0) scale(1.05);
        opacity: 0.8;
        filter: brightness(0.6) blur(5px);
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
        filter: brightness(0.7) blur(0px);
    }
}

.carousel-item[data-effect="slide-fade"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, transparent 50%);
    animation: slideShine 1.4s ease-in-out;
    z-index: 2;
    pointer-events: none;
}

@keyframes slideShine {
    0% {
        transform: translateX(-100%);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Aktif olmayan item'lar için */
.carousel-item:not(.active) .slider-image {
    opacity: 0;
    transform: scale(1.1);
    animation: none !important;
}

/* Görsel yükleme durumu */
.slider-image.loaded {
    opacity: 1;
}

.slider-image:not(.loaded) {
    opacity: 0;
    filter: blur(20px);
}

/* Loading efekti */
.carousel-item {
    position: relative;
}

.carousel-item .slider-image:not(.loaded)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.slider-image.loaded::after {
    display: none;
}

/* Caption animasyonları */
.carousel-item.active .carousel-caption {
    animation: captionFadeIn 1s ease-out 0.3s both;
}

.carousel-item:not(.active) .carousel-caption {
    opacity: 0;
}

@keyframes captionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fırsat Badge Stilleri */
.offer-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 5;
    animation: badgePulse 2s ease-in-out infinite;
}

.offer-badge-content {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5);
    position: relative;
    overflow: hidden;
}

.offer-badge-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.offer-badge-content i {
    font-size: 18px;
    animation: fireFlicker 1s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% {
        transform: scale(1);
        color: #ffd700;
    }
    50% {
        transform: scale(1.2);
        color: #ff6b6b;
    }
}

.offer-text {
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.offer-ribbon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid #c0392b;
    border-bottom: 15px solid transparent;
    border-top: 15px solid #c0392b;
    animation: ribbonFloat 2s ease-in-out infinite;
}

@keyframes ribbonFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* İndirim Badge */
.discount-badge {
    position: absolute;
    top: 100px;
    right: 30px;
    z-index: 5;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: discountBounce 2s ease-in-out infinite;
    border: 2px solid #fff;
}

.discount-badge i {
    font-size: 16px;
    animation: percentSpin 2s linear infinite;
}

@keyframes percentSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes discountBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.discount-text {
    letter-spacing: 0.5px;
}

/* Fırsat Subtitle */
.offer-subtitle {
    font-size: 1.3rem !important;
    color: #ffd700 !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    animation: subtitleGlow 2s ease-in-out infinite;
}

@keyframes subtitleGlow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

.offer-subtitle i {
    margin: 0 8px;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

/* Fırsat Butonu */
.btn-offer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    font-weight: 700 !important;
    padding: 12px 30px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5) !important;
    transition: all 0.3s !important;
    animation: buttonPulse 2s ease-in-out infinite !important;
}

.btn-offer:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.7) !important;
    background: linear-gradient(135deg, #ee5a6f 0%, #ff6b6b 100%) !important;
}

.btn-offer i {
    margin-right: 8px;
    animation: tagShake 1s ease-in-out infinite;
}

@keyframes tagShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255, 107, 107, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(255, 107, 107, 0.8);
    }
}

/* Responsive - Fırsat Badge */
@media (max-width: 768px) {
    .offer-badge {
        top: 15px;
        right: 15px;
    }
    
    .offer-badge-content {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .discount-badge {
        top: 70px;
        right: 15px;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .offer-subtitle {
        font-size: 1rem !important;
    }
}

.carousel-caption {
    bottom: 30%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.carousel-caption .btn {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.carousel-caption .btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.carousel-caption .btn:hover i {
    transform: translateX(5px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gelişmiş Tur Bölümleri - 2 Sütun 4 Layout */
.advanced-tours-section {
    padding: 0 0 20px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    margin-top: 0;
}

.advanced-tours-section::before {
    display: none;
}

.advanced-tours-section .container {
    position: relative;
}

.advanced-tours-section .row {
    gap: 25px;
}

.advanced-tours-section .col-12 {
    padding: 0;
    position: relative;
}

.tour-layout-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2), 0 0 0 2px rgba(42, 82, 152, 0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(42, 82, 152, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tour-layout-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2a5298 0%, #667eea 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.tour-layout-box:hover::before {
    transform: scaleX(1);
}

.tour-layout-box:hover {
    box-shadow: 0 15px 50px rgba(42, 82, 152, 0.25), 0 0 0 1px rgba(42, 82, 152, 0.2);
    transform: translateY(-8px);
    border-color: rgba(42, 82, 152, 0.3);
}

.layout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(42, 82, 152, 0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.layout-title-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.layout-icon {
    font-size: 2.5rem;
    color: #2a5298;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #fff;
    flex-shrink: 0;
}

.layout-title-area > div {
    flex: 1;
    min-width: 0;
}

.layout-title-area h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a5298;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.layout-title-area p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.layout-controls {
    display: flex;
    gap: 10px;
}

.layout-nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #2a5298;
    background: #fff;
    color: #2a5298;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.layout-nav-btn:hover {
    background: #2a5298;
    color: #fff;
    transform: scale(1.1);
}

.tour-carousel-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
    background: #f8f9fa;
    padding: 20px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    width: 100%;
}

.tour-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
    flex: 1;
    width: max-content;
    min-width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar tamamen gizle - temaya gömülü */
.tour-carousel-wrapper::-webkit-scrollbar,
.tour-carousel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.tour-carousel-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tour-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tour-card-item {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    /* Çizgi detayları - Temaya uygun renkler */
    border: 2px solid rgba(var(--color-primary-rgb, 42, 82, 152), 0.1);
    border-top: 3px solid var(--color-primary, #2a5298);
}

.tour-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-primary, #2a5298) 0%, 
        var(--color-accent, #ffd700) 50%, 
        var(--color-primary, #2a5298) 100%);
    z-index: 10;
    opacity: 0.8;
}

.tour-card-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary, #2a5298) 50%, 
        transparent 100%);
    z-index: 10;
    opacity: 0.3;
}

.tour-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2),
                0 0 0 2px var(--color-primary, #2a5298),
                0 0 20px rgba(var(--color-primary-rgb, 42, 82, 152), 0.3);
    border-color: var(--color-primary, #2a5298);
}

.tour-card-item:hover::before {
    opacity: 1;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-primary, #2a5298) 0%, 
        var(--color-accent, #ffd700) 50%, 
        var(--color-primary-dark, #1e3c72) 100%);
}

.tour-card-item:hover::after {
    opacity: 0.6;
    height: 3px;
}

/* Yurtdışı Turlar Kart Glow */
.tour-card-yurtdisi {
    position: relative;
}

.tour-card-yurtdisi:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2),
                0 0 20px rgba(var(--color-primary-rgb, 42, 82, 152), 0.3),
                0 0 40px rgba(var(--color-primary-rgb, 42, 82, 152), 0.2);
}

.tour-card-item .tour-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 1;
}

.tour-card-item .tour-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, 
        rgba(var(--color-primary-rgb, 42, 82, 152), 0.95) 0%,
        rgba(var(--color-primary-rgb, 42, 82, 152), 0.85) 30%,
        rgba(var(--color-primary-rgb, 42, 82, 152), 0.7) 50%,
        rgba(var(--color-primary-rgb, 42, 82, 152), 0.4) 75%,
        transparent 100%);
    z-index: 2;
    pointer-events: none;
    transition: all 0.4s ease;
    border-radius: 0 0 12px 12px;
    /* Çizgi detayı - alt kenar */
    border-top: 2px solid rgba(var(--color-accent-rgb, 255, 215, 0), 0.4);
}

.tour-card-item:hover .tour-image::after {
    height: 70%;
    background: linear-gradient(to top, 
        rgba(var(--color-primary-rgb, 42, 82, 152), 0.98) 0%,
        rgba(var(--color-primary-rgb, 42, 82, 152), 0.9) 30%,
        rgba(var(--color-primary-rgb, 42, 82, 152), 0.75) 50%,
        rgba(var(--color-primary-rgb, 42, 82, 152), 0.5) 75%,
        transparent 100%);
    border-top-width: 3px;
    border-top-color: rgba(var(--color-accent-rgb, 255, 215, 0), 0.6);
}

/* Görsel üzerindeki başlık - Mavi Overlay Üzerinde */
.tour-image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 15px 20px;
    z-index: 3;
    pointer-events: none;
}

.tour-image-title h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6),
                 0 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.tour-content-title {
    display: none;
}

/* Tour content içeriğini görselin üzerine taşı - Estetik Çerçeve */
.tour-card-item .tour-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: transparent;
    padding: 25px 20px 20px 20px;
    pointer-events: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.tour-card-item .tour-content h4:not(.tour-content-title) {
    color: #000 !important;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8),
                 1px 1px 2px rgba(255, 255, 255, 0.9),
                 0 0 10px rgba(255, 255, 255, 0.6),
                 0 0 20px rgba(255, 255, 255, 0.4);
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 4;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    order: 1;
    width: 100%;
    word-wrap: break-word;
    /* Çizgi detayı - başlık altı */
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(var(--color-accent-rgb, 255, 215, 0), 0.3);
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.tour-card-item:hover .tour-content h4:not(.tour-content-title) {
    color: #000 !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9),
                 1px 1px 2px rgba(255, 255, 255, 1),
                 0 0 12px rgba(255, 255, 255, 0.7),
                 0 0 25px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.tour-card-item .tour-content p {
    color: #000 !important;
    font-size: 1rem;
    margin: 15px 0 0 0;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* Çizgi detayları - iç kenarlar */
    border-left: 3px solid var(--color-accent, #ffd700);
    border-right: 3px solid var(--color-accent, #ffd700);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8),
                 0 0 5px rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    order: 4;
    letter-spacing: 0.3px;
    width: 100%;
    word-wrap: break-word;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                0 2px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tour-card-item:hover .tour-content p {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 1),
                 0 0 8px rgba(255, 255, 255, 0.8);
}

.tour-card-item .tour-content p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.tour-card-item .tour-content p:hover::before {
    left: 100%;
}

.tour-card-item .tour-content p:hover {
    background: linear-gradient(135deg, var(--color-primary-dark, #1e3c72) 0%, var(--color-primary, #2a5298) 50%, var(--color-primary-dark, #1e3c72) 100%);
    background-size: 200% 200%;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--color-primary-rgb, 42, 82, 152), 0.6),
                0 3px 15px rgba(var(--color-primary-rgb, 42, 82, 152), 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
    border-left-width: 4px;
    border-right-width: 4px;
    border-left-color: var(--color-accent, #ffd700);
    border-right-color: var(--color-accent, #ffd700);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.tour-card-item .tour-content .tour-features {
    margin-bottom: 15px;
}

.tour-card-item .tour-content .tour-features span {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.tour-card-item .tour-content .tour-features span i {
    color: #ffd700;
}

.tour-card-item .tour-content .tour-icon {
    display: none;
}

.tour-card-item .tour-content .tour-features {
    display: none;
}

.tour-card-item .tour-content .tour-price {
    display: none;
}

.tour-card-item .tour-content .tour-duration {
    display: none;
}

.tour-card-item .tour-content .tour-price {
    color: var(--color-accent, #ffd700);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    /* Çizgi detayı - fiyat altı */
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(var(--color-accent-rgb, 255, 215, 0), 0.3);
}

.tour-card-item .tour-content .tour-duration {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9),
                 0 1px 4px rgba(0, 0, 0, 0.95);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tour-card-item .tour-content .tour-duration i {
    color: var(--color-accent, #ffd700);
}

.tour-card-item .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 12px 12px 0 0;
}

.tour-card-item:hover .tour-image img {
    transform: scale(1.1);
}

/* Yurtdışı Turlar - Mavi Glow Efekti */
.tour-card-yurtdisi .tour-image {
    position: relative;
    overflow: visible;
}

.tour-card-yurtdisi .tour-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb, 42, 82, 152), 0.5) 0%, rgba(var(--color-primary-rgb, 42, 82, 152), 0.5) 50%, rgba(var(--color-primary-rgb, 42, 82, 152), 0.5) 100%);
    border-radius: 15px;
    z-index: 0;
    opacity: 0.6;
    transition: all 0.5s ease;
    filter: blur(12px);
    animation: blueGlowPulse 3s ease-in-out infinite;
}

.tour-card-yurtdisi .tour-image::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb, 42, 82, 152), 0.3), rgba(var(--color-primary-rgb, 42, 82, 152), 0.3)) padding-box,
                linear-gradient(135deg, rgba(var(--color-primary-rgb, 42, 82, 152), 0.6), rgba(var(--color-primary-rgb, 42, 82, 152), 0.6)) border-box;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tour-card-yurtdisi .tour-image img {
    position: relative;
    z-index: 2;
    filter: brightness(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.tour-card-yurtdisi:hover .tour-image::before {
    opacity: 1;
    filter: blur(18px);
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
}

.tour-card-yurtdisi:hover .tour-image::after {
    opacity: 1;
    box-shadow: 0 0 20px rgba(var(--color-primary-rgb, 42, 82, 152), 0.5);
}

.tour-card-yurtdisi:hover .tour-image img {
    filter: brightness(1.15) contrast(1.05);
    box-shadow: 0 0 25px rgba(var(--color-primary-rgb, 42, 82, 152), 0.9), 
                0 0 50px rgba(var(--color-primary-rgb, 42, 82, 152), 0.7),
                0 0 75px rgba(var(--color-primary-rgb, 42, 82, 152), 0.5),
                inset 0 0 30px rgba(var(--color-primary-rgb, 42, 82, 152), 0.2);
}

@keyframes blueGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.03);
    }
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.4);
}

.tour-location-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    /* Çizgi detayları - sol kenar */
    border-left: 3px solid var(--color-accent, #ffd700);
    transition: all 0.3s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7),
                 0 1px 4px rgba(0, 0, 0, 0.8);
    width: fit-content;
    max-width: 100%;
    word-wrap: break-word;
}

.tour-location-badge::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: var(--color-primary, #2a5298);
    opacity: 0.5;
    border-radius: 2px;
}

.tour-location-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    border-left-width: 4px;
}

.tour-location-badge:hover::after {
    opacity: 0.8;
    width: 3px;
}

.tour-location-badge i {
    font-size: 14px;
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.tour-card-item .tour-content {
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: transparent;
    padding: 20px;
    padding-top: 0;
}

.tour-card-item .tour-icon {
    font-size: 2rem;
    color: #2a5298;
    margin-bottom: 12px;
    display: inline-block;
    transition: all 0.3s;
}

.tour-card-item:hover .tour-icon {
    transform: scale(1.2) rotate(10deg);
    color: #ffd700;
}

.tour-card-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 3;
}

/* Turuncu overlay üzerindeki başlık için beyaz renk */
.tour-card-item .tour-image + .tour-content h4 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tour-card-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tour-card-item .tour-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tour-card-item .tour-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s;
}

.tour-card-item:hover .tour-features span {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.tour-card-item .tour-features i {
    color: var(--color-primary, #2a5298);
    transition: color 0.3s;
}

.tour-card-item:hover .tour-features i {
    color: var(--color-accent, #ffd700);
}

/* Görsel üzerindeki içerik için özel stiller */
.tour-card-item .tour-content .tour-features span {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.tour-card-item .tour-content .tour-features span i {
    color: #ffd700;
}

.tour-card-item .tour-price {
    color: var(--color-primary, #2a5298);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Görsel üzerindeki içerik için fiyat rengi */
.tour-card-item .tour-content .tour-price {
    color: #000 !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8),
                 1px 1px 2px rgba(255, 255, 255, 0.9),
                 0 0 10px rgba(255, 255, 255, 0.6),
                 0 0 20px rgba(255, 255, 255, 0.4);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
}

.tour-card-item:hover .tour-content .tour-price {
    color: #000 !important;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9),
                 1px 1px 2px rgba(255, 255, 255, 1),
                 0 0 12px rgba(255, 255, 255, 0.7),
                 0 0 25px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.tour-card-item .tour-duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-item .tour-duration i {
    color: var(--color-primary, #2a5298);
}

.tour-actions {
    display: flex;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: nowrap;
    order: 3;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    /* Çizgi detayı - üst kenar */
    padding-top: 15px;
    border-top: 2px solid rgba(var(--color-accent-rgb, 255, 215, 0), 0.3);
    position: relative;
}

.tour-actions::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 30%;
    height: 2px;
    background: var(--color-accent, #ffd700);
    opacity: 0.6;
}

.tour-card-item .tour-content .tour-location-badge {
    order: 2;
    margin-left: 0;
    margin-right: auto;
    flex-shrink: 0;
}

.btn-reservation-tour {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-primary, #2a5298) 0%, var(--color-primary-dark, #1e3c72) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    padding: 0 24px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(var(--color-primary-rgb, 42, 82, 152), 0.4),
                0 2px 10px rgba(var(--color-primary-rgb, 42, 82, 152), 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 0;
    border: none;
    /* Çizgi detayları - kenarlar */
    border-left: 3px solid var(--color-accent, #ffd700);
    border-right: 3px solid var(--color-accent, #ffd700);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    height: 52px;
    box-sizing: border-box;
}

.btn-reservation-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-reservation-tour:hover::before {
    left: 100%;
}

.btn-reservation-tour:hover {
    background: linear-gradient(135deg, var(--color-primary-dark, #1e3c72) 0%, var(--color-primary, #2a5298) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--color-primary-rgb, 42, 82, 152), 0.5),
                0 4px 15px rgba(var(--color-primary-rgb, 42, 82, 152), 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-left-width: 4px;
    border-right-width: 4px;
}

.btn-reservation-tour i {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.btn-reservation-tour:hover i {
    transform: scale(1.15) rotate(5deg);
}

.btn-reservation-tour span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    vertical-align: middle;
}

.btn-tour-detail {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #5b9bd5;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s ease;
    min-width: auto;
    box-shadow: 0 1px 3px rgba(91, 155, 213, 0.2);
    letter-spacing: normal;
    position: relative;
    overflow: visible;
    height: auto;
    box-sizing: border-box;
}

.btn-tour-detail::before {
    display: none;
}

.btn-tour-detail:hover::before {
    display: none;
}

.btn-tour-detail:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(91, 155, 213, 0.3);
    background: #4a8bc2;
}

.btn-tour-detail i {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.btn-tour-detail:hover i {
    transform: none;
}

.btn-tour-detail span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    vertical-align: middle;
}

.btn-tour-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2a5298;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px 0;
}

.btn-tour-link:hover {
    color: #1e3c72;
    gap: 12px;
}

.btn-tour-link i {
    transition: transform 0.3s;
}

.btn-tour-link:hover i {
    transform: translateX(5px);
}

/* Turlar Bölümü */
.tours-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.tours-section-dark {
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffd700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
}

.section-icon {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 20px;
    display: block;
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tour-card.animate-in,
.feature-box.animate-in,
.review-card.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 82, 152, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-content {
    padding: 20px;
}

.tour-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a5298;
    margin-bottom: 10px;
}

.tour-content p {
    color: #666;
    font-size: 0.95rem;
}

.tour-icon {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s;
}

.tour-card:hover .tour-icon {
    transform: scale(1.2) rotate(10deg);
    color: #ffd700;
}

.tour-features {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.tour-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #666;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s;
}

.tour-card:hover .tour-features span {
    background: #2a5298;
    color: #fff;
}

.tour-features i {
    color: #2a5298;
    transition: color 0.3s;
}

.tour-card:hover .tour-features i {
    color: #ffd700;
}

/* Özellikler Bölümü */
.features-section {
    padding: 20px 0 0 0;
    background: #fff;
    border-bottom: none;
    margin-bottom: 0;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s;
    border-radius: 10px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: all 0.3s;
    transform: scale(1.5);
}

.feature-box:hover .feature-icon::before {
    opacity: 0.3;
    transform: scale(1.8);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-icon i {
    position: relative;
    z-index: 1;
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
}

/* İstatistikler Bölümü */
.stats-section {
    padding: 0 0 50px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stat-box {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Yorumlar Bölümü */
.reviews-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.reviews-section .section-header h2 {
    color: #fff;
}

.reviews-section .section-icon {
    color: #ffd700;
}

.reviews-section .section-header p {
    color: rgba(255,255,255,0.9);
}

.review-card {
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    height: 100%;
    transition: transform 0.3s;
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.review-info h5 {
    margin: 0;
    font-weight: 600;
}

.review-stars {
    color: #ffd700;
    margin-top: 5px;
}

.review-stars i {
    margin-right: 2px;
    animation: starTwinkle 2s infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.review-text {
    font-style: italic;
    line-height: 1.8;
    color: #666;
}

.review-date {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #999;
}

/* Ödeme Sistemleri */
.payment-systems {
    padding: 30px 0;
    background: transparent;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.payment-header h3 {
    font-size: 1.5rem;
    color: #2a5298;
    font-weight: 600;
}

.payment-logo-image {
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    display: block;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.payment-logo-image:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.payment-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.main-footer h5 {
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-footer p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #ffd700;
    width: 20px;
    text-align: center;
    animation: contactPulse 2s infinite;
}

@keyframes contactPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-facebook:hover {
    background: #1877f2 !important;
    color: #fff !important;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #fff !important;
}

.social-twitter:hover {
    background: #1da1f2 !important;
    color: #fff !important;
}

.social-youtube:hover {
    background: #ff0000 !important;
    color: #fff !important;
}

.social-whatsapp:hover {
    background: #25d366 !important;
    color: #fff !important;
}

.footer-awards {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-awards span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-size: 0.9rem;
}

.footer-awards i {
    font-size: 1.2rem;
    animation: awardRotate 3s infinite;
}

@keyframes awardRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.footer-links a i {
    margin-right: 8px;
    width: 20px;
    transition: transform 0.3s;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    color: #999;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ffd700;
}

/* Tur Rehberi İçerikleri - Instagram Grid Style */
.instagram-grid-section {
    background: #fafafa;
    padding: 50px 0;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Header */
.instagram-grid-header {
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.25);
    animation: instagram-gradient 3s ease infinite;
    background-size: 400% 400%;
}

@keyframes instagram-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.header-text {
    text-align: left;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #262626;
    margin: 0 0 5px 0;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 14px;
    color: #8e8e8e;
    margin: 0;
    font-weight: 400;
}

/* Instagram Grid Layout */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5px;
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* Grid Items */
.instagram-grid-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.25s ease, z-index 0.25s ease;
}

.instagram-grid-item:hover {
    z-index: 10;
    transform: scale(1.03);
}

/* Different Sizes - Daha küçük boyutlar */
.grid-item-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.grid-item-medium {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
}

.grid-item-small {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
}

.grid-item-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-grid-item:hover .grid-item-image img {
    transform: scale(1.1);
}

/* Overlay */
.grid-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(188, 24, 136, 0.85) 0%, rgba(220, 39, 67, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.instagram-grid-item:hover .grid-item-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.3s ease;
    width: 100%;
}

.instagram-grid-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.overlay-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-item-large .overlay-title {
    font-size: 18px;
    -webkit-line-clamp: 3;
}

.overlay-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.overlay-category {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.overlay-arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc1888;
    font-size: 14px;
    transform: translateX(15px);
    opacity: 0;
    transition: all 0.25s ease;
}

.instagram-grid-item:hover .overlay-arrow {
    transform: translateX(0);
    opacity: 1;
}

/* Badge */
.grid-item-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc1888;
    font-size: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: transform 0.25s ease;
}

.instagram-grid-item:hover .grid-item-badge {
    transform: scale(1.1) rotate(15deg);
}

/* Footer */
.instagram-grid-footer {
    text-align: center;
    margin-top: 35px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.25);
    background-size: 400% 400%;
    animation: instagram-gradient 3s ease infinite;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.35);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateX(4px);
}

/* Responsive - Instagram Grid */
@media (max-width: 992px) {
    .instagram-grid-section {
        padding: 40px 0;
    }
    
    .instagram-grid-header {
        margin-bottom: 30px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        max-width: 900px;
    }
    
    .grid-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .grid-item-medium {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .instagram-grid-section {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .header-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        max-width: 100%;
        gap: 1px;
    }
    
    .grid-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .grid-item-medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .overlay-title {
        font-size: 13px;
    }
    
    .grid-item-large .overlay-title {
        font-size: 16px;
    }
    
    .instagram-grid-footer {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .instagram-grid-section {
        padding: 30px 0;
    }
    
    .instagram-grid-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .header-text {
        text-align: center;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .header-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        border-radius: 4px;
    }
    
    .grid-item-large,
    .grid-item-medium {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .overlay-title {
        font-size: 12px;
    }
    
    .grid-item-large .overlay-title {
        font-size: 14px;
    }
    
    .overlay-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .overlay-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
        bottom: 8px;
        right: 8px;
    }
    
    .grid-item-badge {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: 8px;
        right: 8px;
    }
    
    .instagram-grid-footer {
        margin-top: 25px;
    }
    
    .load-more-btn {
        padding: 10px 22px;
        font-size: 13px;
    }
}

/* Vizeli/Vizesiz Turlar Layout - Profesyonel Kompakt Tasarım */
.tour-layout-section {
    padding: 40px 0;
    background: #f8f9fa;
}

/* Sol Taraf: Büyük Görsel */
.main-tour-image {
    height: 100%;
    min-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px dashed rgba(42, 82, 152, 0.4);
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(30, 60, 114, 0.08) 100%);
    padding: 3px;
    position: relative;
    transition: all 0.4s ease;
}

.main-tour-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

.main-tour-image:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), 0 0 25px rgba(42, 82, 152, 0.4);
    transform: translateY(-5px);
    border-color: rgba(42, 82, 152, 0.8);
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(30, 60, 114, 0.15) 100%);
}

.main-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 0;
    text-decoration: none;
}

.main-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.9);
}

.main-image-link:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.main-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(42, 82, 152, 0.4) 0%, 
        rgba(30, 60, 114, 0.5) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    z-index: 2;
    transition: all 0.4s ease;
}

.main-image-link:hover .main-image-overlay {
    background: linear-gradient(135deg, 
        rgba(42, 82, 152, 0.6) 0%, 
        rgba(30, 60, 114, 0.7) 30%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.9) 100%);
}

.main-image-content {
    color: #fff;
    width: 100%;
}

.main-image-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.main-image-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.main-image-link:hover .main-image-cta {
    transform: translateX(10px);
}

.main-image-cta i {
    transition: transform 0.3s;
}

.main-image-link:hover .main-image-cta i {
    transform: translateX(5px);
}

/* Sağ Taraf: 6'lı Grid */
.tour-grid-6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    height: 600px;
}

.tour-grid-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tour-grid-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.grid-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 3px dashed rgba(42, 82, 152, 0.4);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(30, 60, 114, 0.08) 100%);
    transition: all 0.4s ease;
}

.grid-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 1;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

.tour-grid-item:hover .grid-image-wrapper {
    border-color: rgba(42, 82, 152, 0.8);
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(30, 60, 114, 0.15) 100%);
    box-shadow: 0 0 20px rgba(42, 82, 152, 0.3);
}

.tour-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.85);
    position: relative;
    z-index: 0;
}

.tour-grid-item:hover img {
    transform: scale(1.2);
    filter: brightness(1);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(42, 82, 152, 0.3) 0%, 
        rgba(30, 60, 114, 0.4) 30%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    z-index: 1;
    transition: all 0.4s ease;
}

.tour-grid-item:hover .grid-overlay {
    background: linear-gradient(135deg, 
        rgba(42, 82, 152, 0.5) 0%, 
        rgba(30, 60, 114, 0.6) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.95) 100%);
}

.grid-title {
    color: #fff;
    font-size: 1.1rem;
    position: relative;
    z-index: 3;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
    transition: transform 0.3s;
}

.tour-grid-item:hover .grid-title {
    transform: translateY(-3px);
}

/* Responsive - Tour Layout */
@media (max-width: 991px) {
    .main-tour-image {
        min-height: 400px;
        margin-bottom: 20px;
    }
    
    .main-image-title {
        font-size: 2.5rem;
    }
    
    .tour-grid-6 {
        height: auto;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .tour-layout-section {
        padding: 40px 0;
    }
    
    .main-tour-image {
        min-height: 350px;
    }
    
    .main-image-title {
        font-size: 2rem;
    }
    
    .main-image-overlay {
        padding: 30px 20px;
    }
    
    .tour-grid-6 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 15px;
    }
    
    .tour-grid-item {
        min-height: 200px;
    }
    
    .grid-title {
        font-size: 1rem;
    }
    
    .grid-image-wrapper {
        border-width: 2px;
    }
    
    .main-tour-image {
        border-width: 2px;
        padding: 2px;
    }
}

/* Tatil Otellerimiz Bölümü */
.hotels-section {
    padding: 50px 0;
    background: #fff;
}

.hotels-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.hotels-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.hotels-carousel::-webkit-scrollbar {
    display: none;
}

.hotel-card {
    width: calc((100% - 60px) / 4);
    min-width: calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hotel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.hotel-badge i {
    margin-right: 5px;
}

.hotel-content {
    padding: 25px;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2a5298;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
}

.hotel-location i {
    color: #ff6b6b;
}

.hotel-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.hotel-rating {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 14px;
}

.hotel-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hotel-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hotel-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

.hotel-features i {
    color: #2a5298;
}

.btn-reservation {
    width: 100%;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-reservation:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.3);
    color: #fff;
}

.hotel-carousel-prev,
.hotel-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #2a5298;
    color: #2a5298;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hotel-carousel-prev {
    left: 0;
}

.hotel-carousel-next {
    right: 0;
}

.hotel-carousel-prev:hover,
.hotel-carousel-next:hover {
    background: #2a5298;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.tour-price {
    color: #2a5298;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
}

.tour-duration {
    color: #666;
    font-size: 0.9rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-duration i {
    color: #2a5298;
}

/* Responsive */
@media (max-width: 768px) {
    .top-menu-right {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .slider-icon {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-icon {
        font-size: 2rem;
    }
    
    .tour-card {
        margin-bottom: 20px;
    }
    
    .tour-icon {
        font-size: 2rem;
    }
    
    .payment-logos {
        gap: 15px;
    }
    
    .payment-logo {
        height: 40px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    /* Mobil Menü Düzeltmeleri */
    .navbar-collapse {
        background: #fff;
        margin-top: 10px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .main-menu {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        gap: 5px !important;
    }
    
    .navbar-nav {
        flex-direction: column !important;
        width: 100%;
        align-items: stretch !important;
    }
    
    .main-menu .nav-item {
        width: 100%;
        display: block;
    }
    
    .navbar-nav .nav-link {
        font-size: 14px !important;
        margin: 0 !important;
        padding: 12px 15px !important;
        flex-direction: row;
        gap: 10px;
        white-space: normal;
        width: 100%;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover {
        background: #f8f9fa;
        color: #2a5298 !important;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .nav-icon {
        font-size: 16px;
        width: 20px;
        min-width: 20px;
    }
    
    .nav-text {
        font-size: 13px;
        letter-spacing: 0.3px;
        flex: 1;
    }
    
    /* Dropdown menüler mobilde */
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: #f8f9fa;
        border: none;
        box-shadow: none;
        padding: 0;
    }
    
    .dropdown-item {
        padding: 10px 15px 10px 45px !important;
        border-bottom: 1px solid #e9ecef;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background: #e9ecef;
        padding-left: 50px !important;
    }
    
    .search-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-tab {
        width: 100%;
        justify-content: center;
    }
    
    .search-panel {
        padding: 20px;
    }
    
    /* Overlay arama responsive */
    /* Kurumsal Arama Responsive */
    .corporate-search-section {
        margin-top: -60px;
    }
    
    .corporate-search-wrapper {
        border-radius: 15px;
    }
    
    .search-tabs-corporate {
        flex-wrap: wrap;
        padding: 15px 20px 10px;
        gap: 8px;
    }
    
    .search-tab-corporate {
        flex: 1 1 calc(50% - 4px);
        min-width: calc(50% - 4px);
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .search-content-corporate {
        padding: 20px;
    }
    
    .search-field-corporate .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .btn-search-corporate {
        min-height: 48px;
        font-size: 16px;
    }
    
    .popular-searches {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .popular-link {
        font-size: 13px;
    }
    
    .date-field-wrapper::after {
        display: none;
    }
    
    .search-tab-corporate:last-child {
        border-bottom: none;
    }
    
    .search-content-corporate {
        padding: 25px 20px;
    }
    
    .search-actions-corporate {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-filter-corporate,
    .btn-search-corporate {
        width: 100%;
        justify-content: center;
    }
    
    .carousel-caption {
        bottom: 25%;
    }
    
    .hotels-carousel-wrapper {
        padding: 0 40px;
    }
    
    /* Gelişmiş Tur Bölümleri Responsive */
    .advanced-tours-section {
        padding: 35px 0;
    }
    
    .advanced-tours-section .row {
        gap: 20px;
    }
    
    .tour-layout-box {
        padding: 20px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.18), 0 0 0 2px rgba(42, 82, 152, 0.15);
    }
    
    .layout-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .layout-controls {
        width: 100%;
        justify-content: flex-end;
    }
    
    .layout-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .layout-title-area {
        gap: 15px;
    }
    
    .layout-title-area h3 {
        font-size: 1.5rem;
    }
    
    .layout-title-area p {
        font-size: 0.9rem;
    }
    
    /* Mobilde tek kart göster - bu stil sadece carousel dışındaki kartlar için */
    .tour-layout-box .tour-card-item {
        width: calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
    
    .tour-card-item {
        min-height: 450px;
    }
    
    .tour-card-item .tour-image {
        height: 250px;
    }
    
    .tour-card-item .tour-content {
        min-height: 180px;
        padding: 20px 15px 15px 15px;
    }
    
    .tour-card-item .tour-content h4:not(.tour-content-title) {
        font-size: 1.3rem;
    }
    
    .tour-carousel-wrapper {
        padding: 15px;
    }
    
    .tour-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .btn-reservation-tour,
    .btn-tour-detail {
        width: 100%;
        min-width: auto;
        font-size: 0.9rem;
        padding: 0 20px;
        height: 48px;
        line-height: 1;
    }
    
    .tour-location-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%) !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 3px 12px rgba(42, 82, 152, 0.5),
                    0 2px 8px rgba(42, 82, 152, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: none !important;
    }
    
    .tour-location-badge:hover {
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
        box-shadow: 0 4px 15px rgba(42, 82, 152, 0.6),
                    0 3px 10px rgba(42, 82, 152, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    }
    
    .tour-location-badge i {
        color: #ffd700 !important;
    }
    
    .tour-card-item .tour-content h4:not(.tour-content-title) {
        font-size: 1.3rem;
    }
    
    .tour-card-item .tour-content p {
        font-size: 0.95rem;
        margin-top: 12px;
        padding: 12px 16px;
    }
    
    @media (max-width: 768px) {
        /* Container padding'ini hesaba katarak wrapper'ı genişlet */
        .advanced-tours-section .container {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .tour-layout-box {
            padding-left: 0;
            padding-right: 0;
        }
        
        .layout-header {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .tour-carousel-wrapper {
            padding: 15px 0;
        }
        
        .tour-carousel .tour-card-item {
            width: calc(100vw - 30px);
            min-width: calc(100vw - 30px);
            max-width: calc(100vw - 30px);
            flex-shrink: 0;
            scroll-snap-align: center;
        }
        
        /* Tour carousel mobilde yana kaydırılabilir */
        .tour-carousel-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            scroll-padding-left: 15px;
            scroll-padding-right: 15px;
        }
        
        .tour-carousel {
            width: max-content;
            min-width: 100%;
            gap: 0;
            padding: 0;
        }
        
        /* İlk ve son kart için padding ekle - ortalamak için */
        .tour-carousel::before {
            content: '';
            flex-shrink: 0;
            width: 15px;
        }
        
        .tour-carousel::after {
            content: '';
            flex-shrink: 0;
            width: 15px;
        }
    }
    
    @media (max-width: 576px) {
        /* Container padding'ini hesaba katarak wrapper'ı genişlet */
        .advanced-tours-section .container {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .tour-layout-box {
            padding-left: 0;
            padding-right: 0;
        }
        
        .layout-header {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .tour-carousel-wrapper {
            padding: 15px 0;
        }
        
        .tour-carousel .tour-card-item {
            width: calc(100vw - 30px);
            min-width: calc(100vw - 30px);
            max-width: calc(100vw - 30px);
            flex-shrink: 0;
            scroll-snap-align: center;
        }
        
        /* Tour carousel küçük mobilde yana kaydırılabilir */
        .tour-carousel-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            scroll-padding-left: 15px;
            scroll-padding-right: 15px;
        }
        
        .tour-carousel {
            width: max-content;
            min-width: 100%;
            gap: 0;
            padding: 0;
        }
        
        /* İlk ve son kart için padding ekle - ortalamak için */
        .tour-carousel::before {
            content: '';
            flex-shrink: 0;
            width: 15px;
        }
        
        .tour-carousel::after {
            content: '';
            flex-shrink: 0;
            width: 15px;
        }
        
        .tour-location-badge {
            background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%) !important;
            border: 2px solid rgba(255, 255, 255, 0.5) !important;
            box-shadow: 0 3px 12px rgba(42, 82, 152, 0.5),
                        0 2px 8px rgba(42, 82, 152, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
            backdrop-filter: none !important;
        }
        
        .tour-location-badge:hover {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
            box-shadow: 0 4px 15px rgba(42, 82, 152, 0.6),
                        0 3px 10px rgba(42, 82, 152, 0.5),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
        }
        
        .tour-location-badge i {
            color: #ffd700 !important;
        }
    }
    
    .hotel-card {
        width: calc((100% - 40px) / 2);
        min-width: calc((100% - 40px) / 2);
        max-width: calc((100% - 40px) / 2);
    }
    
    @media (max-width: 576px) {
        .hotel-card {
            width: 100%;
            min-width: 100%;
            max-width: 100%;
        }
    }
    
    .hotel-carousel-prev,
    .hotel-carousel-next {
        width: 35px;
        height: 35px;
    }
}

/* ============================================
   AI DESTEKLİ CANLI DESTEK WIDGET STİLLERİ
   ============================================ */

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 100px; /* Alt kısmın biraz üstünde */
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Chat Toggle Butonu - Maskot Görünümü ve Animasyon */
.chat-toggle-button {
    position: fixed;
    bottom: 180px; /* WhatsApp butonunun üstünde, alt kısmın biraz üstünde */
    right: 20px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.4);
    z-index: 9998;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #fff;
    animation: mascot-bounce 10s infinite; /* 10 saniyede bir tetiklenen ana animasyon */
}

/* Maskot için Konuşma Balonu (Peek-a-boo efekti) */
.chat-toggle-button::before {
    content: 'Yardıma mı ihtiyacınız var?';
    position: absolute;
    right: 80px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

/* 10 Saniyelik Dikkat Çekme Animasyonu */
@keyframes mascot-bounce {
    0%, 80%, 100% { transform: scale(1); }
    85% { transform: scale(1.15) rotate(-10deg); }
    90% { transform: scale(1.15) rotate(10deg); }
    95% { transform: scale(1.1) rotate(0deg); }
}

/* Animasyon anında balonun çıkması */
.chat-toggle-button:not(.chat-active) {
    animation: mascot-attention 10s infinite;
}

@keyframes mascot-attention {
    0%, 85%, 100% { transform: scale(1); }
    90% { transform: scale(1.2); box-shadow: 0 0 30px rgba(42, 82, 152, 0.6); }
    95% { transform: scale(1.1); }
}

/* Butonun üzerine gelince veya otomatik tetiklenince balonun çıkması */
.chat-toggle-button:hover::before,
.chat-toggle-button.show-bubble::before {
    opacity: 1;
    transform: translateX(0);
}

.chat-toggle-button:hover {
    transform: scale(1.1) !important;
    background: linear-gradient(135deg, #3a62a8 0%, #2e4c82 100%);
}

.chat-toggle-button i {
    transition: all 0.3s ease;
}

.chat-toggle-button:hover i {
    transform: rotate(360deg) scale(1.2);
}

.chat-toggle-button.chat-active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid #fff;
}

/* Chat Widget Container */
.chat-widget-container {
    position: fixed;
    bottom: 180px; /* Chat butonu ile aynı hizada */
    right: 20px;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 200px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px) scale(0.9);
    transition: all 0.3s ease;
}

.chat-widget-container.chat-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

/* Chat Header */
.chat-widget-header {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-info i {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    font-size: 12px;
    opacity: 0.9;
    display: block;
    margin-top: 2px;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Chat Messages */
.chat-widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.message-content {
    max-width: 75%;
    background: #fff;
    padding: 12px 16px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.message-time {
    font-size: 12px;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

/* Typing Indicator */
.typing-indicator {
    margin-bottom: 15px;
}

.typing-dots {
    display: flex;
    gap: 5px;
    padding: 12px 16px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Chat Input */
.chat-widget-input {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 20px 20px;
}

.chat-widget-input input {
    flex: 1;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.chat-widget-input input:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

.chat-widget-input button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-widget-input button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.4);
}

/* Scrollbar Styling */
.chat-widget-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-widget-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-widget-messages::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.chat-widget-messages::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .chat-widget-container {
        width: calc(100% - 40px);
        height: calc(100vh - 200px);
        max-height: calc(100vh - 200px);
        bottom: 150px;
        right: 20px;
        left: auto;
        transform: translateX(20px) scale(0.9);
    }
    
    .chat-widget-container.chat-open {
        transform: translateX(0) scale(1);
    }

    .whatsapp-button,
    .chat-toggle-button {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .whatsapp-button {
        bottom: 80px; /* Mobilde alt kısmın biraz üstünde */
        right: 15px;
    }
    
    .chat-toggle-button {
        bottom: 150px; /* Mobilde WhatsApp butonunun üstünde */
        right: 15px;
    }
    
    .whatsapp-button:hover,
    .chat-toggle-button:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 576px) {
    .chat-widget-container {
        width: 100%;
        height: calc(100vh - 150px);
        max-height: calc(100vh - 150px);
        bottom: 150px;
        right: 0;
        left: 0;
        transform: translateX(20px) scale(0.9);
        border-radius: 0;
    }
    
    .chat-widget-container.chat-open {
        transform: translateX(0) scale(1);
    }

    .chat-widget-header {
        border-radius: 0;
    }

    .chat-widget-input {
        border-radius: 0;
    }
}

/* ============================================
   FIRSATLAR VE KAMPANYALAR STİLLERİ
   ============================================ */

.offers-section {
    position: relative;
    overflow: hidden;
}

.offer-card {
    transition: all 0.3s ease;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.offer-card.last-minute:hover .offer-image img {
    transform: scale(1.1);
}

.offer-card.early-booking:hover {
    transform: translateY(-10px) scale(1.02);
}

.offer-image {
    position: relative;
    overflow: hidden;
}

.offer-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.offer-discount {
    animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.offer-badge {
    animation: shake-badge 3s infinite;
}

@keyframes shake-badge {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
}

.offer-price .new-price {
    animation: price-glow 2s infinite;
}

@keyframes price-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255,107,107,0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255,107,107,0.8);
    }
}

.campaign-info a {
    transition: all 0.3s ease;
}

.campaign-info a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255,215,0,0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .offers-section {
        padding: 60px 0 !important;
    }

    .offer-content {
        padding: 20px !important;
    }

    .offer-highlight {
        padding: 15px !important;
    }

    .offer-highlight div:first-child {
        font-size: 36px !important;
    }
}

@media (max-width: 576px) {
    .offer-card {
        margin-bottom: 20px;
    }

    .offer-image {
        height: 200px !important;
    }

    .offer-discount {
        width: 60px !important;
        height: 60px !important;
    }

    .offer-discount span:first-child {
        font-size: 20px !important;
    }

    .offer-discount span:last-child {
        font-size: 12px !important;
    }
}

/* Erken Rezervasyon Kartları Hover Efektleri */
.early-booking-card {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: visible !important;
    padding-top: 15px;
}

.early-booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(42,82,152,0.25) !important;
    border-color: #2a5298 !important;
}

.early-booking-card:hover .campaign-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
}

.early-booking-card .btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(42,82,152,0.4);
}

.campaign-header {
    flex-shrink: 0;
}

.campaign-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.campaign-details {
    flex: 1;
}

.campaign-benefits {
    flex-shrink: 0;
}

.campaign-badge {
    animation: badge-pulse 2s infinite;
    z-index: 20 !important;
    white-space: nowrap;
    pointer-events: none;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.discount-box {
    position: relative;
    overflow: hidden;
}

.discount-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) translateY(200%) rotate(45deg);
    }
}

/* Dashed Border ve Gradient Arka Plan - Genel Kullanım İçin */
.dashed-highlight-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 2px dashed #ff6b6b;
    transition: all 0.3s ease;
}

.dashed-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shine 3s infinite;
    pointer-events: none;
}

.dashed-highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Renk Varyasyonları */
.dashed-highlight-box.primary {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6edff 100%);
    border-color: #667eea;
    color: #667eea;
}

.dashed-highlight-box.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #25D366;
    color: #25D366;
}

.dashed-highlight-box.warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #ffd700;
    color: #ff9800;
}

.dashed-highlight-box.info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #2a5298;
    color: #2a5298;
}

.dashed-highlight-box.danger {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.dashed-highlight-box.purple {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #764ba2;
    color: #764ba2;
}

/* Responsive */
@media (max-width: 768px) {
    .dashed-highlight-box {
        padding: 15px;
        border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .dashed-highlight-box {
        padding: 12px;
        border-radius: 10px;
        border-width: 1.5px;
    }
}

.countdown-timer {
    animation: timer-pulse 2s infinite;
}

@keyframes timer-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Erken Rezervasyon Responsive Düzenlemeler */
.row.g-4 {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 1200px) {
    .early-booking-card {
        margin-bottom: 30px;
    }
    
    .row.g-4 {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 992px) {
    .early-booking-card {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .campaign-header {
        padding: 20px !important;
    }
    
    .campaign-body {
        padding: 25px !important;
    }
    
    .campaign-icon {
        font-size: 45px !important;
    }
}

@media (max-width: 768px) {
    .early-booking-card {
        margin-bottom: 25px;
    }
    
    .campaign-header {
        padding: 20px !important;
    }
    
    .campaign-body {
        padding: 20px !important;
    }
    
    .discount-box {
        padding: 15px !important;
    }
    
    .detail-item {
        margin-bottom: 12px !important;
        padding-bottom: 12px !important;
    }
    
    .detail-icon {
        width: 35px !important;
        height: 35px !important;
    }
    
    .campaign-benefits {
        padding: 12px !important;
    }
}

@media (max-width: 576px) {
    .early-booking-card {
        border-radius: 15px !important;
        margin-bottom: 20px;
        padding-top: 12px !important;
    }
    
    .campaign-header {
        padding: 18px !important;
    }
    
    .campaign-body {
        padding: 18px !important;
    }
    
    .campaign-icon {
        font-size: 40px !important;
        margin-bottom: 12px !important;
    }
    
    .campaign-badge {
        top: -12px !important;
        right: 10px !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
        z-index: 20 !important;
    }
    
    .discount-box {
        padding: 15px !important;
        margin-bottom: 20px !important;
    }
    
    .discount-box span[style*="font-size: 32px"] {
        font-size: 28px !important;
    }
    
    .detail-item {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
        gap: 10px !important;
    }
    
    .detail-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
    
    .detail-content {
        font-size: 12px !important;
    }
    
    .campaign-benefits {
        padding: 12px !important;
        margin-bottom: 15px !important;
    }
    
    .campaign-benefits ul {
        font-size: 12px !important;
    }
    
    .btn {
        padding: 12px !important;
        font-size: 14px !important;
    }
}

/* Footer İletişim Butonları - Kompakt Tasarım */
.footer-contact-buttons {
    width: 100%;
}

.footer-contact-btn {
    transition: all 0.3s ease;
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}

.footer-contact-btn:hover .contact-icon {
    transform: scale(1.05);
    background: rgba(255,107,107,0.15) !important;
}

.footer-contact-btn[style*="background: #ff6b6b"]:hover .contact-icon {
    background: rgba(255,255,255,0.3) !important;
}

.footer-contact-btn[style*="background: #25D366"]:hover .contact-icon {
    background: rgba(255,255,255,0.3) !important;
}

.footer-contact-btn:hover .contact-icon i {
    animation: icon-pulse 0.5s ease;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

@keyframes pattern-move {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}


.btn-call-center:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 8px 25px rgba(255,215,0,0.4), 0 0 0 0 rgba(255,215,0,0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255,215,0,0.4), 0 0 0 10px rgba(255,215,0,0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255,215,0,0.4), 0 0 0 0 rgba(255,215,0,0);
    }
}

.call-center-icon {
    animation: pulse-ring 2s infinite;
}

/* Footer Animasyonları ve Efektler */
.main-footer {
    position: relative;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,215,0,0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(42,82,152,0.1) 0%, transparent 50%);
    animation: footer-pattern 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footer-pattern {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.footer-widget h5 i {
    animation: icon-float 3s ease-in-out infinite;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffd700 !important;
    transform: translateX(5px);
    padding-left: 5px;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255,215,0,0.2) !important;
    border-color: #ffd700 !important;
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}

.social-link.whatsapp:hover {
    background: rgba(37,211,102,0.3) !important;
    border-color: #25D366 !important;
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.footer-bottom a:hover {
    color: #ffd700 !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-contact-buttons {
        margin-top: 20px !important;
    }
    
    .footer-contact-btn {
        padding: 10px 12px !important;
        margin-bottom: 8px !important;
        gap: 10px !important;
    }
    
    .contact-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .contact-icon i {
        font-size: 14px !important;
    }
    
    .contact-content div:first-child {
        font-size: 12px !important;
    }
    
    .contact-content div:last-child {
        font-size: 12px !important;
    }
    
    .main-footer {
        padding: 40px 0 15px !important;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

/* =========================================================
   2025 Kurumsal Ana Menü
   ========================================================= */

.main-navbar {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 12px 30px rgba(0, 24, 72, 0.10);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.main-navbar .navbar-brand .logo-img {
    max-height: 64px;
    width: auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-navbar .navbar-brand:hover .logo-img {
    transform: translateY(-1px);
    opacity: 0.95;
}

.navbar-toggler {
    border: none;
    padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-primary, #2a5298);
}

.navbar-toggler-icon i {
    font-size: 18px;
}

.main-menu .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    font-family: var(--font-main, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-main, #222222);
    transition: color 0.2s ease, transform 0.2s ease;
    border-radius: 999px;
    background: transparent;
}

.main-menu .nav-link .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    font-size: 0.95rem;
    color: var(--color-primary, #2a5298);
}

.main-menu .nav-link .nav-text {
    white-space: nowrap;
}

.main-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary, #2a5298), var(--color-accent, #ffd700));
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus {
    color: var(--color-primary, #2a5298);
    background: rgba(42, 82, 152, 0.06);
    box-shadow: 0 10px 22px rgba(0, 24, 72, 0.12);
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link:focus::after {
    transform: scaleX(1);
    opacity: 1;
}

.main-menu .nav-link.active {
    color: var(--color-primary-dark, #1e3c72);
    background: rgba(42, 82, 152, 0.10);
    box-shadow: 0 12px 26px rgba(0, 24, 72, 0.16);
}

.main-menu .nav-link.active::after {
    transform: scaleX(1);
    opacity: 1;
}

/* CTA ve ikincil butonlar */
.main-menu .nav-link.nav-cta {
    margin-left: 0.5rem;
    padding-inline: 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary, #2a5298), var(--color-primary-dark, #1e3c72));
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.35);
}

.main-menu .nav-link.nav-cta::after {
    display: none;
}

.main-menu .nav-link.nav-secondary::after {
    display: none;
}

.main-menu .nav-link.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(30, 60, 114, 0.45);
}

/* Rezervasyon Sorgula - Yeşil CTA */
.main-menu .nav-link.nav-cta-search {
    margin-left: 0.5rem;
    padding-inline: 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.main-menu .nav-link.nav-cta-search::after {
    display: none;
}

.main-menu .nav-link.nav-cta-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #2de576, #1ba085);
}

.main-menu .nav-link.nav-secondary {
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.02);
}

.main-menu .nav-link.nav-secondary:hover {
    border-color: var(--color-primary, #2a5298);
    background: rgba(42, 82, 152, 0.06);
}

/* Kurumsal dropdown */
.main-navbar .dropdown-menu.mega-dropdown {
    border-radius: 14px;
    padding: 0.6rem 0;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    min-width: 220px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.main-navbar .mega-menu:hover .mega-dropdown,
.main-navbar .nav-item.dropdown.mega-menu:hover .mega-dropdown,
.main-navbar .nav-item.dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navbar .dropdown-menu.mega-dropdown .dropdown-item {
    font-size: 0.9rem;
    padding: 0.45rem 1.15rem;
}

.main-navbar .dropdown-menu.mega-dropdown .dropdown-item:hover {
    background: rgba(42, 82, 152, 0.07);
    color: var(--color-primary, #2a5298);
}

/* Kullanıcı menüsü */
.main-navbar .user-menu .dropdown-menu {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    min-width: 220px;
}

/* Mobil görünüm */
@media (max-width: 991.98px) {
    .main-navbar {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .main-navbar .container {
        padding-inline: 1rem;
    }

    .main-navbar .navbar-collapse {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .main-menu {
        width: 100%;
        padding-top: 0.25rem;
        border-top: 1px solid rgba(0, 0, 0, 0.04);
        text-align: center;
    }

    .main-menu .nav-item {
        width: 100%;
    }

    .main-menu .nav-link {
        width: 100%;
        justify-content: center;
        padding-inline: 0.35rem;
    }

    .main-menu .nav-link::after {
        left: 0;
        right: 0;
        bottom: 0;
    }

    .main-menu .nav-link.nav-cta,
    .main-menu .nav-link.nav-secondary {
        margin-left: 0;
        margin-top: 0.25rem;
        justify-content: center;
    }

    .main-navbar .dropdown-menu.mega-dropdown {
        position: static;
        float: none;
        box-shadow: none;
        border-radius: 10px;
        margin: 0.25rem 0 0.5rem;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }
}


