/* Renk Değişkenleri */
:root {
    --primary-dark: #14141F;
    --primary-main: #E0A458;
    --secondary-green: #2E7D32;
    --accent-gold: #E0A458;
    --bg-main: #F8F9FB;
    --text-main: #14141F;
    --text-soft: #4B5563;
    /* Responsive - tutarlı görünüm tüm ekranlarda */
    --container-padding: 15px;
    --header-min-height: 150px;
    --section-padding: 60px;
    --title-font: clamp(1.5rem, 4vw, 2.25rem);
    --page-title-font: clamp(1.5rem, 3.5vw, 2rem);
}

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

/* Scrollbar her yerde gizli – kaydırma çalışır, çubuk görünmez */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
body {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-main);
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: manipulation;
}
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Mobilde buton/link/dropdown tıklanabilir – tüm etkileşimli öğeler */
a, button, .btn, .dropdown-toggle, .nav-link, input, select, textarea,
[role="button"], .navbar-toggler, .btn-language, .btn-login, .btn-register {
    cursor: pointer;
    touch-action: manipulation;
}
button, .btn, .dropdown-toggle, .navbar-toggler {
    -webkit-tap-highlight-color: rgba(224, 164, 88, 0.2);
}

/* Top Menu - sayfayla birlikte kayar; mobilde tıklanabilir olsun */
.top-menu {
    background: var(--primary-dark);
    color: #fff;
    padding: 2.5px 0;
    font-size: 12px;
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}
.top-menu .container {
    position: relative;
    z-index: 1;
}
.language-switcher {
    position: relative;
    z-index: 1110;
}
.btn-language {
    position: relative;
    z-index: 1110;
    pointer-events: auto;
}

.top-menu a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
}

.top-menu a:hover {
    color: var(--primary-main);
}

.top-menu .col-md-6.text-end {
    display: flex;
    justify-content: flex-end;
}

.top-menu-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 5px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-main);
    transform: translateY(-2px);
}

.language-switcher {
    display: inline-block;
    margin-right: 10px;
}

.btn-language {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-language::after {
    margin-left: 5px;
}

.btn-language:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.language-switcher .dropdown-menu {
    display: none;
    background: var(--primary-dark);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 120px;
    padding: 5px 0;
    z-index: 1050;
}
.language-switcher .dropdown.show .dropdown-menu,
.language-switcher .dropdown-menu.show {
    display: block !important;
}

.language-switcher .dropdown-item {
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    transition: all 0.3s;
}

.language-switcher .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary-main);
}

.language-switcher .dropdown-item.active {
    background: var(--primary-main);
    color: #fff;
}

.btn-login, .btn-register {
    padding: 2px 10px;
    border-radius: 3px;
    display: inline-block;
    font-size: 12px;
}

.btn-login {
    background: transparent;
    border: 1px solid #fff;
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
}

.btn-register {
    background: var(--primary-main);
}

.btn-register:hover {
    background: var(--primary-main);
}

/* Main Header - sadece hero görseli + menü; altında arama formu alanı bitişik */
.main-header {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../../image/kapadokya-hero.webp') center top/cover;
    background-position: center 30%;
    min-height: 150px;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
    color: #fff;
}
.main-header .container {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: visible;
}
.main-header .navbar {
    position: relative;
    z-index: 11;
}
.main-header .navbar-toggler {
    position: relative;
    z-index: 1110;
    pointer-events: auto;
}

/* Menü ve navbar sabit kalmasın, scroll ile gitsin */
.main-header .navbar,
body .navbar {
    position: relative !important;
    top: auto !important;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    pointer-events: none;
    z-index: -1;
}

.main-header {
    overflow: visible;
}

.main-header .navbar {
    padding: 0;
    overflow: visible;
}

.main-header .navbar-collapse,
.main-header .navbar-collapse.show {
    overflow: visible !important;
}
/* Hamburger menü açıldığında (.show) mutlaka görünsün */
.main-header .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
}

.main-header .navbar-nav,
.main-header .nav-item,
.main-header .dropdown {
    overflow: visible;
}

.navbar-brand h1 {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

/* Minimal menü: daha kompakt */
.main-header .navbar {
    padding: 0 0;
    min-height: 56px;
}

.navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 18px;
    padding: 18px 0;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link.active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-gold) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.navbar-nav .dropdown-toggle {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-nav .dropdown-toggle:focus,
.navbar-nav .dropdown-toggle:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.navbar-toggler {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 8px;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Arama formu alanı - hero görselinin hemen altında, bitişik (arada boşluk yok) */
.hero-form-area,
.booking-hero {
    width: 100%;
    margin: 0;
    padding: 20px 0 28px;
    background: var(--bg-main);
}
.booking-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(20, 20, 31, 0.12), 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.booking-form-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
}
.booking-field {
    flex: 1;
    min-width: 0;
}
.booking-field-tour {
    min-width: 220px;
    flex: 1 1 280px;
}
.booking-field-people {
    flex: 0 0 auto;
    min-width: 120px;
}
.booking-field-submit {
    flex: 0 0 auto;
}
.booking-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}
.booking-label-hidden {
    visibility: hidden;
    height: 0;
    margin: 0;
    overflow: hidden;
}
.booking-input,
.booking-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    color: var(--text-main);
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-input::placeholder {
    color: var(--text-soft);
}
.booking-input:focus,
.booking-select:focus {
    outline: none;
    border-color: var(--primary-main);
    box-shadow: 0 0 0 3px rgba(224, 164, 88, 0.2);
}
/* Kişi sayısı: native görünüm, scrollbar gizli */
.booking-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234B5563' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.booking-select::-webkit-scrollbar {
    display: none;
}
.booking-select {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.booking-input-wrap {
    position: relative;
}
.booking-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c98d3d 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 14px rgba(224, 164, 88, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}
.booking-submit i {
    font-size: 16px;
}
.booking-submit:hover {
    background: linear-gradient(135deg, #e8b066 0%, var(--accent-gold) 100%);
    box-shadow: 0 6px 20px rgba(224, 164, 88, 0.5);
    transform: translateY(-2px);
}
.booking-submit:active {
    transform: translateY(0);
}
/* Canlı tur arama sonuçları dropdown */
.header-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 320px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.header-search-results.is-open {
    display: block;
}
.header-search-results .search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s;
}
.header-search-results .search-result-item:last-child {
    border-bottom: none;
}
.header-search-results .search-result-item:hover {
    background: rgba(224, 164, 88, 0.08);
}
.header-search-results .search-result-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.header-search-results .search-result-item .search-result-title {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
    min-width: 0;
}
.header-search-results .search-result-item .search-result-price {
    color: var(--primary-main);
    font-weight: 700;
    white-space: nowrap;
}
.header-search-results .search-result-empty,
.header-search-results .search-result-loading {
    padding: 20px 16px;
    text-align: center;
    color: var(--text-soft);
    font-size: 15px;
}

/* Header ile içerik arası birleştirici dalga */
.header-connector {
    display: block;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
    overflow: hidden;
}
.header-connector-wave {
    width: 100%;
    height: 48px;
    display: block;
}
.header-connector path {
    transition: fill 0.3s ease;
}

@media (max-width: 768px) {
    .hero-form-area {
        padding: 20px 0 32px;
    }
    .booking-form {
        padding: 20px 16px;
    }
    .booking-form-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .booking-field,
    .booking-field-tour,
    .booking-field-people {
        min-width: 0;
    }
    .booking-submit {
        width: 100%;
        padding: 16px;
    }
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--text-main);
}

/* Hakkımızda Bölümü Başlık Fontları */
.about-section-home h1,
.about-section-home .h1,
.about-section-home h2,
.about-section-home .h2,
.about-section-home h3,
.about-section-home .h3,
.about-section-home h4,
.about-section-home .h4,
.about-section-home h5,
.about-section-home .h5,
.about-section-home h6,
.about-section-home .h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: #2C3E50;
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--text-main);
}

/* Sayfalama (pagination) – site renkleri, mavi yerine altın/koyu */
.pagination {
    gap: 6px;
}
.pagination .page-link {
    color: var(--primary-dark);
    background: #fff;
    border-color: rgba(20, 20, 31, 0.2);
}
.pagination .page-link:hover {
    color: #fff;
    background: var(--primary-main);
    border-color: var(--primary-main);
}
.pagination .page-item.active .page-link {
    color: #fff;
    background: var(--primary-main);
    border-color: var(--primary-main);
}
.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(224, 164, 88, 0.35);
}

/* Kategori sayfası – hoş geldin metni */
.category-welcome {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(224, 164, 88, 0.12);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.category-welcome-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    text-align: center;
}

/* Tour Cards – modern sade tasarım, site renk tonları */
.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(224, 164, 88, 0.2);
    box-shadow: 0 1px 3px rgba(224, 164, 88, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    border-color: rgba(224, 164, 88, 0.35);
    box-shadow: 0 8px 24px rgba(224, 164, 88, 0.12);
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--bg-main);
}

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

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

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Tour Info Bar – ince tek satır */
.tour-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(224, 164, 88, 0.12);
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-soft);
    letter-spacing: 0.02em;
}

.tour-info-item i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.tour-info-bar .tour-info-item:not(:last-child) {
    padding-right: 0.75rem;
    border-right: 1px solid rgba(224, 164, 88, 0.2);
}

.tour-info-bar .tour-info-item:last-child {
    border-right: none;
}

.tour-content {
    padding: 1.25rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tour-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    line-height: 1.35;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.tour-price-inline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
}

.tour-price-inline .price {
    color: var(--primary-main);
}

.tour-price-inline .old-price {
    color: var(--text-soft);
    text-decoration: line-through;
    font-size: 0.8rem;
    font-weight: 400;
    margin-right: 0.35rem;
}

.tour-price-inline .new-price {
    color: var(--accent-gold);
}

/* Star Rating – sade */
.tour-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.tour-rating .star {
    font-size: 0.7rem;
    color: rgba(224, 164, 88, 0.35);
}

.tour-rating .star.filled {
    color: var(--accent-gold);
}

.tour-description {
    color: var(--text-soft);
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-size: 0.85rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tour Buttons – sade */
.tour-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.tour-btn-read-more {
    flex: 1;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid rgba(224, 164, 88, 0.5);
    color: var(--primary-main);
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tour-btn-read-more:hover {
    border-color: var(--primary-main);
    background: rgba(224, 164, 88, 0.08);
    color: var(--primary-main);
}

.tour-btn-book-now {
    flex: 1;
    padding: 0.6rem 1rem;
    background: var(--primary-main);
    border: 1px solid var(--primary-main);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.tour-btn-book-now:hover {
    background: #c98d3d;
    border-color: #c98d3d;
    color: #fff;
}

.tour-meta-detail {
    color: var(--text-soft);
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tour-meta-detail span {
    display: inline-block;
    margin-right: 20px;
}

.tour-meta-detail span:not(:last-child):not(.tour-price-large)::after {
    content: "•";
    margin-left: 20px;
    color: var(--text-soft);
}

.tour-price-large {
    float: right;
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-green);
}

.tour-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tour-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-green);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-soft);
    font-size: 16px;
    margin-right: 10px;
}

.new-price {
    color: var(--accent-gold);
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.blog-meta {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: inline-block;
    margin-right: 15px;
}

.blog-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 15px;
    color: var(--text-soft);
}

.blog-meta-detail {
    color: var(--text-soft);
    font-size: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.blog-meta-detail span {
    display: inline-block;
    margin-right: 20px;
}

.blog-meta-detail span:not(:last-child)::after {
    content: "•";
    margin-left: 20px;
    color: var(--text-soft);
}

.blog-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog paylaşım butonları */
.blog-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.blog-share .share-label {
    font-size: 14px;
    color: var(--text-soft);
    margin-right: 8px;
}
.blog-share .share-buttons {
    display: flex;
    gap: 8px;
}
.blog-share .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.blog-share .share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.blog-share .share-facebook { background: #1877F2; }
.blog-share .share-twitter { background: #000; }
.blog-share .share-whatsapp { background: #25D366; }
.blog-share .share-linkedin { background: #0A66C2; }
.blog-share .share-telegram { background: #0088CC; }

/* Blog sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
}
.blog-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.blog-sidebar .sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-main);
}
.blog-sidebar .blog-category-list,
.blog-sidebar .recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-sidebar .blog-category-list li,
.blog-sidebar .recent-posts li {
    margin-bottom: 10px;
}
.blog-sidebar .blog-category-list li:last-child,
.blog-sidebar .recent-posts li:last-child {
    margin-bottom: 0;
}
.blog-sidebar .blog-category-list a,
.blog-sidebar .recent-posts a {
    color: var(--text-main);
    text-decoration: none;
    display: block;
    padding: 6px 0;
    transition: color 0.2s, padding-left 0.2s;
}
.blog-sidebar .blog-category-list a:hover,
.blog-sidebar .recent-posts a:hover {
    color: var(--primary-main);
}
.blog-sidebar .blog-category-list .count {
    color: var(--text-soft);
    font-size: 13px;
}
.blog-sidebar .recent-posts a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.blog-sidebar .recent-thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-main);
}
.blog-sidebar .recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-sidebar .recent-title {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

/* Reservation Box */
.reservation-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.reservation-box h3 {
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Tur detay: Dahil / Dahil değil – sade şık tasarım, ikon/renk yok */
.tour-detail-section .tour-includes-excludes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .tour-detail-section .tour-includes-excludes {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.tour-detail-section .tour-features-box {
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
}

.tour-detail-section .tour-features-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.tour-detail-section .tour-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-detail-section .tour-features-list li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-main);
    position: relative;
    padding-left: 1rem;
}

.tour-detail-section .tour-features-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--text-soft);
}

/* Payment Box */
.payment-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.payment-option {
    flex: 1;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: block;
    padding: 20px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option input[type="radio"]:checked + label {
    border-color: var(--primary-main);
    background: var(--bg-main);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 0;
}

/* Footer */
.main-footer {
    margin-top: 60px;
}

.footer-top {
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 60px 0 40px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.footer-top .container {
    position: relative;
    z-index: 1;
}

/* Footer CTA */
.footer-cta {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta-explore {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-main);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-cta-explore:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Content */
.footer-content {
    margin-top: 40px;
}

.footer-heading {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.social-links-footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s;
}

.social-links-footer a:hover {
    background: var(--primary-main);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

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

.contact-info li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-main);
    width: 20px;
}

/* Newsletter */
.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn-newsletter-send {
    padding: 12px 20px;
    background: var(--primary-main);
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-newsletter-send:hover {
    background: var(--accent-gold);
}

.footer-bottom {
    background-color: #fff;
    color: #333;
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
    color: #333;
    margin: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #333;
}

.footer-social h6 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

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

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

.social-icon:hover {
    background: var(--primary-main);
    transform: translateY(-3px);
}

.tursab-badge {
    max-width: 150px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.tursab-badge:hover {
    transform: scale(1.05);
}

.tursab-logo {
    display: inline-block;
    transition: transform 0.3s;
}

.tursab-logo:hover {
    transform: scale(1.05);
}

.tursab-logo img {
    max-height: 60px;
    width: auto;
    display: block;
    filter: brightness(0.9);
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-main);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-main);
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid var(--primary-main);
    color: var(--primary-main);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-main);
    color: #fff;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Subcategory Cards */
.subcategory-card {
    display: block;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: var(--primary-main);
    color: var(--primary-main);
}

.subcategory-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Dropdown: ana menünün altında, alt menüler görünsün */
.main-header .navbar-nav .dropdown {
    position: relative;
}

.main-header .navbar-nav .dropdown-menu,
.main-header .navbar-nav .dropdown-menu-minimal {
    left: auto !important;
    right: 0 !important;
    margin-top: 4px;
    padding: 6px 0;
    min-width: 180px;
    background: var(--primary-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 164, 88, 0.25);
    box-shadow: 0 6px 20px rgba(20, 20, 31, 0.35);
    border-radius: 8px;
    animation: dropdownFade 0.2s ease;
    z-index: 1060;
    display: none;
}

/* Alt menü: tıklanınca veya hover'da görünsün (JS .show eklediğinde mutlaka görünsün) */
.main-header .navbar-nav .dropdown.show .dropdown-menu,
.main-header .navbar-nav .dropdown .dropdown-menu.show {
    display: block !important;
}

.main-header .navbar-nav .dropdown-menu-end {
    left: auto !important;
    right: 0 !important;
}

@keyframes dropdownFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.navbar-nav .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    font-weight: 500;
    position: relative;
    border: none !important;
    outline: none !important;
}

.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-nav .dropdown-item:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding-left: 16px;
}

/* Dropdown'da ok gösterme */
.navbar-nav .dropdown-item::before {
    display: none !important;
}
.navbar-nav .dropdown-item:hover::before {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .subcategory-card {
        margin-bottom: 15px;
    }
    
    /* Footer Responsive */
    .footer-cta {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .cta-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-cta-explore {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        margin-top: 30px;
    }
    
    .footer-content .col-md-3 {
        margin-bottom: 30px;
    }
    
    .footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 15px;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
        font-size: 24px;
    }
}

/* Scroll Animations – içerik her zaman görünür (JS beklemeden), animasyon opsiyonel */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up,
.fade-in-left,
.fade-in-right,
.fade-in-up-delay,
.fade-in-up-delay-2 {
    opacity: 1;
    transform: translateY(0) translateX(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-up-delay.visible,
.fade-in-up-delay-2.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Hero Section Home */
.hero-section-home {
    position: relative;
    min-height: 600px;
}

.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-btn {
    animation: fadeInUp 1s ease-out 0.4s both;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
}

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

/* Stat Number Animation */
.stat-item {
    transition: transform 0.3s ease;
}

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

.stat-number {
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

/* About Section Home */
.about-section-home {
    position: relative;
}

.about-content {
    padding-right: 30px;
}

.about-image {
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section-home {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 36px !important;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 32px !important;
    }
    
    .stat-number {
        font-size: 42px !important;
    }
}

/* Bölüm arka planları */
.about-section-home { background: #fff; padding: 50px 0; }
.tours-section { background: var(--bg-main); padding: 50px 0; }
.blog-section { background: #fff; padding: 50px 0; }
.section-head .section-title { font-size: 42px; margin-bottom: 15px; color: var(--text-main); }
.section-subtitle { font-size: 18px; color: var(--text-soft); margin-bottom: 50px; }
.blog-section .section-head p { font-size: 18px; color: var(--text-soft); margin-bottom: 50px; }
.section-head.text-center .section-title { text-align: center; }
.section-head.text-center .section-subtitle { text-align: center; }

/* Türkiye Turları – sade modern tasarım */
.turkey-tours-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-main) 100%);
    padding: 60px 0 70px;
}
.turkey-tours-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.turkey-tours-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-main);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.turkey-tours-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
}
.turkey-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.turkey-tour-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(20, 20, 31, 0.06);
    border: 1px solid rgba(224, 164, 88, 0.08);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.turkey-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(20, 20, 31, 0.12);
    border-color: rgba(224, 164, 88, 0.2);
}
.turkey-tour-card-inner {
    position: relative;
    padding-bottom: 56%;
    overflow: hidden;
}
.turkey-tour-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.turkey-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.turkey-tour-card:hover .turkey-tour-image img {
    transform: scale(1.06);
}
.turkey-tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-main);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
}
.turkey-tour-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(20, 20, 31, 0.85) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.turkey-tour-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.turkey-tour-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-main);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.turkey-tour-card:hover .turkey-tour-arrow {
    transform: translateX(4px);
    background: #fff;
    color: var(--primary-dark);
}
@media (max-width: 768px) {
    .turkey-tours-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .turkey-tours-title { font-size: 1.75rem; }
}

/* Regional Tour Cards (eski kullanım – uyumluluk) */
.regional-tour-card {
    transition: transform 0.3s ease;
}

.regional-tour-card:hover .regional-tour-image {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.regional-tour-image img {
    transition: transform 0.3s ease;
}

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

/* ========== Kampanya Açılış Modalı ========== */
.campaign-modal .modal-dialog {
    max-width: 560px;
}
.campaign-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.campaign-modal-header {
    background: var(--primary-dark);
    color: #fff;
    border-bottom: none;
    padding: 0.45rem 0.75rem;
    min-height: auto;
}
.campaign-modal-header .modal-title {
    font-weight: 700;
    font-size: 0.9rem;
}
.campaign-modal-header .btn-close-white {
    filter: invert(1);
    opacity: 0.8;
    padding: 0.35rem;
    font-size: 0.75rem;
}
.campaign-modal-body {
    padding: 0;
    background: #fff;
}
.campaign-card {
    display: flex;
    flex-direction: column;
    background: #fff;
}
.campaign-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-main);
}
.campaign-card-body {
    padding: 1.25rem 1.5rem;
    position: relative;
}
.campaign-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-main) 0%, #c98d3d 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(224, 164, 88, 0.4);
}
.campaign-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.campaign-card-desc {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.campaign-card-btn {
    display: inline-block;
    background: var(--primary-main);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(224, 164, 88, 0.35);
}
.campaign-card-btn:hover {
    background: #c98d3d;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 164, 88, 0.45);
}
.campaign-modal-footer {
    background: var(--bg-main);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 0.75rem 1.25rem;
}
.campaign-dont-show {
    font-size: 0.85rem;
    color: var(--text-soft);
    cursor: pointer;
    margin: 0;
    user-select: none;
}
.campaign-dont-show input {
    margin-right: 6px;
    cursor: pointer;
}
.campaign-modal-footer .btn-outline-light {
    border-color: rgba(0,0,0,0.2);
    color: var(--text-main);
}
.campaign-modal-footer .btn-outline-light:hover {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.25);
    color: var(--text-main);
}
/* Kampanya carousel (çoklu kampanya) */
.campaign-modal .carousel {
    margin: 0;
}
.campaign-modal .carousel-control-prev,
.campaign-modal .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    opacity: 1;
}
.campaign-modal .carousel-control-prev {
    left: 10px;
}
.campaign-modal .carousel-control-next {
    right: 10px;
}
.campaign-modal .carousel-control-prev:hover,
.campaign-modal .carousel-control-next:hover {
    background: rgba(0,0,0,0.6);
}
@media (max-width: 576px) {
    .campaign-modal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    .campaign-card-image {
        height: 180px;
    }
    .campaign-card-body {
        padding: 1rem 1.25rem;
    }
    .campaign-card-title {
        font-size: 1.15rem;
    }
}

/* Profil sayfası sol menü */
.section .card .nav-link {
    color: var(--text-main);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}
.section .card .nav-link:hover {
    background: rgba(0,0,0,0.05);
}
.section .card .nav-link.active {
    background: var(--primary-main);
    color: var(--primary-dark);
    font-weight: 600;
}

/* ========== RESPONSIVE - TÜM EKRANLAR (12"-17", tablet, mobil) ========== */
/* Amaç: Her boyutta aynı görünüm, kullanımı kolay, tutarlı deneyim */

/* Genel - tüm cihazlar */
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 100%; padding-left: var(--container-padding); padding-right: var(--container-padding); }
@media (min-width: 576px) { :root { --container-padding: 20px; } }
@media (min-width: 768px) { :root { --container-padding: 24px; } }
@media (min-width: 992px) { :root { --container-padding: 24px; } }
@media (min-width: 1200px) { :root { --container-padding: 24px; } }

/* ----- Tablet (768px - 991px) ----- */
@media (max-width: 991px) {
    .section { padding: 50px 0; }
    .section-title { font-size: clamp(1.6rem, 4vw, 2rem); margin-bottom: 32px; }
    .page-title { font-size: clamp(1.4rem, 3vw, 1.75rem); }
    .main-header { min-height: 140px; padding-top: 16px; }
    .navbar-brand h1 { font-size: 20px; }
    .navbar-nav .nav-link { margin-right: 12px; font-size: 14px; padding: 14px 0; }
    .footer-top { padding: 50px 0 36px; }
    .cta-title { font-size: clamp(1.4rem, 3.5vw, 1.75rem); }
    .footer-content .col-md-3 { margin-bottom: 28px; }
    .turkey-tours-section { padding: 50px 0 60px; }
    .turkey-tours-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .tour-info-bar { flex-wrap: wrap; justify-content: center; gap: 0.5rem; padding: 0.6rem 0.75rem; }
    .tour-info-bar .tour-info-item:not(:last-child) { border-right: none; padding-right: 0.5rem; }
    .blog-sidebar { position: relative; top: 0; }
    .reservation-box { position: relative; top: 0; }
    .tour-detail-section .tour-includes-excludes { grid-template-columns: 1fr; }
}

/* ----- Mobil & Küçük tablet (max 768px) ----- */
@media (max-width: 768px) {
    body { font-size: 16px; }
    .top-menu { padding: 8px 0; font-size: 11px; min-height: 64px; }
    .top-menu .container { min-height: 48px; }
    .top-menu .col-md-6:first-child { margin-bottom: 6px; }
    .top-menu .row { flex-direction: column; align-items: center; text-align: center; }
    .top-menu .col-md-6.text-end { justify-content: center; min-height: 48px; display: flex; align-items: center; }
    .top-menu-right { justify-content: center; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1120; pointer-events: auto; }
    .language-switcher { display: inline-block; position: relative; z-index: 1130; pointer-events: auto; }
    .language-switcher .dropdown { position: relative; z-index: 1130; }
    .language-switcher .btn-language { position: relative; z-index: 1130; pointer-events: auto; background: rgba(255,255,255,0.1) !important; }
    .social-links a { width: 26px; height: 26px; line-height: 26px; font-size: 12px; margin-right: 4px; }
    .btn-language { padding: 4px 8px; font-size: 11px; }
    .btn-login, .btn-register { padding: 6px 12px; font-size: 11px; }
    .main-header { min-height: 120px; padding-top: 12px; padding-bottom: 0; }
    .navbar-brand h1 { font-size: 18px; }
    .main-header .navbar { min-height: 48px; }
    .navbar-nav .nav-link { margin-right: 0; padding: 12px 0; font-size: 14px; }
    .navbar-nav .nav-link::after { bottom: 10px; }
    .navbar-toggler { min-width: 44px; min-height: 44px; padding: 10px; }
    .btn-language { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .top-menu-right a, .top-menu-right .btn-login, .top-menu-right .btn-register { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; }
    .dropdown-menu { z-index: 9999 !important; }
    .language-switcher .dropdown-menu { z-index: 9999 !important; }
    .language-switcher { pointer-events: auto !important; }
    .btn-language { pointer-events: auto !important; user-select: none; -webkit-user-select: none; }
    /* Mobil – arama formu minimal, farklı düzen */
    .hero-form-area,
    .booking-hero { padding: 8px 0 14px; }
    .booking-form {
        padding: 10px 8px;
        box-shadow: 0 2px 10px rgba(20, 20, 31, 0.06);
        border-radius: 10px;
    }
    .booking-form-inner {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        grid-template-rows: auto auto;
        gap: 6px;
        align-items: stretch;
    }
    .booking-field-tour {
        grid-column: 1 / -1;
        min-width: 0;
    }
    .booking-field-tour .booking-label { font-size: 11px; margin-bottom: 4px; color: var(--text-soft); }
    .booking-field-tour .booking-input-wrap { display: block; }
    .booking-field-tour .booking-input { width: 100%; min-width: 0; border-radius: 8px; padding: 10px 12px; font-size: 14px; }
    .booking-field-month {
        grid-column: 1;
        min-width: 0;
        overflow: visible;
    }
    .booking-field-people {
        grid-column: 2;
        min-width: 0;
    }
    .booking-field-submit {
        grid-column: 3;
        min-width: 0;
    }
    .booking-field-month .booking-label,
    .booking-field-people .booking-label {
        font-size: 10px;
        margin-bottom: 2px;
        color: var(--text-soft);
    }
    .booking-input-month {
        min-height: 44px;
        font-size: 16px;
        padding: 8px 10px;
        width: 100%;
        border-radius: 8px;
        cursor: pointer;
    }
    .booking-field-month .booking-input-month { min-height: 44px; }
    .booking-field-people .booking-select {
        min-height: 44px;
        padding: 8px 28px 8px 10px;
        font-size: 14px;
        border-radius: 8px;
    }
    .booking-field-people .booking-select { min-height: 44px; }
    .booking-input,
    .booking-select {
        padding: 8px 10px;
        font-size: 14px;
        border-radius: 8px;
    }
    .booking-submit {
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 8px;
        min-height: 44px;
    }
    .section { padding: 40px 0; }
    .section-title { font-size: 1.6rem; margin-bottom: 28px; }
    .page-title { font-size: 1.5rem; margin-bottom: 24px; }
    .footer-cta { margin-bottom: 28px; padding-bottom: 20px; }
    .footer-cta .row { flex-direction: column; text-align: center; }
    .footer-cta .col-md-4.text-end { text-align: center; }
    .cta-title { font-size: 1.4rem; margin-bottom: 10px; }
    .cta-description { font-size: 14px; margin-bottom: 16px; }
    .btn-cta-explore { padding: 14px 28px; font-size: 16px; width: 100%; max-width: 280px; text-align: center; display: inline-block; }
    .footer-content { margin-top: 28px; }
    .footer-content .col-md-3 { margin-bottom: 28px; }
    .footer-heading { font-size: 17px; margin-bottom: 14px; }
    .footer-bottom .row { flex-direction: column; text-align: center; }
    .footer-bottom .col-md-6 { text-align: center !important; margin-bottom: 12px; }
    .footer-bottom .col-md-6:last-child { margin-bottom: 0; }
    .footer-social { text-align: center; }
    .social-icons { justify-content: center; }
    .newsletter-form .input-group { flex-direction: column; }
    .newsletter-form .form-control { border-radius: 8px; }
    .btn-newsletter-send { border-radius: 8px; width: 100%; }
    .payment-options { flex-direction: column; }
    .subcategory-card { margin-bottom: 14px; }
    .tour-image { height: 180px; }
    .tour-content { padding: 1rem 1.25rem; }
    .tour-content h3 { font-size: 1rem; }
    .tour-info-bar { flex-wrap: wrap; padding: 0.5rem 0.75rem; }
    .tour-buttons { flex-direction: column; }
    .tour-btn-read-more, .tour-btn-book-now { width: 100%; }
    .blog-card .blog-content h3 { font-size: 1.1rem; }
    .blog-content { padding: 16px; }
    .blog-image { height: 180px; }
    .turkey-tours-section { padding: 40px 0 50px; }
    .turkey-tours-grid { grid-template-columns: 1fr; gap: 1rem; }
    .turkey-tours-title { font-size: 1.6rem; }
    .turkey-tour-overlay { padding: 1rem; }
    .turkey-tour-name { font-size: 1rem; }
    .category-welcome { padding: 1.25rem 1rem; margin-bottom: 2rem; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; left: 16px; font-size: 26px; }
    .hero-section-home { min-height: 380px; }
    .hero-title { font-size: 2rem !important; }
    .hero-subtitle { font-size: 1rem !important; }
    .about-content { padding-right: 0; margin-bottom: 24px; }
    .stat-number { font-size: 2.25rem !important; }
    .section-head .section-title { font-size: 1.75rem; }
    .section-subtitle, .blog-section .section-head p { font-size: 1rem; margin-bottom: 2rem; }
    /* Dropdown menü mobilde tam genişlik */
    .main-header .navbar-nav .dropdown-menu { left: 0 !important; right: 0 !important; min-width: 100%; }
}

/* ----- Küçük mobil (max 576px) ----- */
@media (max-width: 576px) {
    :root { --container-padding: 12px; }
    .top-menu .row { flex-direction: column; }
    .top-menu-right { flex-direction: row; justify-content: center; }
    .main-header { min-height: 100px; padding-top: 10px; }
    .navbar-brand h1 { font-size: 16px; }
    .booking-hero { padding: 6px 0 12px; }
    .booking-form { padding: 8px 6px; border-radius: 8px; box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
    .booking-form-inner { gap: 6px; }
    .booking-field .booking-label { font-size: 10px; margin-bottom: 2px; }
    .booking-input-month { min-height: 44px; font-size: 16px; padding: 6px 8px; }
    .booking-field-people .booking-select { min-height: 44px; padding: 6px 24px 6px 8px; }
    .booking-input, .booking-select { padding: 6px 8px; font-size: 14px; border-radius: 6px; }
    .booking-submit { padding: 8px 10px; font-size: 13px; border-radius: 6px; min-width: 52px; }
    .section { padding: 32px 0; }
    .section-title { font-size: 1.4rem; margin-bottom: 24px; }
    .page-title { font-size: 1.35rem; }
    .footer-top { padding: 36px 0 28px; }
    .cta-title { font-size: 1.25rem; }
    .footer-heading { font-size: 16px; }
    .footer-links li { margin-bottom: 10px; }
    .contact-info li { font-size: 14px; margin-bottom: 12px; }
    .tour-image { height: 160px; }
    .tour-content { padding: 0.9rem 1rem; }
    .tour-content h3 { font-size: 0.95rem; }
    .tour-description { -webkit-line-clamp: 2; }
    .blog-image { height: 160px; }
    .blog-content { padding: 14px; }
    .blog-content h3 { font-size: 1rem; }
    .turkey-tours-title { font-size: 1.4rem; }
    .turkey-tour-name { font-size: 0.95rem; }
    .turkey-tour-arrow { width: 32px; height: 32px; font-size: 12px; }
    .whatsapp-float { width: 48px; height: 48px; bottom: 14px; left: 14px; font-size: 22px; }
    .hero-section-home { min-height: 320px; }
    .hero-title { font-size: 1.75rem !important; }
    .hero-subtitle { font-size: 0.95rem !important; }
    .stat-info h3 { font-size: 2rem; }
    .stat-info p { font-size: 14px; }
    .pagination { flex-wrap: wrap; justify-content: center; gap: 4px; }
    .pagination .page-link { padding: 6px 12px; font-size: 14px; }
    .header-search-results { max-height: 260px; }
    .header-search-results .search-result-item { padding: 10px 12px; }
    .header-search-results .search-result-item img { width: 44px; height: 44px; }
    .header-search-results .search-result-item .search-result-title { font-size: 14px; }
}

/* ----- Çok küçük mobil (max 400px) ----- */
@media (max-width: 400px) {
    .navbar-brand h1 { font-size: 14px; }
    .btn-login, .btn-register { padding: 5px 10px; font-size: 10px; }
    .booking-submit span { display: none; }
    .booking-submit { justify-content: center; }
    .cta-title { font-size: 1.15rem; }
    .footer-heading { font-size: 15px; }
    .turkey-tour-badge { font-size: 10px; padding: 4px 8px; }
}

/* ----- Büyük masaüstü (1200px+) - tutarlı max genişlik ----- */
@media (min-width: 1200px) {
    .container { max-width: 1140px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

/* ----- Çerez Onay Banner ----- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1f1f2e 100%);
    color: #fff;
    padding: 18px 20px 20px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    font-size: 15px;
    line-height: 1.5;
    display: none;
}
.cookie-consent-banner.is-visible {
    display: block;
    animation: cookieBannerSlide 0.35s ease-out;
}
@keyframes cookieBannerSlide {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}
.cookie-consent-banner-text {
    flex: 1;
    min-width: 200px;
}
.cookie-consent-banner-text a {
    color: var(--primary-main);
    text-decoration: underline;
}
.cookie-consent-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.cookie-consent-banner-buttons .btn-cookie-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.cookie-consent-banner-buttons .btn-cookie-reject:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.cookie-consent-banner-buttons .btn-cookie-accept {
    background: var(--primary-main);
    color: var(--primary-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.cookie-consent-banner-buttons .btn-cookie-accept:hover {
    background: #e8b366;
    color: #0d0d12;
}
@media (max-width: 576px) {
    .cookie-consent-banner .container { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-consent-banner-buttons { justify-content: center; }
}
