  :root { 
            --primary: #1e40af;           /* Derin Modern Mavi */
            --primary-light: #3b82f6;     /* Açık Mavi */
            --secondary: #f59e0b;         /* Tatil Sarısı */
            --secondary-light: #fbbf24;   /* Açık Sarı */
            --dark: #0f172a;              /* Koyu Arka Plan */
            --light: #f8fafc;             /* Açık Arka Plan */
            --card-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --hover-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
        }
        
        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: var(--light);
            color: #1e293b;
            overflow-x: hidden;
        }

        /* --- Özel Scrollbar --- */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
/* Navbar Genel Düzenleme */
.navbar {
    background: rgba(15, 23, 42, 0.85) !important; /* Daha koyu, daha premium bir gece mavisi/gri */
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 15px auto;
    border-radius: 100px; /* Tam kapsül */
    padding: 8px 25px !important; /* Yüksekliği biraz azalttık */
}

/* Navbar İçindeki Arama Barı */
.nav-search-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-search-form:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-light);
}

.nav-search-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.nav-search-item i {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-right: 8px;
}

.nav-search-item input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.85rem;
    outline: none;
    width: 130px;
}

.nav-search-item input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.nav-search-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.nav-search-btn {
    background: var(--primary-light);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-search-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* Sepet Rozeti Sabitleme */
.sepet-badge {
    background: var(--secondary) !important; /* Kırmızı yerine senin sarı rengin daha uyumlu olabilir */
    border: 2px solid #1a1d1b !important;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}
        /* --- NAVBAR (Güncellendi: Logo ve Sepet Eklendi) --- */
        .navbar {
            background: rgba(61, 59, 59, 0.92) !important;
            backdrop-filter: blur(15px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.25);
            margin: 20px auto;
            border-radius: 100px;
            width: 90%;
            max-width: 1200px;
            padding: 14px 30px;
            position: fixed;
            left: 0; right: 0;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .navbar-brand { 
            font-weight: 800; 
            font-size: 1.5rem; 
            color: var(--primary) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand img {
            height: 40px;
            width: auto;
        }
        
        .navbar-brand span { 
            color: var(--secondary); 
            position: relative;
        }

        /* --- Sepet İkonu ve Dropdown --- */
        .sepet-wrapper {
    position: relative;
    margin-right: 15px;
}
/* Sepet Genel Kapsayıcı */
.sepet-wrapper {
    position: relative;
    margin-right: 15px;
}

/* Sepet İkonu (Beyaz Renk) */
.sepet-icon {
    position: relative;
    color: #ffffff !important; 
    font-size: 1.3rem;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
}

.sepet-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Kırmızı Bildirim Rozeti */
.sepet-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757; /* Canlı mercan kırmızısı */
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Sepet Dropdown (Mavi Tema) */
.sepet-dropdown {
    width: 380px;
    padding: 0;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
}

/* Üst Başlık - Canlı Mavi Gradient */
.sepet-header {
    background: linear-gradient(135deg, #1a1d1bff 0%, #a9b4b6ff 100%);
    color: white;
    padding: 20px;
}

.sepet-header h5 {
    margin: 0;
    font-weight: 700;
    color: white;
}

.sepet-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
    background: #ffffff;
}

.sepet-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.2s ease;
}

.sepet-item:hover {
    background: #f8fbff; /* Çok hafif mavi hover */
}

.sepet-item-img {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.sepet-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sepet-item-info {
    flex: 1;
    min-width: 0;
}

.sepet-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: #333;
}

.sepet-item-desc {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 5px;
}

/* Fiyat Rengi - Mavi */
.sepet-item-price {
    color: #0061ff;
    font-weight: 700;
    font-size: 0.95rem;
}

.sepet-item-remove {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sepet-item-remove:hover {
    background: #fff0f1;
    color: #d63031;
}

.sepet-footer {
    padding: 20px;
    background: #fcfcfc;
    border-top: 1px solid #eee;
}

.sepet-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sepet-total-amount {
    color: #0061ff; /* Toplam tutar mavi */
    font-weight: 800;
    font-size: 1.3rem;
}

.sepet-bos {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.sepet-bos i {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    display: block;
}
        /* --- LİSTE HERO --- */
        .list-hero {
            height: 40vh;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%), 
                        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 0 0 80px 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-bottom: -50px;
        }

        /* --- HERO: Canlı ve Modern --- */
        .hero-section {
            height: 85vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%), 
                        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            border-radius: 0 0 80px 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--light), transparent);
        }

        .hero-title {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-weight: 500;
        }

        /* --- ARAMA KUTUSU: Tarih Seçiciler Güncellendi --- */
        .search-container {
            max-width: 1000px;
            margin: -70px auto 0;
            position: relative;
            z-index: 10;
            padding: 0 20px;
        }

        .search-box {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 25px 30px;
            border-radius: 30px;
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
        }
        
        .search-box:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .search-field {
            position: relative;
        }

        .search-field label {
            display: block;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .search-box .form-control, .search-box .form-select {
            border: none;
            padding: 15px 20px;
            font-weight: 500;
            font-size: 1rem;
            background: #f8fafc;
            border-radius: 15px;
            transition: all 0.3s;
            height: auto;
        }
        
        .search-box .form-control:focus, .search-box .form-select:focus {
            box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2); 
            background: white;
            outline: none;
        }

        /* Tarih input'ları için özel stil */
        input[type="date"] {
            position: relative;
        }

        input[type="date"]::-webkit-calendar-picker-indicator {
            background: transparent;
            bottom: 0;
            color: transparent;
            cursor: pointer;
            height: auto;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            width: auto;
        }

        .date-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .date-wrapper i {
            position: absolute;
            left: 20px;
            color: var(--primary);
            pointer-events: none;
            z-index: 2;
        }

        .date-wrapper input[type="date"] {
            padding-left: 50px;
            width: 100%;
        }

        .btn-search {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 20px;
            padding: 15px 40px;
            font-weight: 700;
            border: none;
            transition: all 0.4s;
            box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
            height: 100%;
            min-height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-search:hover { 
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
        }

        /* --- ÖZELLİKLER BÖLÜMÜ --- */
        .features-section {
            padding: 100px 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 25px;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        /* --- TESİS KARTLARI: Instagram/Airbnb Stili --- */
        .hotel-card {
            border: none;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }

        .hotel-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--hover-shadow);
        }

        .img-wrapper {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .img-wrapper img {
            width: 100%; 
            height: 100%; 
            object-fit: cover;
            transition: 0.8s ease;
        }

        .hotel-card:hover .img-wrapper img { 
            transform: scale(1.15) rotate(2deg);
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
            opacity: 0;
            transition: 0.4s;
        }
        
        .hotel-card:hover .overlay {
            opacity: 1;
        }

        .badge-rating {
            position: absolute;
            top: 20px; 
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(5px);
            color: #000;
            padding: 8px 16px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 0.9rem;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .badge-populer {
            position: absolute;
            top: 20px; 
            left: 20px;
            background: var(--secondary);
            color: #000;
            padding: 6px 14px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.8rem;
            z-index: 2;
        }

        .badge-tip {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--primary);
            color: white;
            padding: 6px 14px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.8rem;
            z-index: 2;
        }

        .card-body { 
            padding: 25px; 
            position: relative;
        }

        .hotel-title { 
            font-weight: 800; 
            font-size: 1.3rem; 
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .hotel-location {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .hotel-amenities {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .amenity {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            color: #64748b;
            gap: 5px;
        }
        
        .amenity i {
            color: var(--primary);
        }
        
        .price-tag {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }
        
        .price-period {
            font-size: 0.8rem;
            color: #94a3b8;
            font-weight: 500;
        }

        .btn-detail {
            background: #f1f5f9;
            color: var(--primary);
            border-radius: 15px;
            font-weight: 700;
            padding: 12px 25px;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-detail:hover { 
            background: var(--primary); 
            color: white;
            border-color: var(--primary);
            transform: translateX(5px);
        }
        
        /* --- KATEGORİLER BÖLÜMÜ --- */
        .categories-section {
            padding: 80px 0;
            background: #f1f5f9;
            border-radius: 60px;
            margin: 80px 0;
        }
        
        .category-card {
            background: white;
            border-radius: 25px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--card-shadow);
        }
        
        .category-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.8rem;
        }

        /* --- FOOTER --- */
        footer { 
            background: var(--dark); 
            color: white;
            padding: 80px 0 40px; 
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            margin-bottom: 12px;
            display: block;
            transition: 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            padding-top: 40px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Sepet butonları */
        .sepet-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .sepet-btn:hover {
            background: var(--secondary-light);
            color: white;
            transform: translateY(-2px);
        }

        .sepet-btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .sepet-btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        /* --- RESPONSIVE DÜZENLEMELER --- */
        @media (max-width: 992px) {
            .navbar {
                width: 95%;
                padding: 12px 20px;
            }
            
            .hero-section {
                height: 75vh;
            }
            
            .search-box {
                padding: 20px;
            }

            .sepet-dropdown {
                width: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .search-box .form-control, .search-box .form-select {
                margin-bottom: 15px;
            }
            
            .categories-section {
                border-radius: 40px;
                margin: 60px 0;
            }

            .sepet-dropdown {
                width: 300px;
                right: -50px !important;
                left: auto !important;
            }

            .sepet-item {
                padding: 12px 15px;
            }

            .sepet-item-img {
                width: 60px;
                height: 60px;
            }
        }
        
        @media (max-width: 576px) {
            .navbar {
                border-radius: 20px;
                margin: 15px auto;
            }
            
            .hero-section {
                height: 65vh;
                border-radius: 0 0 50px 50px;
            }
            
            .img-wrapper {
                height: 220px;
            }

            .sepet-dropdown {
                width: 280px;
                right: -70px !important;
            }

            .navbar-brand img {
                height: 35px;
            }

            .navbar-brand {
                font-size: 1.3rem;
            }
        }
        /* --- INDEX.CSS MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
    .navbar { width: 95%; padding: 12px 20px; }
    .hero-section { height: 75vh; }
    .search-box { padding: 20px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .search-box .form-control, .search-box .form-select { margin-bottom: 15px; }
    .sepet-dropdown { width: 300px; right: -50px !important; left: auto !important; }
    .sepet-item { padding: 12px 15px; }
    .sepet-item-img { width: 60px; height: 60px; }
}

@media (max-width: 576px) {
    .navbar { border-radius: 20px; margin: 15px auto; }
    .hero-section { height: 65vh; border-radius: 0 0 50px 50px; }
    .hero-title { font-size: 2rem; }
    .search-container { margin-top: -50px; }
}