/* Header ve Navigasyon Stilleri */
:root {
    --primary-color: #14b9d5;    /* Turkuaz */
    --secondary-color: #ff7e00;  /* Turuncu */
    --text-color: #333333;
    --light-bg: #f8f9fa;
}

/* Top Bar Stilleri */
.top-bar {
    background-color: #f8f9f9;
    border-bottom: 1px solid #eaeaea;
    font-size: 0.9rem;
}

.top-bar .info-item {
    color: var(--text-color);
    font-size: 13px;
}

.top-bar .social-links a {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
    color: #666;
    background-color: #fff;
    transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.language-selector .dropdown-toggle {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
}

/* Ana Navigasyon Stilleri */
.site-header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 99;
}

.main-navigation {
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Sticky Header */
.main-navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Logo Stilleri */
.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    max-height: 60px;
    transition: all 0.3s ease;
}

.main-navigation.sticky .navbar-brand img {
    max-height: 50px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

/* Menü Stilleri */
.navbar-nav .nav-item {
    margin: 0 5px;
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    width: 70%;
}

/* Dropdown Menü */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px !important;
    border-top: 3px solid var(--primary-color);
}

.navbar-nav .dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px;
}

/* Kullanıcı Menüsü */
.user-actions .btn {
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.user-account .dropdown-toggle {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.user-account .dropdown-toggle i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.user-account .dropdown-menu {
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px !important;
    border-top: 3px solid var(--primary-color);
}

.user-account .dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.user-account .dropdown-item i {
    color: var(--primary-color);
}

.user-account .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Hero Slider Stilleri */
.hero-slider {
    position: relative;
}

.carousel-item {
    height: 700px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    bottom: 20%;
    max-width: 700px;
    margin: 0 auto;
    left: 10%;
    right: 10%;
}

.carousel-caption h2 {
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
    
    .carousel-item {
        height: 500px;
    }
    
    .carousel-caption {
        padding: 20px;
        bottom: 15%;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 15px;
        bottom: 10%;
    }
    
    .carousel-caption h2 {
        font-size: 1.75rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}
/* Bexper-Style Arama Kutusu Stilleri */
.search-box-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(50%);
}

.search-box-wrapper {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bexper-search-box {
    width: 100%;
}

.bexper-search-form {
    width: 100%;
}

.search-form-inner {
    display: flex;
    align-items: center;
}

.field-search-group {
    flex: 1;
    border-right: 1px solid #eaeaea;
    position: relative;
}

.field-search-group:last-child {
    border-right: none;
}

.field-group-inner {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.icon-search {
    color: #14b9d5;
    font-size: 20px;
    margin-right: 15px;
}

.field-search {
    flex: 1;
}

.field-title {
    font-size: 12px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.custom-select {
    border: none;
    width: 100%;
    font-weight: 500;
    color: #333;
    background-color: transparent;
    padding: 0;
    height: auto;
    cursor: pointer;
}

.custom-select:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.datepicker {
    border: none !important;
    font-weight: 500;
    color: #333;
    padding: 0 !important;
    background-color: transparent !important;
    width: 100%;
    cursor: pointer;
}

.datepicker:focus {
    box-shadow: none !important;
    outline: none !important;
}

.search-submit {
    padding: 15px 20px;
    background-color: #14b9d5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search {
    background-color: #14b9d5;
    border-color: #14b9d5;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: #ff7e00;
    border-color: #ff7e00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Front-page için slider ve arama kutusu ayarlamaları */
.search-box-offset {
    margin-top: 80px;
}

/* Datepicker düzeltmeleri */
.ui-datepicker {
    z-index: 9999 !important;
}

/* Mobil Responsive */
@media (max-width: 991px) {
    .search-box-overlay {
        position: relative;
        transform: translateY(0);
        margin-top: -30px;
        margin-bottom: 50px;
    }
    
    .search-form-inner {
        flex-direction: column;
    }
    
    .field-search-group {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        width: 100%;
    }
    
    .search-submit {
        width: 100%;
    }
}

/* Bexper tarzı tur kartları */
.tour-card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.tour-image {
    height: 240px;
    overflow: hidden;
}

.tour-thumbnail {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-thumbnail {
    transform: scale(1.05);
}

.tour-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.tour-title a:hover {
    color: #0d6efd !important;
}

.tour-rating i {
    font-size: 14px;
}

.tour-price .text-primary {
    color: #0d6efd;
}

.tour-button .btn {
    width: 100%;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
}

.featured-badge {
    z-index: 2;
    font-size: 14px;
    font-weight: 500;
}
/* Yeni Tur Kart Tasarımı */
.tour-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.tour-image {
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.tour-thumbnail {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-thumbnail {
    transform: scale(1.05);
}

.tour-title {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.tour-title a:hover {
    color: #14b9d5 !important;
}

.tour-rating i {
    font-size: 14px;
}

.tour-location, .tour-duration {
    font-size: 14px;
}

.price-info .text-primary {
    color: #14b9d5 !important;
}

.btn-primary {
    background-color: #14b9d5;
    border-color: #14b9d5;
}

.btn-primary .text-primary {
    color: #14b9d5 !important;
}

.z-index-1 {
    z-index: 1;
}
/* archive-tour.php için CSS düzenlemeleri */

/* Arşiv sayfası başlık alanı */
.archive-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.archive-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Filtreleme alanı */
.tour-filters {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.filter-widget {
    border-radius: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.filter-widget:hover {
    box-shadow: 0 5px 15px rgba(20, 185, 213, 0.1);
}

.widget-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.category-list li a, 
.location-list li a {
    color: #555;
    padding: 6px 0;
    transition: all 0.2s;
    text-decoration: none;
}

.category-list li a:hover, 
.location-list li a:hover {
    color: #14b9d5;
    padding-left: 5px;
}

.badge.rounded-pill.bg-light {
    background-color: #e9f7fa !important;
    color: #14b9d5 !important;
}

/* Fiyat filtresi */
.price-filter-form .form-control-sm:focus {
    border-color: #14b9d5;
    box-shadow: 0 0 0 0.2rem rgba(20, 185, 213, 0.25);
}

.price-filter-form .btn-primary {
    background-color: #14b9d5;
    border-color: #14b9d5;
}

.price-filter-form .btn-primary:hover {
    background-color: #11a3bc;
    border-color: #11a3bc;
}

/* Sıralama seçenekleri */
.sorting-options .form-select-sm:focus {
    border-color: #14b9d5;
    box-shadow: 0 0 0 0.2rem rgba(20, 185, 213, 0.25);
}

/* Tur kartları */
.tours-grid .tour-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.tours-grid .tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tours-grid .tour-card:hover .card-img-top {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background-color: #14b9d5 !important;
}

.card-title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.card-title a:hover {
    color: #14b9d5;
}

.tour-meta {
    color: #777;
    font-size: 14px;
}

.tour-meta i {
    color: #14b9d5;
}

.tour-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.tour-price .text-primary {
    color: #14b9d5 !important;
    font-weight: 600;
}

.btn-outline-primary {
    color: #14b9d5;
    border-color: #14b9d5;
}

.btn-outline-primary:hover {
    background-color: #14b9d5;
    border-color: #14b9d5;
    color: white;
}

/* Sayfalama */
.pagination-container {
    margin-top: 30px;
}

.pagination-nav .page-numbers {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-nav .page-numbers:hover {
    background-color: #e9f7fa;
    border-color: #14b9d5;
    color: #14b9d5;
}

.pagination-nav .page-numbers.current {
    background-color: #14b9d5;
    border-color: #14b9d5;
    color: white;
}

.pagination-nav .prev, 
.pagination-nav .next {
    padding: 8px 15px;
}

/* Bexper tarzı tur kartı için */
.tours-grid .tour-card {
    border: none;
    border-radius: 12px;
}

.tours-grid .card-body {
    padding: 20px;
}

/* Resim alanı iyileştirmesi */
.card-img-wrapper {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Eğer arzu ederseniz tamamen Bexper tarzı kart yapısı için */
.col-md-6.col-lg-4.mb-4 {
    margin-bottom: 30px !important;
}
/* single-tour.php için CSS düzenlemeleri */

/* Genel tur detay sayfası renk değişiklikleri */
.text-primary,
.section-title i.text-primary,
.widget-title.text-primary {
    color: #14b9d5 !important;
}

.border-primary,
.border-start.border-4.border-primary {
    border-color: #14b9d5 !important;
}

.btn-primary {
    background-color: #14b9d5 !important;
    border-color: #14b9d5 !important;
}

.btn-primary:hover {
    background-color: #11a3bc !important;
    border-color: #11a3bc !important;
}

/* Tur başlık alanı */
.tour-header {
    background-color: #f7fdfe !important;
    border-bottom: 1px solid #e5f7fb;
    padding: 40px 0 !important;
}

.tour-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Yıldız derecelendirmeleri */
.text-warning {
    color: #FFD700 !important; /* Yıldız rengini altın sarısı olarak koruyun */
}

.progress-bar.bg-warning {
    background-color: #FFD700 !important;
}

/* Tur meta bilgileri ve ikonlar */
.tour-meta span {
    margin-right: 15px;
    font-size: 15px;
    color: #666;
}

.tour-meta span i,
.tour-meta a,
.contact-info i,
.contact-info a {
    color: #14b9d5 !important;
}

.tour-meta a:hover,
.contact-info a:hover {
    color: #11a3bc !important;
    text-decoration: underline;
}

/* Fiyat bölümü */
.tour-price .current-price {
    color: #14b9d5 !important;
    font-size: 2.2rem;
    font-weight: 700;
}

/* Ana tur içeriği bölümleri */
.tour-content {
    padding: 50px 0;
}

/* Bölüm başlıkları */
.section-title {
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
    font-size: 1.4rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #14b9d5;
}

/* İçerik kutuları */
.section-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    border: none;
}

.section-content:hover {
    box-shadow: 0 8px 20px rgba(20,185,213,0.1) !important;
}

/* İkonlu liste öğeleri */
.highlights-list li,
.included-list li,
.not-included-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.highlights-list li:last-child,
.included-list li:last-child,
.not-included-list li:last-child {
    border-bottom: none;
}

.included-list li i.text-success {
    color: #14b9d5 !important;
}

/* Tur programı - Akordeon */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: #f7fdfe;
    color: #333;
    padding: 15px 20px;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #e5f7fb;
    color: #14b9d5;
}

.accordion-button:focus {
    border-color: #14b9d5;
    box-shadow: 0 0 0 0.25rem rgba(20,185,213,0.25);
}

.accordion-button::after {
    background-color: #14b9d5;
    border-radius: 50%;
    background-position: center;
    width: 20px;
    height: 20px;
    background-size: 14px;
}

/* Değerlendirme istatistikleri */
.comments-stats {
    background-color: #f7fdfe !important;
    border-color: #e5f7fb !important;
    border-radius: 10px;
}

.average-rating-large .text-primary {
    color: #14b9d5 !important;
}

.rating-bars .progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9e9e9;
}

/* Yorum formları */
.comment-respond .form-control:focus {
    border-color: #14b9d5;
    box-shadow: 0 0 0 0.25rem rgba(20,185,213,0.25);
}

.comment-respond .btn-primary {
    background-color: #14b9d5;
    border-color: #14b9d5;
}

/* Yan sütun widgetler */
.tour-sidebar .booking-widget,
.tour-sidebar .contact-widget,
.tour-sidebar .related-tours-widget {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease;
}

.tour-sidebar .widget-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tour-sidebar .widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #14b9d5;
}

/* Rezervasyon widget */
.booking-widget {
    border-left: 4px solid #14b9d5 !important;
}

/* İletişim widget */
.contact-info a {
    text-decoration: none;
    color: #555;
    transition: all 0.2s;
}

.contact-info a:hover {
    color: #14b9d5;
}

.whatsapp-link {
    color: #25D366 !important;
}

/* Benzer turlar */
.related-tour-item {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5 !important;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.related-tour-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-tour-item a {
    text-decoration: none;
}

.related-tour-item a:hover {
    color: #14b9d5 !important;
}

.related-tour-item .tour-price {
    color: #14b9d5 !important;
}

/* Görsel iyileştirmeler */
.tour-gallery img {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tour-map-container {
    border-radius: 8px;
    overflow: hidden;
}

.tour-gallery img:hover {
    transform: scale(1.02);
}

/* Rezervasyon formu */
.tour-booking-form .form-control:focus {
    border-color: #14b9d5;
    box-shadow: 0 0 0 0.25rem rgba(20,185,213,0.25);
}

.tour-booking-form .btn-primary {
    background-color: #14b9d5;
    border-color: #14b9d5;
}

/* Badge stilleri */
.badge.bg-success {
    background-color: #14b9d5 !important;
}

.badge.bg-warning {
    background-color: #FFD700 !important;
}

/* Yorumlar bölümü */
.comment-item {
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.comment-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

.comment-author-avatar img {
    border-radius: 50%;
}

.comment-date {
    color: #999;
    font-size: 13px;
}

.comment-rating i {
    color: #FFD700;
}

.reply a {
    color: #14b9d5;
    text-decoration: none;
    font-size: 14px;
}

.reply a:hover {
    text-decoration: underline;
}
/* Tur Kategorileri Bölümü CSS Düzenlemeleri */
#tour-categories {
    background-color: #f8fafb;
    padding: 60px 0;
}

#tour-categories .section-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

#tour-categories .section-description {
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.category-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-image {
    height: 220px;
    position: relative;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    background: rgba(20, 185, 213, 0.7);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.category-card:hover .category-title {
    transform: translateY(-5px);
}

.tour-count.badge {
    background-color: #14b9d5 !important;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.category-card:hover .tour-count.badge {
    background-color: white !important;
    color: #14b9d5 !important;
    transform: translateY(5px);
}

.category-icon i {
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.2);
}

.category-content {
    background-color: white;
    transition: all 0.3s ease;
    padding: 15px 20px;
}

.category-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Farklı renk tanımlamaları için, kendi rengimizi önceliklendir */
.category-card:hover .category-overlay {
    background: rgba(20, 185, 213, 0.7) !important;
}

.tour-count.badge.bg-primary {
    background-color: #14b9d5 !important;
}

/* Duyarlı tasarım ayarları */
@media (max-width: 768px) {
    .category-image {
        height: 180px;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    #tour-categories {
        padding: 40px 0;
    }
}
/* Kullanıcı Sayfaları için CSS Düzenlemeleri */

/* Ortak Stil Ayarları */
.bg-primary {
    background-color: #14b9d5 !important;
}

.text-primary {
    color: #14b9d5 !important;
}

.btn-primary {
    background-color: #14b9d5 !important;
    border-color: #14b9d5 !important;
}

.btn-primary:hover {
    background-color: #11a3bc !important;
    border-color: #11a3bc !important;
}

.btn-outline-primary {
    color: #14b9d5 !important;
    border-color: #14b9d5 !important;
}

.btn-outline-primary:hover {
    background-color: #14b9d5 !important;
    color: white !important;
}

/* Giriş, Kayıt ve Şifre Sıfırlama Sayfaları */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.card-header {
    background-color: #14b9d5 !important;
    color: white !important;
    padding: 15px 20px;
    border-bottom: none;
}

.card-body {
    padding: 25px;
}

.form-control:focus {
    border-color: #14b9d5;
    box-shadow: 0 0 0 0.25rem rgba(20, 185, 213, 0.25);
}

.form-check-input:checked {
    background-color: #14b9d5;
    border-color: #14b9d5;
}

/* Alerts */
.alert-success {
    background-color: #e0f7fa;
    border-color: #b2ebf2;
    color: #0097a7;
}

.alert-danger {
    background-color: #ffebee;
    border-color: #ffcdd2;
    color: #c62828;
}

/* Profil Sayfası */
.profile-sidebar {
    border-radius: 10px;
    overflow: hidden;
}

.profile-userpic img {
    border: 3px solid #14b9d5;
}

.profile-usertitle-name {
    color: #333;
    font-weight: 600;
}

.profile-nav .nav-link {
    color: #555;
    padding: 10px 15px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.profile-nav .nav-link:hover {
    background-color: rgba(20, 185, 213, 0.1);
    color: #14b9d5;
}

.profile-nav .nav-link.active {
    background-color: #14b9d5;
    color: white;
}

.profile-nav .nav-link i {
    color: #14b9d5;
    width: 20px;
    text-align: center;
}

.profile-nav .nav-link.active i {
    color: white;
}

/* Tab İçeriği */
.tab-content .card {
    border-radius: 10px;
    overflow: hidden;
}

.tab-content .card-header {
    background-color: #f7fdff !important;
    color: #333 !important;
    border-bottom: 1px solid #e5f7fa;
    font-weight: 600;
}

/* Tabloları Güzelleştirme */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(20, 185, 213, 0.05);
}

.table th {
    border-top: none;
    font-weight: 600;
    color: #555;
}

.badge.bg-success {
    background-color: #14b9d5 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

/* Modals */
.modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    background-color: #14b9d5;
    color: white;
    border-bottom: none;
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
}

/* Butonlar */
.btn {
    border-radius: 5px;
    padding: 8px 15px;
    font-weight: 500;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 0.875rem;
}

.view-booking,
.cancel-booking {
    padding: 5px 10px;
    font-size: 12px;
}

.view-booking {
    background-color: #14b9d5;
    border-color: #14b9d5;
}

.view-booking:hover {
    background-color: #11a3bc;
    border-color: #11a3bc;
}

.cancel-booking {
    background-color: #dc3545;
    border-color: #dc3545;
}

.cancel-booking:hover {
    background-color: #bb2d3b;
    border-color: #bb2d3b;
}

/* Konum Butonu */
#get-location {
    color: #14b9d5;
    border-color: #14b9d5;
    transition: all 0.3s ease;
}

#get-location:hover {
    background-color: rgba(20, 185, 213, 0.1);
    color: #14b9d5;
}

/* Şifre Güçlülük Göstergesi */
#password-strength {
    transition: all 0.3s ease;
    border-radius: 5px;
}

/* Şifre Zayıf */
#password-strength:contains("Zayıf") {
    background-color: #ffebee !important;
    color: #c62828 !important;
}

/* Şifre Orta */
#password-strength:contains("Orta") {
    background-color: #fff8e1 !important;
    color: #f57f17 !important;
}

/* Şifre Güçlü */
#password-strength:contains("Güçlü") {
    background-color: #e8f5e9 !important;
    color: #2e7d32 !important;
}

/* Şifre Gösterme/Gizleme Butonu */
.toggle-password {
    color: #14b9d5;
    background-color: transparent;
    border-color: #14b9d5;
}

.toggle-password:hover {
    background-color: rgba(20, 185, 213, 0.1);
}

/* Genel Bağlantılar */
a {
    color: #14b9d5;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #11a3bc;
    text-decoration: underline;
}

/* Duyarlı Tasarım Ayarları */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
    
    .profile-sidebar {
        margin-bottom: 20px;
    }
    
    .profile-nav {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    
    .profile-nav .nav-item {
        width: 50%;
    }
    
    .profile-nav .nav-link {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .profile-nav .nav-item {
        width: 100%;
    }
}