:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --success: #10b981;
    --dark: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --blue: #3b82f6;
    --orange: #f97316;
    --red: #ef4444;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
}

/* VIEWPORT FIX FOR MOBILE */
html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark);
}

.logo i {
    color: var(--primary);
    font-size: 1.6rem;
}

.logo small {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 2px;
    font-weight: 600;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    font-weight: 500;
    color: var(--gray);
    font-size: 0.95rem;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.menu a:hover {
    color: var(--primary);
}

.menu a:hover::after {
    width: 100%;
}

/* MOBİL MENÜ AKTİF DURUMU */
@media (max-width: 992px) {
    .menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 999;
        gap: 0;
    }
    
    .menu.active {
        display: flex !important;
    }
    
    .menu a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border);
        font-size: 1.05rem;
    }
    
    .menu a:last-child {
        border-bottom: none;
    }
    
    .menu a::after {
        display: none;
    }
}

.nav-btn {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-lg);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(37, 99, 235, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.green {
    background: var(--success);
    color: white;
}

.btn.green:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn.white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn.white:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn.dark {
    background: var(--dark);
    color: white;
}

.btn.dark:hover {
    background: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.4);
}

/* ==================== SERVICES ==================== */
.services {
    padding: 100px 0;
    background: white;
    overflow-x: hidden;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark);
}

.sub {
    text-align: center;
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 60px;
}

.cards-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-lg);
    border-color: var(--primary);
    background: white;
}

.card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
}

.card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.services-h3 {
    text-align: center;
    font-size: 2rem;
    margin: 60px 0 40px;
    color: var(--dark);
    font-weight: 800;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px var(--shadow-lg);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
}

.arrow {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.service-card:hover .arrow {
    gap: 15px;
}

/* ==================== CONTENT AREA ==================== */
.content-area {
    padding: 80px 0;
    background: var(--light);
    overflow-x: hidden;
    width: 100%;
}

.layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    width: 100%;
    max-width: 100%;
}

.main {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ==================== ARTICLE STYLES ==================== */
.article {
    color: #334155;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border);
}

.article h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--dark);
}

.article-meta {
    display: flex;
    gap: 25px;
    align-items: center;
    color: var(--gray);
    font-size: 0.95rem;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lead-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary);
}

.lead {
    font-size: 1.25rem !important;
    font-weight: 500;
    line-height: 1.8;
    color: #1e293b;
    margin-bottom: 25px !important;
}

.lead mark {
    background: #fef3c7;
    padding: 2px 6px;
    border-radius: 4px;
}

.quick-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.qc-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.qc-btn.phone {
    background: var(--dark);
    color: white;
}

.qc-btn.whatsapp {
    background: var(--success);
    color: white;
}

.qc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-lg);
}

.content-section {
    margin: 60px 0;
}

.article h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 50px 0 25px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.article h2 i {
    color: var(--primary);
    font-size: 1.8rem;
}

.article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 35px 0 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.article h3 i {
    color: var(--primary);
}

.article h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--dark);
}

.article p {
    margin-bottom: 25px;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.8;
}

.inline-link {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.inline-link:hover {
    border-bottom-color: var(--primary);
}

.content-img {
    width: 100%;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 35px;
    border-radius: 15px;
    margin: 35px 0;
    border-left: 5px solid #f59e0b;
}

.highlight-box.bonus {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-left-color: var(--blue);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 15px 20px;
    margin-bottom: 12px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px var(--shadow);
}

.check-list i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 3px;
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.area-card {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 15px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px var(--shadow);
}

.area-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.area-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.area-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

.capacity-table {
    margin: 35px 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.capacity-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.capacity-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.capacity-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
}

.capacity-table td {
    padding: 18px 15px;
    border-bottom: 1px solid var(--border);
}

.capacity-table tbody tr {
    background: white;
    transition: background 0.2s;
}

.capacity-table tbody tr:hover {
    background: var(--light);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.info-box {
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.info-box.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.info-box.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.info-box.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.info-box.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.info-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.info-box h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: white;
}

.info-box p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.location-section {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--border);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.location-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.district-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    background: var(--light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    color: var(--gray);
}

.chip.more {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    font-weight: 600;
}

.pricing-section {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 50px;
    border-radius: 20px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.price-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.badge-top {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.price-header {
    padding: 30px;
    text-align: center;
    background: var(--light);
}

.price-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.price-header h3 {
    font-size: 1.4rem;
    margin: 0;
    color: var(--dark);
}

.price-card ul {
    list-style: none;
    padding: 25px 30px;
}

.price-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--gray);
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-action {
    padding: 0 30px 30px;
}

.price-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.bonus-item {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
}

.bonus-item i {
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.faq-section {
    margin: 60px 0;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-q {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    font-size: 1.15rem;
    background: var(--light);
}

.faq-q i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-q i {
    transform: translateX(5px);
}

.faq-a {
    padding: 0 30px 25px;
}

.faq-a p {
    margin: 0;
    color: #475569;
}

.final-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 60px 0;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: white;
    opacity: 0.95;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.cta-btn.green {
    background: var(--success);
    color: white;
}

.cta-btn.green:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.cta-btn.dark {
    background: white;
    color: var(--primary);
}

.cta-btn.dark:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    border: 2px solid var(--border);
}

.widget.sticky {
    position: sticky;
    top: 100px;
}

.widget h3 {
    font-size: 1.35rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 800;
}

.widget h3 i {
    color: var(--primary);
}

.widget h4 {
    font-size: 1.1rem;
    margin: 20px 0 15px;
    color: var(--primary);
    font-weight: 700;
}

.search-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 5px;
}

.links::-webkit-scrollbar {
    width: 8px;
}

.links::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

.links::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.links::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

.city-link,
.district-link {
    padding: 14px 18px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.city-link:hover,
.district-link:hover {
    background: var(--primary);
    color: white;
    padding-left: 25px;
    border-color: var(--primary);
}

.city-link i,
.district-link i {
    font-size: 0.85rem;
}

.districts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.neighborhoods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 12px 0 15px 25px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.neighborhoods a {
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--border);
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.neighborhoods a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.w-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.w-btn.dark {
    background: var(--dark);
    color: white;
}

.w-btn.dark:hover {
    background: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-lg);
}

.w-btn.green {
    background: var(--success);
    color: white;
}

.w-btn.green:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.w-btn.blue {
    background: var(--blue);
    color: white;
}

.w-btn.blue:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* ==================== REVIEWS ==================== */
.reviews {
    padding: 100px 0;
    background: var(--light);
    overflow-x: hidden;
}

.reviews h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-lg);
    border-color: var(--primary);
}

.r-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.r-header > div:first-child {
    display: flex;
    gap: 18px;
    align-items: center;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    flex-shrink: 0;
}

.r-header h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--dark);
    font-weight: 700;
}

.r-header span {
    font-size: 0.9rem;
    color: var(--gray);
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.15rem;
}

.review p {
    font-style: italic;
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.f-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.f-grid h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.f-grid h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.f-grid p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 15px;
}

.f-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.f-grid a:hover {
    color: white;
    padding-left: 12px;
}

.f-grid a i {
    margin-right: 10px;
    color: var(--primary);
}

.f-keywords {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.f-keywords strong {
    color: white;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.f-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.f-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.f-bottom a:hover {
    color: white;
}

/* ==================== MOBILE BAR ==================== */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -2px 10px var(--shadow);
}

.m-btn {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--dark);
    font-size: 1.05rem;
}

.m-btn.green {
    background: var(--success);
}

.m-btn i {
    font-size: 1.2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .layout {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 992px) {
    .menu,
    .nav-btn {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        height: auto;
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .layout {
        grid-template-columns: 1fr;
    }
    
    .main {
        padding: 30px 25px;
    }
    
    .article h1 {
        font-size: 2rem;
    }
    
    .article h2 {
        font-size: 1.6rem;
    }
    
    .final-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-btns,
    .hero-btns {
        flex-direction: column;
    }
    
    .mobile-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .neighborhoods {
        grid-template-columns: 1fr;
    }
    
    .capacity-table {
        overflow-x: auto;
    }
    
    .capacity-table table {
        min-width: 600px;
    }
    
    /* MOBİL İÇİN OVERFLOW DÜZELTMELERİ */
    .container,
    .container-wide {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .article,
    .main,
    .widget {
        overflow-x: hidden;
    }
    
    pre,
    code {
        overflow-x: auto;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    .services h2,
    .reviews h2 {
        font-size: 2rem;
    }
    
    .cards-4,
    .cards-3,
    .service-areas,
    .pricing-cards,
    .bonus-grid,
    .info-boxes {
        grid-template-columns: 1fr;
    }
    
    .main {
        padding: 20px;
    }
    
    .article h1 {
        font-size: 1.6rem;
        word-wrap: break-word;
    }
    
    .article h2 {
        font-size: 1.4rem;
        word-wrap: break-word;
    }
    
    .widget {
        padding: 20px;
    }
    
    .final-cta {
        padding: 30px 20px;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    /* MOBİL OVERFLOW DÜZELTMELERİ */
    .container,
    .container-wide {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .btn,
    .cta-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .lead {
        font-size: 1.1rem !important;
    }
    
    .article p {
        font-size: 1rem;
    }
    
    /* Tablo mobilde scroll */
    .capacity-table {
        margin-left: -10px;
        margin-right: -10px;
        padding: 0 10px;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.service-card,
.review,
.area-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ==================== GLOBAL OVERFLOW FIX ==================== */
.row,
.grid,
[class*="cards-"],
[class*="grid"] {
    width: 100%;
    max-width: 100%;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .nav,
    .hero,
    .sidebar,
    .mobile-bar,
    .footer {
        display: none;
    }
    
    .main {
        box-shadow: none;
        padding: 0;
    }
}