/* ==========================================================================
   Location Pages — Yeni Tasarım v3.0
   ========================================================================== */

/* Location Hero — lacivert ton */
.location-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 45%, #132f4c 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.location-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.location-hero .container {
    position: relative;
    z-index: 1;
}

.location-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.location-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.location-breadcrumb a:hover {
    color: white;
}

.location-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.location-breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.location-hero h1 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.location-hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-light, #38bdf8), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    line-height: 1.75;
    margin-bottom: 32px;
}

.location-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.location-badge i {
    color: var(--accent-light, #38bdf8);
}

/* Districts/Neighborhoods Grid */
.location-areas {
    padding: 100px 0;
    background: var(--bg-alt, #f8fafc);
}

.location-areas .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-areas .section-header h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.location-areas .section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.area-card {
    background: var(--bg-light, #fff);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.35s ease;
    min-height: 56px;
}

.area-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.area-card i {
    color: var(--accent);
    font-size: 13px;
    transition: transform 0.3s;
}

.area-card:hover i {
    transform: translateX(4px);
}

/* SEO Content Section */
.location-content {
    padding: 100px 0;
    background: var(--bg-light, #fff);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.content-main h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin: 32px 0 16px;
}

.content-main p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.content-main ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-main ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.content-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 13px;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: linear-gradient(135deg, var(--accent, #0ea5e9), #0077b6);
    border-radius: 24px;
    padding: 36px;
    color: white;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
}

.sidebar-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 14px;
}

.sidebar-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.65;
    margin-bottom: 24px;
}

.sidebar-card .btn {
    width: 100%;
    background: white;
    color: var(--accent);
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

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

.sidebar-info {
    background: var(--bg-alt, #f8fafc);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.sidebar-info-item i {
    width: 40px;
    height: 40px;
    background: var(--bg-light, #fff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.sidebar-info-item span {
    color: var(--text-main);
    font-weight: 500;
    font-size: 14px;
}

/* FAQ Section */
.location-faq {
    padding: 100px 0;
    background: var(--bg-alt, #f8fafc);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.location-faq .faq-item {
    background: var(--bg-light, #fff);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.location-faq .faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(14, 165, 233, 0.1);
}

.location-faq .faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-faq .faq-item h3 i {
    color: var(--accent);
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

.location-faq .faq-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    padding-left: 26px;
}

/* Other Services */
.other-services {
    padding: 100px 0;
    background: var(--bg-light, #fff);
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-mini-card {
    background: var(--bg-alt, #f8fafc);
    border-radius: 20px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.service-mini-card:hover {
    background: var(--bg-light, #fff);
    border-color: rgba(14, 165, 233, 0.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.service-mini-card i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent, #0ea5e9), #0077b6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}

.service-mini-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.service-mini-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* SEO Content Area */
.seo-content-area {
    padding: 100px 0;
    background: var(--bg-alt, #f8fafc);
}

.seo-content-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light, #fff);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Location Info Section */
.location-info-section {
    padding: 60px 0;
    background: var(--bg-light, #fff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.location-info-card {
    text-align: center;
    padding: 28px;
    background: var(--bg-alt, #f8fafc);
    border-radius: 18px;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.location-info-card:hover {
    background: var(--bg-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(14, 165, 233, 0.1);
}

.location-info-card i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent, #0ea5e9), #0077b6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin: 0 auto 16px;
}

.location-info-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.location-info-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.3px;
}

.content-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin: 36px 0 16px;
}

.content-wrapper p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.content-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.content-wrapper ul li {
    padding: 14px 16px;
    padding-left: 44px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
    background: var(--bg-light, #fff);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.content-wrapper ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 16px;
    color: #10b981;
    font-size: 13px;
}

/* Location CTA */
.location-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent, #0ea5e9), #0077b6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
    pointer-events: none;
}

.location-cta h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.location-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* CTA bölümünde beyaz butonlar (arka plan ile uyumlu) */
.location-cta .btn-cta-white {
    background: #fff;
    color: #0d2137;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.location-cta .btn-cta-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.location-cta .btn-cta-white i {
    color: #0ea5e9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.cta-btn.primary {
    background: white;
    color: var(--accent);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.location-faq .faq-list .faq-item {
    background: var(--bg-alt, #f8fafc);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.location-faq .faq-list .faq-item:hover {
    background: var(--bg-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(14, 165, 233, 0.15);
}

/* Related Areas */
.related-areas {
    padding: 100px 0;
    background: var(--bg-alt, #f8fafc);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .content-sidebar { position: static; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .location-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .location-hero { padding: 110px 0 60px; }
    .location-hero h1 { font-size: 28px; }
    .faq-grid { grid-template-columns: 1fr; }
    .content-wrapper ul { grid-template-columns: 1fr; }
    .location-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .areas-grid { grid-template-columns: 1fr; }
    .location-hero-badges { flex-direction: column; align-items: flex-start; }
    .cta-buttons { flex-direction: column; }
    .cta-btn { width: 100%; justify-content: center; }
}
