/* Breadcrumbs - Visual SEO */
.breadcrumb-nav {
    padding: 1rem 0;
    margin-top: 80px; /* Navbar space */
    font-size: 0.85rem;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    list-style: none;
    color: var(--text-muted);
}

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

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-right: 10px;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

:root {
    --primary-color: #00FF41; /* Recycling Green */
    --secondary-color: #C0C0C0; /* Metallic Silver */
    --dark-bg: #121212;
    --darker-bg: #080808;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --light-text: #FFFFFF; /* Geri eklenen kritik değişken */
    --accent-color: #FFD700;
    --transition: all 0.3s ease;
}

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

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo svg {
    transition: var(--transition);
}

.logo:hover svg {
    transform: rotate(180deg) scale(1.1);
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.premium-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.premium-title span {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.premium-p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #ccc;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    margin-right: 1.5rem;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 65, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-5px);
}

/* Emergency Call Section - SEO Power */
.emergency-call {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    border-bottom: 2px solid var(--primary-color);
}

.emergency-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.emergency-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.emergency-text p {
    color: #fff;
    font-size: 1.1rem;
}

.btn-emergency {
    background: var(--primary-color);
    color: #000;
    padding: 1.5rem 3rem;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 255, 65, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 65, 0); }
}

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

/* Pricing Table (Decompressed & Modern) */
.pricing {
    padding: 10rem 0;
    background-color: var(--darker-bg);
}

.price-table-container {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 65, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow-x: auto;
}

.premium-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.8rem;
    text-align: left;
    min-width: 700px;
}

.premium-price-table th {
    padding: 1.5rem 2rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(0, 255, 65, 0.2);
}

.premium-price-table td {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-price-table td:first-child {
    border-radius: 15px 0 0 15px;
    font-size: 1.1rem;
}

.premium-price-table td:last-child {
    border-radius: 0 15px 15px 0;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.premium-price-table tr:hover td {
    background: rgba(0, 255, 65, 0.05);
    color: #fff;
    cursor: default;
}

.price-footer-note {
    margin-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.price-footer-note i {
    color: var(--primary-color);
}

/* Quote Section - Decompressed & Modern */
.quote-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, #050505 0%, #111 100%);
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

.quote-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.quote-content {
    text-align: left;
    max-width: 650px;
    margin: 0;
}

.quote-content h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.quote-content p {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 0;
}

.quote-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 300px;
}

.quote-actions .btn {
    text-align: center;
    padding: 1.5rem;
}

@media (max-width: 968px) {
    .quote-section { padding: 8rem 0; }
    .quote-section .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .quote-content { text-align: center; max-width: 100%; }
    .quote-content h2 { font-size: 2.8rem; }
    .quote-actions { width: 100%; min-width: unset; }
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--darker-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    filter: grayscale(0.5) contrast(1.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.sub-title {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #aaa;
    font-size: 1.1rem;
}

/* Services */
.services {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto;
}

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

.service-card {
    background: var(--glass-bg);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #888;
}

/* Floating Buttons */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1001;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-wa { background-color: #25d366; }
.float-call { background-color: #007bff; }

.float-btn:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 6rem 0 2rem;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-info p {
    margin-top: 1.5rem;
    color: #666;
    max-width: 400px;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-contact p {
    color: #888;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Corporate Index & Table V6 */
.corporate-index {
    padding: 10rem 0;
    background: #080808;
}

.index-container {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
}

.table-wrapper {
    flex: 2;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.corporate-table {
    width: 100%;
    border-collapse: collapse;
}

.corporate-table th {
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary-color);
    padding: 1.5rem;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.corporate-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #bbb;
    font-size: 1rem;
    transition: 0.3s;
    cursor: pointer;
}

.corporate-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: var(--primary-color);
}

.corporate-table tr.active-row td {
    background: rgba(0, 255, 65, 0.05);
    border-left: 3px solid var(--primary-color);
    color: #fff;
}

.corporate-table td strong { color: #fff; }

/* Analysis Segment Sidebar */
.analysis-segment {
    flex: 1;
    background: #111;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: fadeInRight 0.6s ease;
}

@keyframes fadeInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.segment-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 2rem;
}

.segment-header i { font-size: 3rem; color: var(--primary-color); }
.segment-header h3 { font-size: 1.8rem; color: #fff; margin: 0; }

.segment-group { margin-bottom: 2rem; }
.segment-group label {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.segment-group p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.segment-footer { margin-top: 2.5rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Mobile Adaptability for V6 */
@media (max-width: 992px) {
    .index-container { flex-direction: column; }
    .analysis-segment { position: relative; top: 0; order: -1; }
    .corporate-table th:nth-child(3), 
    .corporate-table td:nth-child(3) { display: none; }
}

/* Regional Badges & Chips V7 */
.region-badge {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.4);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.analysis-segment .chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.bg-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
}

.bg-chip:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

/* SEO Overdrive Section V8 */
.overdrive-section {
    padding: 10rem 0;
    background: #050505;
}

.faq-accordion {
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 2rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--primary-color);
    transition: 0.3s;
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
    display: none;
    animation: fadeIn 0.4s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    background: rgba(0, 255, 65, 0.03);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Borsa Table V10 Extras */
.table-live-header {
    background: #000;
    padding: 1.2rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(0, 255, 65, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: 1.5px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0000;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.price-val {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    transition: 0.5s;
    display: inline-block;
}

.price-up {
    color: #00ff41 !important;
    text-shadow: 0 0 15px #00ff41;
}

.price-down {
    color: #ff0000 !important;
    text-shadow: 0 0 15px #ff0000;
}

.region-chip {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.borsa-table td {
    padding: 1.2rem 1.5rem;
}

/* Mobile Overdrive (V14) - Responsive Master Queries */
@media (max-width: 991px) {
    .premium-title { font-size: 2.8rem; }
    .index-container { flex-direction: column; gap: 2rem; }
    .table-wrapper { width: 100%; border-right: none; border-bottom: 2px solid rgba(0, 255, 65, 0.1); }
    .info-display-segment { width: 100%; min-height: auto; }
    .expertise-snippet { flex-direction: column; text-align: center; }
    .snippet-image { width: 100%; margin-top: 1rem; }
}

@media (max-width: 768px) {
    .premium-title { font-size: 2.2rem; }
    .hero { padding: 120px 0 60px; }
    
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.2rem;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 12px;
    }
    
    .borsa-table {
        min-width: 100%; /* Changed from 600px to ensure full fit */
        font-size: 0.85rem;
    }

    /* Hide serial number column on mobile to save space */
    .borsa-table th:nth-child(1),
    .borsa-table td:nth-child(1) {
        display: none;
    }

    .borsa-table td {
        padding: 0.8rem 0.6rem;
    }

    .table-live-header { font-size: 0.72rem; padding: 0.8rem; }
    
    .price-val { 
        font-size: 1.1rem; /* Slightly larger for visibility */
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .price-cell {
        min-width: auto;
        white-space: nowrap;
    }

    /* REGIONAL MATRIX STYLES */
    .regions-matrix {
        padding: 80px 0;
        background: #0a0a0a;
        border-top: 1px solid #222;
    }
    .regions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        margin-top: 20px;
    }
    .region-col h4 {
        color: var(--neon-green);
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #333;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .region-list {
        list-style: none;
        padding: 0;
    }
    .region-list li {
        margin-bottom: 12px;
    }
    .region-list a {
        color: #888;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }
    .region-list a:hover {
        color: var(--neon-green);
        padding-left: 5px;
    }
    
    @media (max-width: 768px) {
        .regions-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .region-col h4 {
            margin-top: 30px;
        }
    }

    /* EXPERTISE HUB INTERACTIVE STYLES */
    .snippet-link {
        text-decoration: none;
        color: inherit;
        display: block;
        transition: transform 0.3s ease;
    }
    .expertise-snippet:hover .snippet-link {
        transform: translateX(10px);
    }
    .read-more {
        display: inline-block;
        color: var(--neon-green);
        font-weight: 600;
        font-size: 0.9rem;
        margin-top: 10px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }
    .expertise-snippet:hover .read-more {
        opacity: 1;
        text-decoration: underline;
    }

    /* NAVBAR BUTTON HIGHLIGHT */
    .nav-btn-highlight {
        background: var(--neon-green) !important;
        color: #000 !important;
        padding: 10px 20px !important;
        border-radius: 50px !important;
        font-weight: 800 !important;
        transition: 0.3s ease !important;
        box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
    }
    .nav-btn-highlight:hover {
        background: #fff !important;
        box-shadow: 0 0 25px rgba(0, 255, 65, 0.7);
        transform: scale(1.05);
    }

    /* CALCULATOR SECTION STYLES - ULTRA LUXURY V22 */
    .calculator-section {
        padding: 100px 0;
        background: radial-gradient(circle at top right, #111, #050505);
        border-top: 1px solid var(--glass-border);
    }
    .calc-wrapper {
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        padding: 80px;
        box-shadow: 0 50px 100px rgba(0,0,0,0.8);
        position: relative;
        overflow: hidden;
    }
    .calc-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 255, 65, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }
    .calc-header { text-align: center; margin-bottom: 60px; position: relative; }
    .calc-header i { font-size: 4rem; color: var(--neon-green); margin-bottom: 25px; filter: drop-shadow(var(--neon-glow)); }
    .calc-header h2 { font-size: 3.5rem; color: #fff; font-weight: 800; letter-spacing: -2px; margin-bottom: 15px; }
    .calc-header p { color: #aaa; font-size: 1.3rem; font-weight: 300; }

    .calc-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
        align-items: center;
        position: relative;
    }
    .input-group { margin-bottom: 35px; }
    .input-group label { display: block; color: #eee; font-weight: 600; margin-bottom: 15px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
    .input-group label i { color: var(--neon-green); margin-right: 12px; }

    .premium-select, .premium-input {
        width: 100%;
        background: rgba(0,0,0,0.4) !important;
        border: 2px solid var(--glass-border) !important;
        padding: 25px;
        border-radius: 20px;
        color: #fff !important;
        font-size: 1.3rem;
        font-weight: 600;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .premium-select:focus, .premium-input:focus {
        border-color: var(--neon-green) !important;
        box-shadow: var(--neon-glow);
        transform: translateY(-2px);
        outline: none;
    }

    .calc-result-card {
        background: linear-gradient(135deg, rgba(0, 255, 65, 0.08), rgba(0, 0, 0, 0.2));
        border: 2px solid rgba(0, 255, 65, 0.2);
        border-radius: 40px;
        padding: 60px;
        text-align: center;
        transition: 0.5s;
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }
    .calc-result-card:hover { border-color: var(--neon-green); transform: scale(1.02); }
    .result-label { color: #aaa; text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 15px; font-weight: 600; }
    .result-value { color: var(--neon-green); font-size: 5.5rem; font-weight: 900; margin-bottom: 25px; text-shadow: 0 0 40px rgba(0, 255, 65, 0.6); }
    .result-note { color: #555; font-size: 0.85rem; line-height: 1.6; margin-bottom: 35px; }

    /* MOBILE PRECISION (Responsive Overdrive) */
    @media (max-width: 992px) {
        .calc-grid { grid-template-columns: 1fr; gap: 50px; }
        .calc-wrapper { padding: 50px 30px; border-radius: 30px; }
        .calc-header h2 { font-size: 2.5rem; }
        .result-value { font-size: 4rem; }
    }

    @media (max-width: 768px) {
        .navbar .container { padding: 0 20px; }
        .premium-title { font-size: 2.2rem !important; }
        .premium-p { font-size: 1rem !important; }
        
        .pricing-table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
        .premium-price-table { min-width: 600px; }
        
        .calc-wrapper { padding: 30px 20px; }
        .calc-header h2 { font-size: 2rem; }
        .premium-select, .premium-input { padding: 18px; font-size: 1.1rem; }
        .result-value { font-size: 3rem; }
        .btn-whatsapp-calc { width: 100%; padding: 18px; font-size: 1rem; }
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .market-summary-snippet {
        background: rgba(0, 255, 65, 0.05);
        border: 1px solid var(--neon-green);
        padding: 20px;
        border-radius: 15px;
        margin: 20px 0;
    }

    .emergency-flex { flex-direction: column; text-align: center; gap: 1.5rem; }
    
    .pricing { padding: 4rem 0; }
    .premium-price-table { min-width: 500px; }
    .price-table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
    .premium-title { font-size: 1.8rem; }
    .btn { width: 100%; margin-bottom: 10px; }
    .nav-links { display: none; } /* Standard Mobile Menu Simplification */
}

/* Expertise Snippets V8 - Visualized */
.expertise-list {
    margin-top: 3rem;
}

.expertise-snippet {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.expertise-snippet:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.snippet-content {
    flex: 1;
}

.snippet-content h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.snippet-content p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.snippet-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.expertise-snippet:hover .snippet-image img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .expertise-snippet { padding: 1.5rem; gap: 1.5rem; }
}

@media (max-width: 576px) {
    .expertise-snippet { flex-direction: column-reverse; align-items: flex-start; text-align: left; }
    .snippet-image { width: 100%; height: 200px; }
}

@media (max-width: 768px) {
    .expertise-grid { grid-template-columns: 1fr; }
    .overdrive-section { padding: 6rem 0; }
}

/* Topic Clusters - Authority Section */
.topic-clusters {
    padding: 8rem 0;
    background: #0d0d0d;
}

.cluster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.cluster-card {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cluster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.cluster-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.cluster-card:hover::before {
    transform: scaleX(1);
}

.cluster-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cluster-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cluster-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

/* Technical Expertise Table - E-E-A-T / SEO Booster */
.technical-expertise {
    padding: 8rem 0;
    background: #050505;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
}

.expertise-table-wrapper {
    margin-top: 4rem;
    overflow-x: auto;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.expertise-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: left;
}

.expertise-table th {
    background: rgba(0, 255, 65, 0.05);
    padding: 2rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.expertise-table td {
    padding: 1.8rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #bbb;
    font-size: 1rem;
}

.expertise-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

    /* ANALYSIS PAGE & DATA TERMINAL STYLES (V23) */
    .analysis-page { background: #050505; }
    .analysis-hero { padding: 120px 0 80px; background: radial-gradient(circle at center, #111 0%, #050505 100%); border-bottom: 1px solid rgba(255,255,255,0.05); }
    
    .analysis-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 50px;
        margin-top: -60px;
        position: relative;
        z-index: 10;
    }

    .analysis-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 30px;
        padding: 50px;
        margin-bottom: 40px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }
    .card-tag { 
        display: inline-block; 
        background: rgba(0,255,65,0.1); 
        color: var(--neon-green); 
        padding: 6px 15px; 
        border-radius: 5px; 
        font-size: 0.8rem; 
        font-weight: 800; 
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    .analysis-card h2 { font-size: 2.5rem; margin-bottom: 15px; color: #fff; line-height: 1.2; }
    .analysis-meta { color: #555; font-size: 0.9rem; margin-bottom: 30px; display: flex; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
    .analysis-meta i { color: var(--neon-green); margin-right: 5px; }

    .analysis-content p { font-size: 1.15rem; line-height: 1.8; color: #ccc; margin-bottom: 25px; }
    .featured-img { width: 100%; border-radius: 20px; margin: 30px 0; border: 1px solid rgba(255,255,255,0.1); }
    .analysis-content h3 { font-size: 1.8rem; color: #fff; margin: 40px 0 20px; border-left: 4px solid var(--neon-green); padding-left: 20px; }
    
    blockquote {
        background: rgba(255,255,255,0.03);
        border-left: 5px solid var(--neon-green);
        padding: 30px;
        font-style: italic;
        font-size: 1.4rem;
        color: #fff;
        margin: 40px 0;
        border-radius: 0 20px 20px 0;
    }

    .data-box {
        background: #000;
        border: 1px solid var(--neon-green);
        border-radius: 15px;
        padding: 25px;
        margin: 30px 0;
        display: flex;
        justify-content: space-around;
    }
    .data-item { text-align: center; }
    .data-item .label { display: block; color: #666; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 5px; }
    .data-item .value { font-size: 1.5rem; font-weight: 800; }
    .text-up { color: #00ff41; }
    .text-down { color: #ff3b3b; }
    .text-neutral { color: #aaa; }

    /* Sidebar Widgets */
    .sidebar-widget {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 25px;
        padding: 30px;
        margin-bottom: 30px;
    }
    .sidebar-widget h3 { font-size: 1.3rem; color: #fff; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
    .sidebar-widget h3 i { color: var(--neon-green); }

    .live-ticker { display: flex; flex-direction: column; gap: 15px; }
    .ticker-item { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .ticker-item span { color: #888; }

    .code-snippet {
        background: #000;
        padding: 15px;
        border-radius: 10px;
        font-family: monospace;
        font-size: 0.8rem;
        color: var(--neon-green);
        margin: 20px 0;
        word-break: break-all;
    }

    @media (max-width: 992px) {
        .analysis-grid { grid-template-columns: 1fr; margin-top: 20px; }
        .analysis-card { padding: 30px; }
        .analysis-card h2 { font-size: 1.8rem; }
        blockquote { font-size: 1.1rem; }
    }

.expertise-note {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 1px;
}

.expertise-table strong {
    color: var(--primary-color);
}

/* Mobile Adjustments for V5 */
@media (max-width: 768px) {
    .expertise-table th, .expertise-table td {
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Regional Marquee - Back to Original 'Ghost Text' Look */
.marquee-section {
    background: #050505;
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    user-select: none;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.marquee-content {
    display: flex;
    animation: marquee-infinite 50s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.region-chip {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-right: 5rem !important; /* Eskisi gibi geniş boşluk */
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 800;
    font-size: 1.5rem; /* Orijinal büyük font */
    color: rgba(255, 255, 255, 0.08); /* Çok silik, dikkat çekmeyen hayalet yazı */
    display: inline-block;
    letter-spacing: 2px;
}

.region-chip:hover {
    color: var(--primary-color) !important;
    transform: scale(1.1);
    opacity: 1;
}

/* District Modal - Mobile Optimized & Safari Compatible */
.district-modal {
    display: none;
    position: fixed;
    z-index: 9999; /* En üstte durması için */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    -webkit-backdrop-filter: blur(10px); /* iOS Safari Fix */
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 15px; /* Mobilde kenara yapışmasın */
}

.modal-content {
    background: linear-gradient(135deg, #121212 0%, #050505 100%);
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(0, 255, 65, 0.3);
    width: 100%;
    max-width: 450px;
    max-height: 90vh; /* Çok uzun içerikte ekrandan taşmasın */
    overflow-y: auto; /* İçerik taşarsa kendi içinde kaysın */
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    -webkit-animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 1.2rem;
    top: 1rem;
    color: #fff;
    font-size: 1.8rem;
    padding: 10px; /* Dokunma alanı genişletildi */
    cursor: pointer;
    opacity: 0.6;
}

/* Mobile Pricing Table Optimization */
@media (max-width: 768px) {
    .premium-price-table td {
        padding: 1.2rem 1rem;
        font-size: 0.9rem;
    }
    
    .region-chip {
        margin-right: 3rem !important; /* Mobilde daha sıkışık olması okumayı kolaylaştırır */
        font-size: 1.2rem;
    }
    
    .marquee-section {
        padding: 1.5rem 0;
    }
}

/* iOS Smooth Scroll Fix */
html {
    -webkit-overflow-scrolling: touch;
}

/* Expertise/Knowledge Base Section - Featured Snippet Booster */
.seo-knowledge-base {
    padding: 6rem 0;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.kb-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.kb-item p {
    line-height: 1.9;
    color: #ccc;
}

.kb-item em {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 700;
}

/* SEO Content Booster */
.seo-text-block h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.seo-text-block p {
    font-size: 1.2rem;
    line-height: 2;
    opacity: 0.7;
}

/* Responsive KB */
@media (max-width: 768px) {
    .kb-grid {
        grid-template-columns: 1fr;
    }
}
.regions {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #121212, #0a0a0a);
    width: 100%;
    overflow: hidden;
}

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

.region-col h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.region-col p {
    color: #888;
    line-height: 1.8;
}

.seo-tagline {
    margin-top: 4rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
}

/* Footer Bottom Updates */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
}

/* Why Us Section */
.why-us {
    padding: 8rem 0;
    background-color: var(--dark-bg);
}

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

.why-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-item p {
    color: #999;
}

/* SEO Content */
.seo-content {
    padding: 5rem 0;
    background-color: #0d0d0d;
}

.seo-content h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.seo-content p {
    margin-bottom: 1.5rem;
    color: #888;
    max-width: 900px;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background-color: var(--darker-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-item {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

.faq-item p {
    color: #777;
}

/* SEO Text Block */
.seo-text-block {
    padding: 6rem 0;
    background-color: var(--darker-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-text-block h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.seo-text-block p {
    color: #888;
    max-width: 900px;
    line-height: 1.8;
}

/* Updated Responsive */
@media (max-width: 968px) {
    .premium-title { font-size: 2.8rem; }
    .about-grid, .services-grid, .footer-grid, .why-us-grid, .faq-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .region-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .hero-content { text-align: center; }
    .btn { width: 100%; margin: 0.5rem 0; }
    .hero-btns { display: flex; flex-direction: column; }
    .section-header h2 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .premium-title { font-size: 2.2rem; }
    .container { padding: 0 1.5rem; }
    .logo { font-size: 1.4rem; gap: 8px; }
    .logo svg { width: 35px; height: 35px; }
    .about-text h2 { font-size: 1.8rem; }
    .section-header h2 { font-size: 2rem; }
    .cat-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1rem; }
    .floating-contact { right: 1rem; bottom: 1rem; }
    .footer-grid { gap: 2rem; }
}

/* AUTHORITY INDEX STYLES (V24) */
.authority-index { padding: 100px 0; background: #050505; border-top: 1px solid rgba(255,255,255,0.05); }
.index-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    margin-top: 60px; 
}
.index-column h4 { 
    color: var(--neon-green); 
    font-size: 1.4rem; 
    margin-bottom: 30px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border-bottom: 2px solid rgba(0, 255, 65, 0.1); 
    padding-bottom: 15px; 
}
.index-column ul { list-style: none; }
.index-column li { margin-bottom: 15px; }
.index-column a { 
    color: #888; 
    text-decoration: none; 
    font-size: 1.05rem; 
    transition: 0.3s; 
    display: block;
    padding: 8px 15px;
    border-radius: 8px;
    border-left: 2px solid transparent;
}
.index-column a:hover { 
    color: #fff; 
    background: rgba(255,255,255,0.03); 
    border-left-color: var(--neon-green);
    transform: translateX(10px);
}

.faq-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--neon-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-link:hover {
    color: #fff;
    border-bottom-color: var(--neon-green);
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .index-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Fix for AOS potential overflow */
[data-aos] {
    /* pointer-events: none; REMOVED AS IT BLOCKS CLICKS */
}
.aos-animate {
    pointer-events: auto;
}
/* MARKET SUMMARY SNIPPET STYLES (V23) */
    .market-summary-snippet { padding: 40px 0; background: #000; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 100; }
    .summary-box { 
        background: linear-gradient(90deg, #111, #050505); 
        border: 1px solid var(--glass-border); 
        border-radius: 25px; 
        padding: 40px; 
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        gap: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .summary-content { flex: 1; }
    .live-badge { 
        background: #00ff41; 
        color: #000; 
        padding: 4px 12px; 
        border-radius: 4px; 
        font-size: 0.75rem; 
        font-weight: 800; 
        margin-bottom: 15px; 
        display: inline-block;
        animation: pulse-badge 2s infinite;
    }
    .summary-content h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
    .summary-content p { color: #888; line-height: 1.6; max-width: 800px; }
    
    @keyframes pulse-badge {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.05); opacity: 0.8; }
        100% { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 768px) {
        .summary-box { flex-direction: column; text-align: center; padding: 30px; }
        .summary-content h3 { font-size: 1.3rem; }
    }

    /* V29 Mobile Overdrive Fixes */
    @media (max-width: 992px) {
        .index-container { flex-direction: column; }
        .table-wrapper { width: 100%; order: 1; }
        .analysis-segment { width: 100%; order: 2; margin-top: 30px; }
        .services-grid { grid-template-columns: 1fr; }
        .about-grid { grid-template-columns: 1fr; text-align: center; }
        .footer-grid { grid-template-columns: 1fr; text-align: center; }
        .premium-title { font-size: 2.5rem; }
        .navbar .container { flex-direction: column; gap: 15px; }
        .nav-links { gap: 10px; flex-wrap: wrap; justify-content: center; padding: 0; }
        .nav-links li a { margin-left: 0; padding: 5px 10px; font-size: 0.8rem; }
    }

    @media (max-width: 768px) {
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .borsa-table {
            min-width: 600px; /* Ensure columns don't crush too much */
        }
        .container { padding: 0 1.5rem; }
        .premium-title { font-size: 2.2rem; }
        .section-header h2 { font-size: 2.5rem; }
    }

    @media (max-width: 480px) {
        .emergency-text h3 { font-size: 1.4rem; }
        .btn-emergency { padding: 1.2rem 2rem; font-size: 1rem; }
        .price-val { font-size: 1rem; }
    }
