/* ==========================================================================
   enkolayotel.com - Premium Tasarım Sistemi & CSS Kültürü
   ========================================================================== */

/* 1. Global Değişkenler ve Renk Paleti */
:root {
    /* Renk Tanımları - HSL Bazlı Harmonik Palet */
    --primary: hsl(182, 100%, 25%);       /* Ege Denizi Derin Mavisi / Teal */
    --primary-light: hsl(182, 60%, 94%); /* Yumuşak Açık Mavi */
    --primary-dark: hsl(184, 100%, 12%);  /* Koyu Lacivert / Teal */
    --accent: hsl(38, 92%, 50%);          /* Günbatımı Ege Altını / Gold */
    --accent-light: hsl(38, 100%, 96%);   /* Çok Açık Altın */
    --neutral-dark: #1e293b;             /* Slate 800 - Başlıklar */
    --neutral-light: #f8fafc;            /* Slate 50 - Arka plan */
    --text-main: #475569;                /* Slate 600 - Gövde metin */
    --text-muted: #94a3b8;               /* Slate 400 - Silik metin */
    
    /* Efektler ve Gölgeler */
    --shadow-premium: 0 20px 45px rgba(15, 23, 42, 0.05), 0 4px 12px rgba(15, 23, 42, 0.02);
    --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.03);
    --shadow-glow: 0 8px 24px rgba(212, 175, 55, 0.2);
    --border-radius-lg: 1.25rem;
    --border-radius-md: 0.75rem;
    --border-radius-sm: 0.5rem;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Cam Efekti (Glassmorphism) */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
}

/* 2. Temel Sıfırlamalar ve Yapısal Kodlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--neutral-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Yardımcı Klaslar */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

.margin-top-medium { margin-top: 1.5rem; }
.margin-top-large { margin-top: 3rem; }
.text-center { text-align: center; }

/* 3. Header & Navigasyon Tasarımı */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.header-logo-zone {
    flex: 0 0 auto;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.logo span {
    color: var(--accent);
}

.header-nav-links-zone {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav-list-center {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    color: var(--neutral-dark);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0.75rem;
    right: 0.75rem;
    height: 3px;
    background-color: var(--primary);
    border-radius: 99px;
}

.header-user-actions-zone {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.auth-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
}

.guest-only {
    display: flex;
    align-items: center;
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 128, 128, 0.25);
}

.nav-link-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neutral-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    white-space: nowrap;
}

.nav-link-sub:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: rgba(0, 128, 128, 0.2);
}

.btn-sm-add {
    background: linear-gradient(135deg, var(--accent) 0%, #c49a2a 100%) !important;
    color: white !important;
    box-shadow: var(--shadow-glow) !important;
    border: none !important;
}

.btn-sm-add:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.35) !important;
}

.user-greeting-capsule {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    background-color: var(--primary-light);
    padding: 0.4rem 0.8rem;
    border-radius: 99px;
    border: 1px solid rgba(0, 128, 128, 0.15);
    white-space: nowrap;
}

.btn-logout-capsule {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.15) !important;
    color: white !important;
}

.btn-logout-capsule:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.25) !important;
}

/* 4. Butonlar ve Ortak Form Elemanları */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 128, 128, 0.25);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #c49a2a 100%);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.btn-search {
    background: var(--accent);
    color: white;
    font-size: 1.05rem;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-glow);
    border-radius: var(--border-radius-md);
    width: 100%;
}

.btn-search:hover {
    background: #c49a2a;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group-custom label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neutral-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input-custom {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #cbd5e1;
    background-color: white;
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--neutral-dark);
    transition: var(--transition-smooth);
}

.form-input-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.12);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--text-muted);
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-input-custom select, select.form-input-custom {
    appearance: none;
    cursor: pointer;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* 5. Görünüm: ANA SAYFA (#home-view) */
.hero-banner {
    position: relative;
    padding: 7rem 0 9rem 0;
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 48, 48, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

/* Glassmorphism Arama Formu Kartı */
.search-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    text-align: left;
    max-width: 960px;
    margin: 0 auto;
}

.search-grid {
    display: grid;
    grid-template-columns: 1.25fr 1.25fr 1.5fr 1fr;
    gap: 1.25rem;
    align-items: flex-end;
}

.search-form-card label {
    color: rgba(255, 255, 255, 0.9);
}

.search-form-card .form-input-custom {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: transparent;
}

/* Popüler Destinasyonlar */
.section-title-wrapper {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    height: 320px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.destination-card:hover .dest-img {
    transform: scale(1.08);
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dest-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.1) 60%);
    z-index: 1;
}

.dest-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    color: white;
}

.dest-info h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.dest-info p {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Özellikler Vitrini */
.features-showcase-bg {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 5rem 0;
    margin-top: 6rem;
}

.text-white { color: white; }
.text-white-mute { color: rgba(255, 255, 255, 0.7); }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    color: white;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.benefit-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 300;
}

/* 6. Görünüm: ARAMA SONUÇLARI (#search-view) */
.search-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

/* Filtre Paneli Sidebar */
.filter-sidebar {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    align-self: start;
    position: sticky;
    top: 90px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.filter-header h3 {
    font-size: 1.15rem;
}

.btn-clear-filters {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-clear-filters:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.25rem;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-group-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.filter-input-text {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-select {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.filter-checkbox {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}

.checkbox-scroll-area {
    max-height: 160px;
    overflow-y: auto;
    padding-right: 0.4rem;
}

/* Özel Scrollbar */
.checkbox-scroll-area::-webkit-scrollbar {
    width: 5px;
}
.checkbox-scroll-area::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.checkbox-scroll-area::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 99px;
}

/* Sonuç Listesi */
.results-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-card);
}

.results-count {
    font-weight: 600;
    color: var(--neutral-dark);
}

.mobile-filter-toggle-btn {
    display: none;
}

.hotel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Otel Kartı (Hotel Card) */
.hotel-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

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

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card-info-pane {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.4rem;
    color: var(--neutral-dark);
}

.card-stars {
    font-size: 1.1rem;
    color: var(--accent);
}

.card-rating-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.card-rating-badge span {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-main);
}

.card-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.card-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-pill {
    font-size: 0.75rem;
    background-color: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.6rem;
    border-radius: 99px;
    font-weight: 500;
}

.card-footer-row {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.btn-detail {
    background-color: var(--primary-light);
    color: var(--primary);
}

.btn-detail:hover {
    background-color: var(--primary);
    color: white;
}

/* 7. Görünüm: DETAY GÖRÜNÜMÜ (#detail-view) */
.detail-hero {
    position: relative;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%);
    z-index: 1;
}

.detail-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-info {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
    z-index: 2;
    color: white;
}

.detail-badge-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-hotel-stars {
    font-size: 1.25rem;
}

.hotel-rating-score {
    background-color: var(--accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow);
}

.detail-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.detail-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    margin-bottom: 5rem;
}

.detail-card-panel {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-card);
}

.detail-card-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--primary);
    padding-left: 0.75rem;
}

.detail-description {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.7;
}

.amenities-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.amenity-pill {
    background-color: #f0fdfa;
    border: 1px solid #ccfbf1;
    color: #0d9488;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Yorum Paneli & Dashboard */
.reviews-summary-dashboard {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    background-color: #f8fafc;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.big-rating-box {
    text-align: center;
    border-right: 1px solid #e2e8f0;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-rating-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.big-rating-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin-top: 0.25rem;
}

.big-rating-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.rating-bars-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.rating-bar-row {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.bar-bg {
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--accent);
    border-radius: 99px;
    transition: width 0.8s ease-in-out;
}

/* Yorum Ekleme Formu */
.review-form-box {
    background-color: #fdfbf7;
    border: 1px solid #fef3c7;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.review-form-box h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #b45309;
}

/* Yıldız Seçici */
.star-rating-selector {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating-selector input {
    display: none;
}

.star-rating-selector label {
    font-size: 1.8rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0 0.1rem;
}

.star-rating-selector label:hover,
.star-rating-selector label:hover ~ label,
.star-rating-selector input:checked ~ label {
    color: var(--accent);
}

/* Yorum Listesi Feed */
.reviews-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.5rem;
}

.review-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.review-user-info h5 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-card-stars {
    color: var(--accent);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* Sidebar Rezervasyon Kartı */
.detail-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.booking-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
}

.booking-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.booking-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.booking-card form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.price-breakdown {
    background-color: #f8fafc;
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-main);
}

.price-breakdown hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 0.25rem 0;
}

.total-row {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--neutral-dark);
}

.btn-booking {
    background: linear-gradient(135deg, var(--accent) 0%, #c49a2a 100%);
    color: white;
    box-shadow: var(--shadow-glow);
    padding: 1rem;
    width: 100%;
}

.btn-booking:hover {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* 8. Görünüm: OTEL EKLEME GÖRÜNÜMÜ (#add-hotel-view) */
.form-dashboard-layout {
    max-width: 780px;
    margin: 3rem auto 6rem auto;
}

.form-dashboard-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-dashboard-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.form-dashboard-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.dashboard-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.form-section-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
    color: var(--primary);
}

.border-accent {
    border: 1px solid #fef3c7;
    background-color: #fdfbf7;
}

.border-accent h3 {
    color: #b45309;
    border-bottom-color: #fef3c7;
}

.star-radio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.star-radio-card {
    cursor: pointer;
}

.star-radio-card input {
    display: none;
}

.star-radio-card .card-inner {
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius-md);
    padding: 1rem;
    text-align: center;
    transition: var(--transition-smooth);
    background-color: white;
}

.star-radio-card .card-inner span {
    font-size: 1.15rem;
}

.star-radio-card .card-inner p {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 0.25rem;
}

.star-radio-card input:checked + .card-inner {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary);
}

.checkbox-instruction {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.form-section-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--neutral-dark);
}

.checkbox-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.custom-checkbox-holder {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

.custom-checkbox-holder input {
    display: none;
}

.checkbox-box {
    width: 20px;
    height: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    background-color: white;
    transition: var(--transition-smooth);
}

.custom-checkbox-holder input:checked + .checkbox-box {
    background-color: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox-holder input:checked + .checkbox-box::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.help-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.dashboard-form-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-save {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.2);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
}

/* ==========================================================================
   9. GİRİŞ / ÜYE OLMA EKRANI STİLLERİ (#auth-view)
   ========================================================================== */
.auth-container {
    max-width: 480px;
    margin: 4rem auto 6rem auto;
}

.auth-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.auth-tab {
    flex: 1;
    padding: 1.25rem;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.auth-tab:hover {
    color: var(--primary);
    background-color: rgba(0, 128, 128, 0.03);
}

.auth-tab.active {
    color: var(--primary);
    background-color: white;
    border-bottom: 3px solid var(--primary);
}

.auth-card-body {
    padding: 2.5rem;
}

.auth-form-title {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    text-align: center;
}

.auth-form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.demo-accounts-hint {
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    color: #b45309;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    margin-top: 1.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==========================================================================
   10. MÜŞTERİ VE SAHİP DASHBOARD STİLLERİ
   ========================================================================== */
.dashboard-header-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    color: white;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.dashboard-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.owner-banner {
    background: linear-gradient(135deg, #1e293b 0%, var(--primary-dark) 100%);
}

.admin-banner {
    background: linear-gradient(135deg, #475569 0%, #0f172a 100%);
}

.dash-welcome h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.dash-welcome p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 300;
    max-width: 650px;
}

/* A) MÜŞTERİ DASHBOARD YAZILIMI */
.customer-bookings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.booking-detail-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.booking-card-header-pane {
    position: relative;
    height: 140px;
    overflow: hidden;
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.booking-card-header-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 1;
}

.booking-hotel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-hotel-info {
    position: relative;
    z-index: 2;
}

.booking-hotel-info h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
}

.booking-hotel-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.booking-card-body-pane {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.booking-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px dashed #f1f5f9;
    padding-bottom: 0.4rem;
}

.booking-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.booking-meta-row strong {
    color: var(--neutral-dark);
}

.booking-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    margin-top: auto;
}

/* Durum Rozetleri (Status Badges) */
.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
}

.status-pending {
    background-color: #fef3c7;
    color: #d97706;
}

.status-confirmed {
    background-color: #d1fae5;
    color: #059669;
}

.status-cancelled {
    background-color: #fee2e2;
    color: #dc2626;
}

/* B) OTEL SAHİBİ STATS & TABLES */
.owner-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.15rem;
}

/* Dashboard Sekmeleri */
.dashboard-panel-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1px;
}

.panel-tab {
    padding: 0.9rem 1.5rem;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
}

.panel-tab:hover {
    color: var(--primary);
}

.panel-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Premium Dashboard Tabloları */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    margin-top: 1.5rem;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.premium-table th {
    background-color: #f8fafc;
    color: var(--neutral-dark);
    font-weight: 700;
    padding: 1.1rem 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.premium-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-main);
    vertical-align: middle;
}

.premium-table tbody tr:hover {
    background-color: #f8fafc;
}

.premium-table tbody tr:last-child td {
    border-bottom: none;
}

.table-img {
    width: 55px;
    height: 40px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

/* Tablo Butonları */
.table-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
}

.btn-sm-edit {
    background-color: var(--primary-light);
    color: var(--primary);
}

.btn-sm-edit:hover {
    background-color: var(--primary);
    color: white;
}

.btn-sm-approve {
    background-color: #d1fae5;
    color: #059669;
}

.btn-sm-approve:hover {
    background-color: #059669;
    color: white;
}

.btn-sm-decline {
    background-color: #fee2e2;
    color: #dc2626;
}

.btn-sm-decline:hover {
    background-color: #dc2626;
    color: white;
}

/* ==========================================================================
   10. Native Dialog / Modal & @starting-style Animasyonları
   ========================================================================== */
dialog {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin: auto;
    max-width: 440px;
    width: 90%;
    overflow: hidden;
    
    opacity: 0;
    transform: scale(0.9);
    transition-property: opacity, transform, display, overlay;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-behavior: allow-discrete;
}

dialog::backdrop {
    background-color: rgba(15, 23, 42, 0);
    transition: display 0.3s allow-discrete, overlay 0.3s allow-discrete, background-color 0.3s ease-out;
}

dialog[open] {
    opacity: 1;
    transform: scale(1);
    
    @starting-style {
        opacity: 0;
        transform: scale(0.9);
    }
}

dialog[open]::backdrop {
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    
    @starting-style {
        background-color: rgba(15, 23, 42, 0);
    }
}

.dialog-card {
    padding: 2.5rem 2rem;
    text-align: center;
    background: white;
}

.dialog-icon {
    width: 60px;
    height: 60px;
    background-color: #d1fae5;
    color: #059669;
    font-size: 1.8rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-weight: 700;
}

.dialog-icon.error {
    background-color: #fee2e2;
    color: #dc2626;
}

.dialog-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.dialog-body {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-dialog-close {
    background-color: #f1f5f9;
    color: var(--neutral-dark);
    width: 100%;
}

.btn-dialog-close:hover {
    background-color: #e2e8f0;
}

/* DB Setup Uyarısı Overlay */
.overlay-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.overlay-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.5s ease-out;
}

.alert-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.overlay-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* 11. Footer (Sayfa Altı) */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4.5rem 0 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3.5rem;
}

.logo-white {
    color: white;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 380px;
}

.footer-links-box h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.25rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* 12. View Transitions ve Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* View Transitions API Desteği (Pürüzsüz SPA Geçişleri) */
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link {
    view-transition-name: site-logo;
}

.hero-banner {
    view-transition-name: hero-banner-section;
}

/* Azaltılmış Hareket Tercihi */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    ::view-transition-group(*),
    ::view-transition-old(*),
    ::view-transition-new(*) {
        animation: none !important;
    }
    
    dialog, [popover] {
        transform: none !important;
        transition-duration: 0.1s !important;
    }
    @starting-style {
        dialog[open], [popover]:popover-open {
            transform: none !important;
        }
    }
}

/* 13. Mobil ve Tablet Uyumlu Responsive Tasarım */
@media (max-width: 1024px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .search-grid .submit-group {
        grid-column: span 2;
    }
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .search-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        display: none; /* Mobilde js ile toggle edilecek */
    }
    .filter-sidebar.mobile-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        overflow-y: auto;
        border-radius: 0;
        padding: 2rem;
    }
    .mobile-filter-toggle-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--primary);
        cursor: pointer;
        border: 1px solid var(--primary-light);
        padding: 0.5rem 1rem;
        border-radius: var(--border-radius-sm);
        background-color: var(--primary-light);
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .detail-sidebar {
        position: static;
    }
    .customer-bookings-grid {
        grid-template-columns: 1fr;
    }
    .owner-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-grid .submit-group {
        grid-column: span 1;
    }
    .hotel-card {
        grid-template-columns: 1fr;
    }
    .card-img-wrapper {
        height: 200px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .star-radio-cards {
        grid-template-columns: 1fr;
    }
    .checkbox-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .reviews-summary-dashboard {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .big-rating-box {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
    .detail-hero {
        height: 320px;
    }
    .detail-title {
        font-size: 1.75rem;
    }
    .auth-card-body {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   14. YENİ SOL MENÜLÜ ADMIN DÜZENİ VE MODAL EDİTÖRLERİ
   ========================================================================== */
.admin-layout-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

.admin-sidebar-nav {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 90px;
}

.admin-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.admin-menu-item {
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.admin-menu-item .menu-item-header {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.admin-menu-item:not(.parent-item):hover .menu-item-header,
.admin-menu-item.parent-item .menu-item-header:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.admin-menu-item.active:not(.parent-item) .menu-item-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.15);
}

.admin-menu-item.parent-item .menu-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.admin-menu-item.parent-item.expanded .menu-arrow {
    transform: rotate(180deg);
}

/* Submenu */
.admin-submenu-list {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0 0.5rem 2rem;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-menu-item.parent-item.expanded .admin-submenu-list {
    display: flex;
}

.admin-submenu-item {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    color: var(--text-main);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-submenu-item:hover {
    background-color: #f1f5f9;
    color: var(--primary);
}

.admin-submenu-item.active {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.admin-content-pane {
    min-width: 0;
}

/* Modal form adjustments */
.btn-dialog-close-icon {
    transition: var(--transition-smooth);
    line-height: 1;
}

.btn-dialog-close-icon:hover {
    color: #ef4444 !important;
    transform: rotate(90deg);
}

.dialog-card select.form-input-custom {
    padding-right: 2.5rem;
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
    .admin-layout-wrapper {
        grid-template-columns: 1fr;
    }
    .admin-sidebar-nav {
        position: static;
    }
}

/* ==========================================================================
   15. PRE-DESIGNED GALLERY GRID & CUSTOM RATINGS STYLES
   ========================================================================== */
.detail-premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
}

.premium-gallery-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 10px;
    height: 380px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.gallery-main-zone {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-side-zone {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.side-img-box {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.gallery-rating-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

/* Booking Card (Like Booking.com) */
.booking-like-rating-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-text-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rating-quality {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--neutral-dark);
}

.rating-reviews-count {
    font-size: 0.75rem;
    color: #64748b;
}

.rating-badge-square {
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px 6px 6px 0;
}

.rating-fav-quote {
    text-align: left;
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
    font-style: italic;
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.4;
    margin: 0.25rem 0;
}

.rating-category-score {
    border-top: 1px solid #f1f5f9;
    padding-top: 0.6rem;
}

/* Map Card */
.gallery-map-card {
    flex-grow: 1;
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-map-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, transparent 20%, rgba(0, 128, 128, 0.05) 80%);
    z-index: 1;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.map-pin-icon {
    font-size: 1.8rem;
    animation: bouncePin 1.5s infinite;
}

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

/* Thumbnails Strip */
.gallery-thumbnails-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    height: 85px;
}

.thumb-box {
    position: relative;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.gallery-thumb:hover {
    filter: brightness(0.85);
    transform: scale(1.02);
}

.thumb-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-radius: 6px;
}

/* Criteria ratings progress bar adjustments */
.criteria-bar-row {
    width: 100%;
}

/* Multi Star Rating Selectors */
.criteria-selectors-grid .star-rating-selector {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.15rem;
}

.criteria-selectors-grid .star-rating-selector input {
    display: none;
}

.criteria-selectors-grid .star-rating-selector label {
    font-size: 1.6rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.1s ease;
}

.criteria-selectors-grid .star-rating-selector label:hover,
.criteria-selectors-grid .star-rating-selector label:hover ~ label,
.criteria-selectors-grid .star-rating-selector input:checked ~ label {
    color: var(--accent);
}

.criteria-selectors-grid .star-rating-selector label:active {
    transform: scale(0.9);
}

/* General Layout Responsive Adjustments */
@media (max-width: 1024px) {
    .premium-gallery-wrapper {
        grid-template-columns: 1.8fr 1fr;
        height: 320px;
    }
    .gallery-rating-sidebar {
        display: none; /* Hide side column rating card on tablet, it is also displayed under reviews section! */
    }
}

@media (max-width: 768px) {
    .detail-premium-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .btn-book-top {
        width: 100%;
    }
    .premium-gallery-wrapper {
        grid-template-columns: 1fr;
        height: 250px;
    }
    .gallery-side-zone {
        display: none; /* Mobile just shows main cover image */
    }
    .gallery-thumbnails-strip {
        grid-template-columns: repeat(3, 1fr);
        height: 60px;
    }
    .gallery-thumbnails-strip .thumb-box:nth-child(n+4) {
        display: none; /* Hide 4th and 5th on small screens */
    }
}

/* ==========================================================================
   PREMIUM STICKY DETAIL NAVIGATION & TOOLTIPS
   ========================================================================== */

.detail-sub-navigation-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 70px;
    z-index: 98;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.sub-nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none; /* Hide default scrollbars */
}

.sub-nav-list::-webkit-scrollbar {
    display: none;
}

.sub-nav-item {
    padding: 1.1rem 0;
    position: relative;
}

.sub-nav-item a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.25s ease;
    white-space: nowrap;
    display: block;
}

.sub-nav-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    border-radius: 3px 3px 0 0;
}

.sub-nav-item.active a,
.sub-nav-item a:hover {
    color: var(--primary);
    font-weight: 700;
}

.sub-nav-item.active:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.sub-nav-reviews-count {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.85rem;
}

.sub-nav-item.active .sub-nav-reviews-count {
    color: var(--primary);
    font-weight: 500;
}

/* Elegant Criteria Tooltip Icon */
.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background-color: #f1f5f9;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    margin-left: 5px;
    cursor: help;
    transition: all 0.2s ease;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.tooltip-icon:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Active Highlight Border for Gallery Thumbnails */
.gallery-thumb {
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-thumb.active-thumb {
    border-color: var(--primary);
    filter: brightness(1.05);
    box-shadow: 0 4px 12px rgba(10, 110, 110, 0.15);
    transform: translateY(-2px);
}

/* ==========================================================================
   PREMIUM VISUAL UPLOADER STYLES
   ========================================================================== */

.hidden-file-input {
    display: none !important;
}

.premium-image-upload-wrapper {
    position: relative;
    width: 100%;
}

.image-upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: var(--border-radius-lg);
    background-color: #f8fafc;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-upload-zone:hover {
    border-color: var(--primary);
    background-color: rgba(10, 110, 110, 0.02);
    transform: translateY(-1px);
}

.upload-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: opacity 0.2s ease;
}

.upload-zone-content.hidden {
    display: none !important;
}

.upload-icon {
    font-size: 2.8rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.upload-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--neutral-dark);
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.upload-subtitle {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
}

.upload-zone-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: #ffffff;
    animation: fadeIn 0.3s ease;
}

.upload-zone-preview.hidden {
    display: none !important;
}

.upload-zone-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-remove-uploaded {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-remove-uploaded:hover {
    background-color: #ef4444;
    transform: scale(1.08);
}

.uploaded-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 1.5rem;
}

.gallery-upload-card {
    position: relative;
    aspect-ratio: 1.1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.gallery-upload-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.gallery-upload-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-upload-card .btn-remove-uploaded {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
    top: 8px;
    right: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gallery-upload-card.loading-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
}

.gallery-upload-card.loading-card::before {
    content: '⌛ Yükleniyor...';
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    animation: pulse 1.5s infinite;
}

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

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


/* ==========================================================================
   PREMIUM MAINTENANCE / YAKINDA SİZLERLEYİZ OVERLAY STYLES
   ========================================================================== */

#maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 30% 30%, #082d30 0%, #02171a 60%, #010c0e 100%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem;
}

/* Moving background glow orbs */
.m-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}
.m-glow-1 {
    width: 500px;
    height: 500px;
    background: #00f2fe;
    top: -100px;
    left: -100px;
    animation: floatGlow 15s infinite alternate ease-in-out;
}
.m-glow-2 {
    width: 600px;
    height: 600px;
    background: #0b6060;
    bottom: -150px;
    right: -150px;
    animation: floatGlow 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 80px) scale(1.1); }
    100% { transform: translate(-30px, -50px) scale(0.9); }
}

.m-container {
    max-width: 780px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(2, 23, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: mFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.m-logo {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    cursor: pointer;
    user-select: none;
    letter-spacing: -1px;
}
.m-logo span {
    color: #00f2fe;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.m-badge {
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.m-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.m-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
}

.m-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.m-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.m-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 254, 0.2);
    transform: translateY(-3px);
}

.m-card-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.m-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.m-card-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

/* Interactive Dev Bypass hint (Subtle) */
.m-bypass-info {
    margin-top: 2.5rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: color 0.2s ease;
}
.m-bypass-info:hover {
    color: rgba(0, 242, 254, 0.6);
}

.m-form {
    display: flex;
    gap: 0.6rem;
    max-width: 480px;
    margin: 0 auto;
}

.m-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.m-input:focus {
    border-color: #00f2fe;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.m-btn {
    background: linear-gradient(135deg, #0b6060 0%, #082d30 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: white;
    font-weight: 700;
    padding: 0 1.8rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.m-btn:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #0b6060 100%);
    border-color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    transform: translateY(-1px);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .m-container {
        padding: 2.5rem 1.5rem;
    }
    .m-title {
        font-size: 2rem;
    }
    .m-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .m-form {
        flex-direction: column;
    }
    .m-btn {
        padding: 0.8rem;
    }
}



