:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #10b981;
    --dark: #0f172a;
    --bg: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

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

.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
}

.header-nav a:hover {
    opacity: 1;
}

.hero {
    padding: 60px 20px;
    text-align: center;
}

.site-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.site-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    z-index: 100;
    top: 100%;
    right: 0;
    margin-top: 10px;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--dark) !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-light);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--bg);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Search Improvements */
.search-section {
    text-align: center;
    margin-top: -60px;
    z-index: 10;
    position: relative;
}

.search-box-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    font-size: 1.2rem;
    z-index: 5;
    pointer-events: none;
}

#citySearch {
    width: 100%;
    padding: 15px 90px 15px 45px; /* Sağ tarafa ikonlar için daha fazla yer bıraktık */
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s;
    outline: none;
}

#citySearch:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.near-me-btn {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    color: var(--primary);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.near-me-btn:hover {
    transform: translateY(-50%) scale(1.2);
}

.voice-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 5;
}

.voice-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.voice-btn.recording {
    animation: pulse-recording 1s infinite;
    color: #ef4444;
}

@keyframes pulse-recording {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
    100% { transform: translateY(-50%) scale(1); }
}

.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: opacity 0.3s, transform 0.3s;
}

.scroll-top-btn.visible {
    display: flex;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

/* Cards */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

/* Smart Widgets */
.smart-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.widget-box {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.widget-box:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.widget-box h4 {
    font-size: 1.1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.widget-box p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

.widget-box .value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.widget-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-live { background: #fee2e2; color: #ef4444; }
.badge-info { background: #dcfce7; color: #16a34a; }

/* FAQ Section */
.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg);
}

.faq-answer {
    padding: 15px 20px;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    color: var(--gray);
    font-size: 0.95rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Service Tips */
.expert-tip {
    background: linear-gradient(to right, #fff7ed, #fff);
    border-left: 4px solid #f97316;
    padding: 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 25px 0;
}

.expert-tip h4 {
    color: #c2410c;
    margin-bottom: 8px;
}

/* Price Table */
.price-table-container {
    margin: 25px 0;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-table th {
    background: var(--primary);
    color: var(--white);
    text-align: left;
    padding: 15px 20px;
    font-weight: 600;
}

.price-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
}

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

.price-table tr:hover td {
    background: var(--primary-light);
}

.price-val {
    font-weight: 700;
    color: var(--primary);
}

/* Öne Çıkan Görsel */
.featured-image-container {
    margin: -25px -25px 25px -25px; /* Card padding'ini sıfırla */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
    aspect-ratio: 1200 / 630;
    background: var(--primary-light);
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-image-container:hover img {
    transform: scale(1.03);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.search-box-wrapper {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    border: 1px solid #e2e8f0;
}

.suggestion-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: var(--dark);
}

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

.suggestion-item:hover {
    background: #f8fafc;
}

.suggestion-icon {
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.suggestion-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.suggestion-meta {
    font-size: 0.75rem;
    color: var(--gray);
}

.suggestion-category {
    margin: 10px 20px 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-analysis-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid var(--primary);
}

.analysis-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.price-factors {
    margin-top: 15px;
    font-size: 0.9rem;
}

.price-factors ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.price-factors li {
    margin-bottom: 5px;
    color: var(--gray);
}

.price-index-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
}

.index-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
}

.index-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
}

.index-desc {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.4;
}

.price-disclaimer {
    font-size: 0.75rem;
    font-style: italic;
    color: #94a3b8;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
}

/* 404 & Hub Styles */
.error-page {
    text-align: center;
    padding: 60px 20px;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 20px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .smart-widgets {
        grid-template-columns: 1fr;
    }
    
    .site-header h1 {
        font-size: 1.8rem;
    }
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
    max-width: 350px;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Grid Items */
.grid-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-light);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    text-align: center;
}

.grid-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.grid-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.grid-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Map Container */
.map-container {
    position: relative;
    padding-bottom: 60%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    margin: 25px 0;
    background: var(--gray-light);
    contain: layout;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.mini-hero {
    padding: 40px 20px;
}

.mini-hero h1 {
    font-size: 2rem;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.icon-box {
    margin-bottom: 15px;
}

/* Pro Guide Section */
.pro-guide {
    background: linear-gradient(to bottom right, #ffffff, #f1f5f9);
    border-radius: 15px;
    border-left: 5px solid var(--secondary);
    padding: 25px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.guide-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 15px;
}

.guide-badge {
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.pro-guide h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 0;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.check-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 2px;
}

.region-info {
    padding: 25px;
    background: var(--primary-light);
    border-radius: 15px;
    margin: 25px 0;
    border: 1px dashed var(--primary);
}

/* Autocomplete */
.autocomplete-box {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.autocomplete-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--dark);
    border-bottom: 1px solid var(--bg);
    transition: background 0.2s;
}

.autocomplete-item:hover {
    background: var(--primary-light);
}

.autocomplete-item span {
    font-weight: 600;
}

.autocomplete-item small {
    background: var(--gray-light);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gray);
}

.city-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 2000;
    padding: 8px 0;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.sticky-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gray);
    font-size: 0.7rem;
    font-weight: 600;
    transition: color 0.3s;
}

.sticky-icon {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.sticky-main {
    background: var(--primary);
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    margin-top: -30px;
    box-shadow: 0 4px 15px var(--primary-light);
    border: 4px solid var(--white);
}

.voice-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s;
}

.voice-btn:hover {
    background: var(--gray-light);
}

.voice-btn.recording {
    color: var(--danger);
    animation: pulse 1.5s infinite;
}

/* Dark Mode */
body.dark-mode {
    --bg: #0f172a;
    --white: #1e293b;
    --dark: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #334155;
    color: #f8fafc;
}

body.dark-mode .card, 
body.dark-mode .dropdown-content, 
body.dark-mode .mobile-sticky-bar,
body.dark-mode .autocomplete-box {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .listing-item {
    background: #0f172a;
    border-color: #334155;
}

body.dark-mode .listing-name, 
body.dark-mode .pro-guide h3,
body.dark-mode .info-box h4 {
    color: #f8fafc;
}

body.dark-mode #citySearch {
    background: #0f172a;
    color: white;
    border-color: #334155;
}

.theme-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

/* Emergency Hotlines */
.emergency-hotlines {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 15px;
    padding: 20px;
    margin: 25px 0;
}

.emergency-hotlines h3 {
    color: #e11d48;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.hotline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.hotline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s;
    border: 1px solid #ffe4e6;
}

.hotline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.1);
}

.hotline-item strong {
    color: #e11d48;
    font-size: 1.3rem;
}

.hotline-item span {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Feedback Section */
.feedback-section {
    text-align: center;
    padding: 20px !important;
    background: #f8fafc !important;
}

.feedback-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.btn-feedback {
    background: white;
    border: 1px solid var(--gray-light);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-feedback:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

body.dark-mode .hotline-item {
    background: #311b1b;
    border-color: #4c1d1d;
}

.tag-highlight {
    background: var(--primary-light) !important;
    border-color: var(--primary) !important;
    font-weight: 700;
}

.price-guide-section {
    margin: 25px 0;
}

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

.hero-badge {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Rehber Bölümü Modern Kartları */
.info-box-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-box-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-icon-circle {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.info-box-modern h4 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.1rem;
}

.info-box-modern p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.info-box {
    background: var(--bg);
    padding: 20px;
    border-radius: 12px;
    border-top: 4px solid var(--secondary);
}

.info-box h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-highlight {
    text-align: center;
    padding: 30px 20px !important;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg) 100%);
    border: 1px solid var(--gray-light);
}

.service-highlight:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-highlight h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.service-highlight p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Social Proof */
.social-proof-bar {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    font-weight: 500;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Timeline */
.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 25px 0;
    padding-left: 20px;
}

.step-item {
    position: relative;
    padding-left: 45px;
    padding-bottom: 30px;
    border-left: 2px solid var(--primary-light);
}

.step-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    left: -16px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 0 5px var(--white);
    z-index: 1;
}

.step-content h4 {
    margin: 0 0 5px 0;
    color: var(--dark);
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Prep Checklist */
.prep-checklist {
    background: #fdf2f2;
    border: 2px dashed #f87171;
    border-radius: var(--radius);
    padding: 25px;
    margin: 25px 0;
}

body.dark-mode .prep-checklist {
    background: #2d1616;
    border-color: #7f1d1d;
}

.prep-checklist h3 {
    color: #b91c1c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.prep-item {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}

body.dark-mode .prep-item {
    background: #1e293b;
    color: #f8fafc;
}

/* Seasonal Alert */
.seasonal-alert {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 15px 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
}

body.dark-mode .seasonal-alert {
    background: linear-gradient(135deg, #2d2416 0%, #45301a 100%);
    border-color: #78350f;
    color: #fcd34d;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

@media (max-width: 768px) {
    .timeline-steps {
        padding-left: 15px;
    }
}

.osm-listings h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.listing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.listing-item.no-click {
    cursor: default;
    background: var(--white);
}

.listing-item.no-click:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gray-light);
}

.listing-name {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.4;
    word-break: break-word;
}

.listing-info {
    flex: 1;
    min-width: 0;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.listing-item-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.listing-item-wrapper .listing-item {
    flex: 1;
}

.copy-small-btn {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    padding: 0 12px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.copy-small-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.listing-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.listing-name {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 4px;
}

.listing-type {
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: capitalize;
}

.listing-dist, .listing-eta {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    background: var(--primary-light);
    padding: 2px 6px;
    border-radius: 4px;
}

.listing-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    opacity: 0.5;
}

.listing-item:hover .listing-icon {
    opacity: 1;
}
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    line-height: 1.8;
}

.seo-content h3 {
    color: var(--primary);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.seo-content h3:first-child {
    margin-top: 0;
}

.seo-content p {
    margin-bottom: 15px;
}

.seo-content strong {
    color: var(--dark);
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

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

.faq-item h3 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    color: var(--primary);
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #475569;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--primary);
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
    margin: 5px;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.tag-highlight {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Search Box */
.search-box {
    max-width: 600px;
    margin: -30px auto 30px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.search-box input {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Icon Box */
.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.icon-box svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
    stroke-width: 2;
}

.mini-hero .icon-box svg {
    stroke: var(--white);
}

/* OSM Listings */
.osm-listings {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 2px solid var(--gray-light);
}

/* Location Box */
.location-box {
    text-align: center;
    margin-bottom: 20px;
}

.status-text {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 10px;
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 12px;
    }
    
    .listing-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .listing-item {
        padding: 12px 15px;
    }

    .listing-meta {
        flex-wrap: wrap;
        gap: 6px;
    }

    .listing-item-wrapper {
        gap: 6px;
    }

    .copy-small-btn {
        padding: 0 10px;
    }

    .site-header {
        padding: 30px 15px;
    }
    
    .site-header h1 {
        font-size: 1.8rem;
    }
    
    .site-header p {
        font-size: 1rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h2 {
        font-size: 1.3rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .btn-full {
        max-width: 100%;
    }
    
    .search-box {
        margin: 20px 0;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .site-header h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 15px;
    }

    .listing-item {
        padding: 10px 12px;
    }

    .listing-name {
        font-size: 0.9rem;
    }

    .listing-meta {
        gap: 4px;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    loading: lazy;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

/* Status Badges */
.status-open {
    color: #10b981;
    font-weight: 700;
}

.status-24h {
    color: #f59e0b;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.btn-dark {
    background: #1e293b !important;
    color: white !important;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline-block;
    }
    
    .action-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}

.cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-banner button:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* === 2026 Mobil & Nav İyileştirmeleri === */
.mobile-only { display: none; }
.desktop-only { display: inline-block; }

@media (max-width: 768px) {
    .mobile-only { display: flex; }
    .desktop-only { display: none !important; }
    .mobile-hide { display: none !important; }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-sticky-bar {
        display: flex;
        padding-bottom: env(safe-area-inset-bottom, 8px);
    }

    .scroll-top-btn {
        bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    }

    .header-container {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.25);
        color: white;
        font-size: 1.4rem;
        padding: 6px 12px;
        border-radius: 8px;
        cursor: pointer;
        margin-left: auto;
    }

    .site-header {
        position: relative;
        border-radius: 0 0 20px 20px;
    }

    .site-header .hero {
        padding: 30px 15px;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .breadcrumb {
        font-size: 0.8rem;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .map-container iframe {
        width: 100%;
        max-width: 100%;
        min-height: 280px;
    }

    .featured-image-container img {
        max-width: 100%;
        height: auto;
    }

    .social-proof-bar, .info-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cookie-banner {
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--white);
    z-index: 3000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}

.mobile-drawer.open {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary);
    color: white;
}

.drawer-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-links a,
.drawer-section a {
    display: block;
    padding: 14px 20px;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-light);
    font-weight: 500;
}

.drawer-section {
    padding: 10px 0;
}

.drawer-label {
    display: block;
    padding: 10px 20px 5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2999;
}

.drawer-overlay.visible {
    display: block;
}

body.dark-mode .mobile-drawer {
    background: #1e293b;
}

body.dark-mode .drawer-links a,
body.dark-mode .drawer-section a {
    color: #f8fafc;
    border-color: #334155;
}

img, video, iframe, .map-container {
    max-width: 100%;
}

.listing-name {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

@media (max-width: 480px) {
    .error-code {
        font-size: 5rem;
    }

    .sticky-text {
        font-size: 0.6rem;
    }

    .sticky-main {
        width: 52px;
        height: 52px;
        margin-top: -24px;
    }
}

/* Birleşik arama vurgusu */
.suggestion-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.04));
    border-left: 3px solid var(--primary);
}

.suggestion-highlight .suggestion-title {
    color: var(--primary);
    font-weight: 600;
}

/* İlçe sayfası — katlanır kategoriler */
.category-details {
    margin-bottom: 12px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.category-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    list-style: none;
    user-select: none;
    transition: background 0.2s;
}

.category-summary::-webkit-details-marker {
    display: none;
}

.category-summary::before {
    content: '▸';
    margin-right: 10px;
    font-size: 0.85rem;
    color: var(--gray);
    transition: transform 0.2s;
}

.category-details[open] .category-summary::before {
    transform: rotate(90deg);
}

.category-summary:hover {
    background: var(--gray-light);
}

.cat-count {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    background: var(--gray-light);
    padding: 2px 10px;
    border-radius: 20px;
}

.category-services {
    padding: 0 16px 16px;
}

.empty-search-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

.empty-search-state .empty-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

/* OSM boş sonuç fallback */
.osm-empty-fallback {
    padding: 24px;
    background: var(--gray-light);
    border-radius: var(--radius);
    border: 1px dashed var(--gray);
}

.osm-empty-fallback h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.osm-empty-desc {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.osm-locate-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.maps-search-footer {
    margin-top: 20px;
    text-align: center;
}

.neighbor-districts {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.neighbor-districts h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--dark);
}

body.dark-mode .category-details {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .category-summary {
    color: #f8fafc;
}

body.dark-mode .category-summary:hover {
    background: #334155;
}

body.dark-mode .osm-empty-fallback {
    background: #1e293b;
    border-color: #475569;
}

body.dark-mode .suggestion-highlight {
    background: rgba(59, 130, 246, 0.15);
}
