/*
Theme Name: Hotel AI Analyzer
Theme URI: https://example.com/hotel-ai-analyzer
Description: Otellerin Google Places verilerini ve yorumlarını otomatik analiz eden, OpenAI ile değerlendirip SEO uyumlu yazılar oluşturan modern WordPress teması. Responsive tasarım, grafik görselleştirme ve kapsamlı analiz raporları ile otel ve konaklama sektörü için özel geliştirilmiştir.
Version: 1.0.0
Author: Hotel AI Team
Author URI: https://example.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hotel-ai-analyzer
Tags: business, hotel, analysis, ai, modern, responsive, blog, custom-post-types, featured-images, threaded-comments, translation-ready, rtl-language-support, hotel, tourism
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

/* Header Styles - Modern Clean Design */
.site-header {
    background: white;
    border-bottom: 1px solid #e1e5e9;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.header-top-bar {
    padding: 15px 0;
}

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

.site-branding .brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-branding .site-title {
    margin: 0;
    font-size: 1.8em;
    font-weight: 700;
}

.site-branding .site-title a {
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.site-branding .site-title a:hover {
    color: #667eea;
}

.brand-icon {
    font-size: 1.2em;
}

.site-tagline {
    margin: 0;
    color: #667eea;
    font-size: 0.85em;
    font-weight: 500;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-search-form .search-form {
    max-width: 300px;
}

.header-search-form .search-field {
    padding: 8px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 20px;
    font-size: 14px;
    width: 250px;
    transition: all 0.3s ease;
}

.header-search-form .search-field:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.header-search-form .search-submit {
    padding: 8px 15px;
    background: #667eea;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header-search-form .search-submit:hover {
    background: #5a67d8;
}

.main-navigation .primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-navigation a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.main-navigation a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 20px;
    position: relative;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #4a5568;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Main Container */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Post Styles */
.post {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.post-title {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.post-meta {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9em;
}

.post-content h2 {
    font-size: 1.8em;
    color: #34495e;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
    position: relative;
}

.post-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.post-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Hotel Analysis Specific Styles */
.camp-analysis-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.business-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.info-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 120px;
    margin-right: 15px;
}

.info-value {
    color: #555;
    font-weight: 500;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 600;
}

.widget {
    margin-bottom: 30px;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.widget a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: #2980b9;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 30px 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
    background-size: 300% 100%;
    animation: gradientFlow 5s ease-in-out infinite;
}

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

.hero-content {
    max-width: 700px;
    margin: 0 auto 25px auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: #4a5568;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-btn.secondary {
    background: white;
    color: #2c3e50;
    border: 2px solid #e9ecef;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

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

.feature-icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
}

/* Section Title Styles */
.section-title {
    font-size: 2.2em;
    font-weight: 700;
    margin: 60px 0 30px;
    color: #2c3e50;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Featured Sections */
.featured-camps-section,
.satisfaction-camps-section {
    margin: 80px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

/* Camp Cards Grid */
.camp-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

/* Responsive Grid Optimizations */
@media (min-width: 1200px) {
    .camp-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 30px auto;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .camp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .camp-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }
}

/* Modern Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 50px 0;
    padding: 20px 0;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    color: #495057;
}

.pagination .page-numbers:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #3498db;
    color: #3498db;
    background: linear-gradient(135deg, #ffffff 0%, #ebf8ff 100%);
}

.pagination .page-numbers.current {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    cursor: default;
}

.pagination .page-numbers.current:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    color: white;
    border-color: #6c5ce7;
    padding: 10px 20px;
    font-weight: 700;
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
    background: linear-gradient(135deg, #5f3dc4 0%, #4c63d2 100%);
    border-color: #5f3dc4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: default;
    padding: 10px 8px;
}

.pagination .page-numbers.dots:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
}

/* Pagination Animation */
.pagination .page-numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.pagination .page-numbers:hover::before {
    left: 100%;
}

.pagination .page-numbers.current::before {
    display: none;
}

/* Mobile Pagination */
@media (max-width: 768px) {
    .pagination {
        margin: 30px 0;
        padding: 15px 0;
    }
    
    .pagination .nav-links {
        gap: 6px;
    }
    
    .pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .pagination .page-numbers.prev,
    .pagination .page-numbers.next {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .pagination .page-numbers.prev,
    .pagination .page-numbers.next {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.camp-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.camp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.camp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.camp-card:hover::before {
    opacity: 1;
}

.camp-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.camp-card:hover .image-overlay {
    opacity: 1;
}

.view-analysis {
    color: white;
    font-weight: 600;
    font-size: 1.1em;
}

.camp-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.camp-card-header {
    margin-bottom: 20px;
}

.camp-name {
    margin: 0 0 8px 0;
    font-size: 1.3em;
    font-weight: 700;
}

.camp-name a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.camp-name a:hover {
    color: #667eea;
}

.camp-location {
    color: #666;
    font-size: 0.9em;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.camp-rating-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9em;
}

.rating-number {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1em;
}

.review-count {
    color: #666;
    font-size: 0.85em;
    margin: 0;
}

.ai-analysis-preview {
    margin-bottom: 20px;
}

.analysis-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
}

.badge.positive {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.badge.ai {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.camp-card-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
}

.view-details-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.view-details-btn:hover::before {
    left: 100%;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .header-search-form .search-field {
        width: 100%;
        max-width: none;
    }
    
    .main-navigation .primary-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero */
    .hero-section {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    /* Camp Cards */
    .camp-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin: 20px 0;
    }
    
    .camp-card-content {
        padding: 20px;
    }
    
    .camp-name {
        font-size: 1.2em;
    }
    
    .camp-location {
        font-size: 0.85em;
    }
    
    /* Main Container */
    .site-main {
        padding: 20px 15px;
    }
    
    /* Post Styles */
    .post {
        padding: 20px;
    }
    
    .post-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .site-main {
        padding: 15px 10px;
    }
    
    .post-title {
        font-size: 1.8em;
    }
    
    .camp-analysis-intro {
        padding: 20px 15px;
    }
    
    .business-info-box,
    .sidebar {
        padding: 15px;
    }
}

/* ==================================================
   HOTEL AI ANALYZER - ANALIZ GRAFİKLERİ STİLLERİ
   ================================================== */

/* Analiz Özeti Bölümü */
.analysis-summary-section {
    margin: 20px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.analysis-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.analysis-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.analysis-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-header {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.card-value {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.1;
}

.card-subtitle {
    font-size: 12px;
    color: #999;
}

.sentiment-chart {
    text-align: left;
}

.sentiment-bar {
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    background: #ecf0f1;
    margin: 15px 0;
    position: relative;
}

.positive-bar {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transition: width 0.8s ease;
}

.negative-bar {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    transition: width 0.8s ease;
}

.sentiment-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 8px;
}

.positive-label {
    color: #27ae60;
    font-weight: bold;
}

.negative-label {
    color: #e74c3c;
    font-weight: bold;
}

.highlights-list {
    text-align: left;
}

/* Hide Analysis Data Section */
.camp-analysis-data {
    display: none !important;
}

/* Hide Customer Satisfaction Section */
.satisfaction-section, 
.memnuniyet-section, 
.musteri-memnuniyet {
    display: none !important;
}

/* Hide Breadcrumb Navigation */
.breadcrumb {
    display: none !important;
}

.highlight-item {
    margin: 8px 0;
    color: #2c3e50;
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px solid #f8f9fa;
}

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

/* Rating Card Özel Stilleri */
.rating-card .card-value {
    color: #f39c12;
}

/* Sentiment Card Özel Stilleri */
.sentiment-card {
    min-height: 150px;
}

/* Beğeni ve Şikayet Kartları */
.positive-card, .negative-card {
    min-height: 180px;
}

.positive-card .card-header {
    color: #27ae60;
}

.negative-card .card-header {
    color: #e74c3c;
}

/* Highlights Card Özel Stilleri */
.highlights-card {
    text-align: left;
}

/* Blog Slider Bölümü */
.blog-slider-section {
    margin-bottom: 40px;
}

.blog-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.blog-slide {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.blog-slide-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-slide-image {
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.blog-slide:hover .blog-slide-image img {
    transform: scale(1.05);
}

.blog-slide-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-slide-title {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
}

.blog-slide-excerpt {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
}

.blog-slide-more {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9em;
    align-self: flex-start;
}

.blog-slider-nav {
    text-align: center;
    margin-top: 15px;
}

.view-all-blogs-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-blogs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.no-blog-posts {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
    grid-column: 1 / -1;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .analysis-cards {
        grid-template-columns: 1fr;
    }
    
    .blog-slider {
        grid-template-columns: 1fr;
    }
    
    .analysis-summary-section {
        padding: 15px;
    }
    
    .analysis-card {
        padding: 15px;
    }
    
    .card-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sentiment-labels {
        flex-direction: column;
        gap: 5px;
    }
    
    .card-value {
        font-size: 22px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .blog-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================
   FİLTRELEME BÖLÜMÜ STİLLERİ
   ============================== */

/* Filter Section */
.filter-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.filter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    background-size: 300% 100%;
    animation: gradientFlow 5s ease-in-out infinite;
}

.filter-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-filter-form {
    max-width: 100%;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.filter-select, .filter-input {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 15px;
    background: white;
    color: #2c3e50;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.filter-input {
    background-image: none;
    padding-right: 15px;
}

.filter-select:focus, .filter-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.filter-actions {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.filter-btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95em;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.filter-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.filter-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.filter-btn.secondary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border: 2px solid #dee2e6;
}

.filter-btn.secondary:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Active Filters */
.active-filters {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #bbdefb;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.filter-label {
    font-weight: 600;
    color: #1976d2;
    font-size: 0.95em;
}

.filter-tag {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Location Meta in Cards */
.location-meta {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    color: #2e7d32 !important;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85em;
    border: 1px solid #c8e6c9;
}

/* Responsive Filter Styles */
@media (max-width: 1024px) {
    .filter-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .filter-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .filter-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .filter-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-select, .filter-input {
        padding: 12px 15px;
        font-size: 16px; /* iOS zoom fix */
    }
    
    .filter-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }
    
    .filter-btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .active-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    .filter-tag {
        margin: 2px;
    }
}

@media (max-width: 480px) {
    .filter-section {
        padding: 15px;
        border-radius: 15px;
    }
    
    .filter-title {
        font-size: 1.3em;
    }
    
    .filter-select, .filter-input {
        padding: 10px 12px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .filter-select {
        padding-right: 35px;
        background-size: 14px;
        background-position: right 10px center;
    }
    
    .filter-btn {
        padding: 12px 16px;
        font-size: 0.9em;
        border-radius: 8px;
    }
    
    .active-filters {
        padding: 12px;
        border-radius: 12px;
    }
    
    .filter-label {
        font-size: 0.9em;
    }
    
    .filter-tag {
        font-size: 0.8em;
        padding: 5px 10px;
    }
}

/* Loading States */
.filter-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.filter-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Hover Effects */
.filter-section:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.filter-group:hover label {
    color: #667eea;
}

.filter-select:hover, .filter-input:hover {
    border-color: #a5b4fc;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

/* Focus Visible Support */
.filter-btn:focus-visible {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

.filter-select:focus-visible, .filter-input:focus-visible {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .filter-section {
        border: 3px solid #000;
    }
    
    .filter-select, .filter-input {
        border-width: 3px;
    }
    
    .filter-btn {
        border: 2px solid;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .filter-section::before {
        animation: none;
    }
    
    .filter-section,
    .filter-btn,
    .filter-select,
    .filter-input {
        transition: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .filter-section {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
        border-color: rgba(255,255,255,0.1);
    }
    
    .filter-title {
        color: #f7fafc;
    }
    
    .filter-group label {
        color: #e2e8f0;
    }
    
    .filter-select, .filter-input {
        background: #4a5568;
        border-color: #718096;
        color: #f7fafc;
    }
    
    .filter-select:focus, .filter-input:focus {
        border-color: #667eea;
        background: #2d3748;
    }
    
    .active-filters {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        border-color: #718096;
    }
    
    .filter-label {
        color: #90cdf4;
    }
    
    .location-meta {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        color: #68d391 !important;
        border-color: #38a169;
    }
}
