/* ===== Acil Yol Yardım Ara - Ana Stil Dosyası (Açık Tema) ===== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --color-bg: #ffffff;
    --color-bg-2: #f8fafc;
    --color-bg-3: #f1f5f9;
    --color-accent: #f59e0b;
    --color-accent-2: #d97706;
    --color-primary: #1e3a8a;
    --color-primary-dark: #1e293b;
    --color-danger: #dc2626;
    --color-text: #0f172a;
    --color-text-dim: #64748b;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 10px 30px rgba(245, 158, 11, 0.25);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Üst Şerit */
.top-bar {
    background: linear-gradient(90deg, var(--color-danger), var(--color-accent-2));
    color: white; padding: 8px 0; font-size: 14px; font-weight: 600;
    text-align: center; position: relative; overflow: hidden;
}
.top-bar::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { 100% { left: 100%; } }
.top-bar a { color: white; text-decoration: none; font-weight: 800; margin: 0 10px; }

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: sticky; top: 0; z-index: 1000; padding: 15px 0;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.nav a,
.btn,
.service-card,
.district-card,
.sidebar-card .textwidget a,
.sidebar-list a {
    touch-action: manipulation;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--color-text); }
.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; box-shadow: var(--shadow-glow);
}
.logo-text {
    font-family: var(--font-display); font-size: 26px; letter-spacing: 1px;
    line-height: 1; color: var(--color-primary);
}
.logo-text span { color: var(--color-accent); }
.logo-sub {
    font-size: 11px; color: var(--color-text-dim);
    letter-spacing: 2px; text-transform: uppercase;
}

/* Nav */
.nav { display: flex; gap: 5px; align-items: center; }
.nav a {
    color: var(--color-text); text-decoration: none; font-weight: 600;
    padding: 10px 18px; border-radius: 8px; transition: var(--transition);
    font-size: 15px; position: relative;
    display: inline-flex; align-items: center; gap: 7px;
}
.nav a:hover, .nav a.active { background: var(--color-bg-3); color: var(--color-accent-2); }
.nav-icon { line-height: 1; font-size: 16px; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { white-space: nowrap; }
.dropdown-arrow { font-size: 11px; line-height: 1; margin-left: 1px; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 10px); left: 0;
    min-width: 250px; padding: 10px;
    background: white; border: 1px solid var(--color-border); border-radius: 10px;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: var(--transition); z-index: 1001;
}
.nav-dropdown-menu::before {
    content: ''; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
    display: flex; width: 100%; justify-content: flex-start;
    padding: 11px 12px; border-radius: 8px; font-size: 14px;
}
.nav-cta {
    background: var(--color-accent) !important; color: white !important;
    font-weight: 700 !important; box-shadow: var(--shadow-glow);
}
.nav-cta:hover { background: var(--color-accent-2) !important; color: white !important; transform: translateY(-2px); }

.menu-toggle {
    display: none; background: var(--color-bg-3); border: 1px solid var(--color-border);
    color: var(--color-text); padding: 10px 12px; border-radius: 8px;
    cursor: pointer; font-size: 20px;
}

/* Hero - Fotoğraflı Banner (fotoğraf inline style ile HTML'de tanımlı) */
.hero {
    position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden;
    background-color: var(--color-primary-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.78) 60%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}
.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px; pointer-events: none;
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; display: grid;
    grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245, 158, 11, 0.2); border: 1px solid rgba(245, 158, 11, 0.5);
    color: var(--color-accent); padding: 8px 16px; border-radius: 100px;
    font-size: 13px; font-weight: 700; margin-bottom: 25px;
    text-transform: uppercase; letter-spacing: 1px;
    backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 8px; height: 8px; background: var(--color-success);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}
.hero h1 {
    font-family: var(--font-display); font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95; margin-bottom: 25px; letter-spacing: 1px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.hero h1 span { color: var(--color-accent); display: block; }
.hero-subtitle {
    font-size: 19px; color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px; max-width: 540px; line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
    padding: 16px 32px; border-radius: 12px; font-weight: 700;
    text-decoration: none; font-size: 16px; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
    border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    color: white; box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6); }
.btn-whatsapp { background: #25d366; color: white; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--color-text); border: 2px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent-2); }

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-num { font-family: var(--font-display); font-size: 38px; color: var(--color-accent); line-height: 1; }
.stat-label {
    font-size: 13px; color: rgba(255, 255, 255, 0.8); text-transform: uppercase;
    letter-spacing: 1px; margin-top: 5px; font-weight: 600;
}

.hero-visual { position: relative; height: 500px; }
.hero-card {
    position: absolute; background: white;
    border: 1px solid var(--color-border); border-radius: 20px;
    padding: 25px; box-shadow: var(--shadow-lg);
    text-decoration: none; color: inherit;
}
.hero-card-1 { top: 0; left: 10%; width: 280px; animation: float 6s ease-in-out infinite; }
.hero-card-2 { bottom: 50px; right: 0; width: 260px; animation: float 6s ease-in-out infinite 2s; border: 2px solid var(--color-accent); }
.hero-card-3 { bottom: 0; left: 0; width: 240px; animation: float 6s ease-in-out infinite 4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.card-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 15px;
}
.hero-card h4 {
    font-family: var(--font-display); font-size: 20px; letter-spacing: 1px;
    margin-bottom: 8px; color: var(--color-primary-dark);
}
.hero-card p { font-size: 13px; color: var(--color-text-dim); }

/* Bölümler */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--color-bg-2); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block; color: var(--color-accent-2); font-size: 14px;
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px);
    line-height: 1; margin-bottom: 15px; letter-spacing: 1px;
    color: var(--color-primary-dark);
}
.section-title span { color: var(--color-accent); }
.section-desc { font-size: 18px; color: var(--color-text-dim); max-width: 700px; margin: 0 auto; }

/* Hizmet Kartları */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.service-card {
    background: white; border: 1px solid var(--color-border);
    border-radius: 20px; padding: 35px 30px; transition: var(--transition);
    text-decoration: none; color: var(--color-text);
    position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 32px; margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-display); font-size: 26px; letter-spacing: 1px;
    margin-bottom: 12px; color: var(--color-primary-dark);
}
.service-card p { color: var(--color-text-dim); font-size: 15px; margin-bottom: 20px; }
.service-link {
    color: var(--color-accent-2); font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: 1px;
    display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease;
}

/* İlçeler */
.districts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.district-card {
    background: white; border: 1px solid var(--color-border);
    border-radius: 12px; padding: 20px; text-decoration: none;
    color: var(--color-text); display: flex; align-items: center; gap: 12px;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.district-icon { font-size: 22px; }
.district-name { font-weight: 700; font-size: 16px; }

/* Hover efektlerini sadece masaustu cihazlara uygula (mobilde ilk tik sorunu icin) */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { transform: translateY(-8px); border-color: var(--color-accent); box-shadow: var(--shadow-lg); }
    .service-card:hover .service-link { gap: 14px; }
    .district-card:hover {
        background: var(--color-accent); color: white; transform: translateX(5px);
        border-color: var(--color-accent); box-shadow: var(--shadow-glow);
    }
}

/* Neden Biz */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.feature-item { text-align: center; padding: 30px 20px; }
.feature-num {
    font-family: var(--font-display); font-size: 56px;
    color: var(--color-accent); opacity: 0.4; line-height: 1; margin-bottom: 10px;
}
.feature-item h4 {
    font-family: var(--font-display); font-size: 24px; letter-spacing: 1px;
    margin-bottom: 12px; color: var(--color-primary-dark);
}
.feature-item p { color: var(--color-text-dim); font-size: 15px; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 24px; padding: 60px 50px; text-align: center;
    position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 70%);
    border-radius: 50%;
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -50%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 {
    font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
    color: white; margin-bottom: 15px; position: relative; letter-spacing: 1px;
}
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 30px; position: relative; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: white; color: var(--color-primary-dark); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 25px; margin-top: 30px; }
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-info-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.contact-info-item h4 {
    font-size: 14px; margin-bottom: 5px; color: var(--color-text-dim);
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.contact-info-item p, .contact-info-item a {
    font-size: 18px; font-weight: 700; color: var(--color-text); text-decoration: none;
}
.contact-info-item a:hover { color: var(--color-accent-2); }

.contact-form {
    background: white; border: 1px solid var(--color-border);
    border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 8px; font-weight: 700;
    font-size: 13px; color: var(--color-text-dim);
    text-transform: uppercase; letter-spacing: 1px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px;
    background: var(--color-bg-2); border: 1px solid var(--color-border);
    border-radius: 10px; color: var(--color-text);
    font-size: 16px; font-family: var(--font-body); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--color-accent); background: white;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.sidebar-wa-form .form-group { margin-bottom: 14px; }
.sidebar-wa-form .form-group label { font-size: 12px; margin-bottom: 6px; }
.sidebar-wa-form .form-group input,
.sidebar-wa-form .form-group select,
.sidebar-wa-form .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
}
.sidebar-wa-form .form-group textarea { min-height: 95px; }

/* Footer */
.footer { background: var(--color-primary-dark); color: #cbd5e1; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer .logo-text { color: white; }
.footer .logo-sub { color: #94a3b8; }
.footer h4 {
    font-family: var(--font-display); font-size: 22px; letter-spacing: 1px;
    margin-bottom: 20px; color: var(--color-accent);
}
.footer p { color: #94a3b8; font-size: 15px; line-height: 1.8; margin-bottom: 15px; }
.footer-widget .textwidget p strong {
    color: white;
    font-weight: 800;
}
.footer-widget .textwidget p a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    padding: 10px 13px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
}
.footer-widget .textwidget p a:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #94a3b8; text-decoration: none; font-size: 15px; transition: var(--transition); }
.footer ul a:hover { color: var(--color-accent); padding-left: 5px; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px;
    text-align: center; color: #94a3b8; font-size: 14px;
}
.footer-bottom a { color: var(--color-accent); text-decoration: none; }

/* WhatsApp Sabit */
.whatsapp-fixed {
    position: fixed; bottom: 30px; right: 30px;
    width: 65px; height: 65px; background: #25d366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 32px; text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999; transition: var(--transition); animation: bounce 2s infinite;
}
.whatsapp-fixed:hover { transform: scale(1.1); }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.scroll-top-btn {
    position: fixed;
    right: 30px;
    bottom: 110px;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: var(--transition);
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    transform: translateY(-3px);
}

/* Sayfa Hero - Fotoğraflı */
.page-hero {
    padding: 140px 0 100px;
    background-color: var(--color-primary-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%);
    z-index: 1;
}
.page-hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}
.page-hero-map::before {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(30, 58, 138, 0.35) 100%);
}
.page-hero-map::after {
    background-image: none;
}
.page-hero-map {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center !important;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { color: rgba(255, 255, 255, 0.7); font-size: 14px; margin-bottom: 20px; font-weight: 600; }
.breadcrumb a { color: var(--color-accent); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.page-hero h1 {
    font-family: var(--font-display); font-size: clamp(44px, 6vw, 76px);
    line-height: 1; margin-bottom: 20px; letter-spacing: 1px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.page-hero h1 span { color: var(--color-accent); }
.page-hero p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.page-hero .btn-primary,
.page-hero .btn-whatsapp {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* İçerik Sayfaları */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.content-grid aside {
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: none;
    overflow: visible;
}
.content-main h2 {
    font-family: var(--font-display); font-size: 38px; letter-spacing: 1px;
    margin-bottom: 20px; margin-top: 40px; color: var(--color-primary-dark);
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
    font-family: var(--font-display); font-size: 26px; letter-spacing: 1px;
    margin-bottom: 15px; margin-top: 30px; color: var(--color-accent-2);
}
.content-main p { font-size: 16px; color: var(--color-text-dim); margin-bottom: 18px; line-height: 1.8; }
.content-main .cta-banner h2 { color: white; }
.content-main .cta-banner p { color: rgba(255,255,255,0.9); }
.content-main strong { color: var(--color-text); }
.single-aya_district .page-hero + .section { padding-top: 50px; }
.single-aya_district .content-main > .section:first-child { padding-top: 0; }
.single-aya_service_area .page-hero + .section { padding-top: 50px; }
.single-aya_service_area .content-main > .section:first-child { padding-top: 0; }
.single-aya_service .page-hero + .section { padding-top: 50px; }
.single-aya_service .content-main > .section:first-child { padding-top: 0; }
.content-main ul { margin-bottom: 20px; padding-left: 0; list-style: none; }
.content-main ul li {
    color: var(--color-text-dim); padding-left: 30px;
    margin-bottom: 12px; position: relative; line-height: 1.7;
}
.content-main ul li::before {
    content: '\2713'; position: absolute; left: 0; top: 0;
    color: var(--color-accent); font-weight: 800; font-size: 18px;
}

.sidebar-card {
    background: white; border: 1px solid var(--color-border);
    border-radius: 16px; padding: 30px; margin-bottom: 25px;
    position: static; box-shadow: var(--shadow-md);
}
.sidebar-card h3 {
    font-family: var(--font-display); font-size: 24px; letter-spacing: 1px;
    margin-bottom: 20px; color: var(--color-accent-2);
}
.sidebar-card .textwidget p {
    margin: 0 0 12px;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.55;
}
.sidebar-card .textwidget p:last-child { margin-bottom: 0; }
.sidebar-card .textwidget strong {
    color: var(--color-primary-dark);
    font-weight: 800;
}
.sidebar-card .textwidget a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    border-radius: 10px;
    background: var(--color-bg-2);
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
}
.sidebar-card .textwidget a:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}
.sidebar-card .sidebar-wa-form a,
.sidebar-card .textwidget form a {
    display: inline;
    width: auto;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}
.sidebar-list { list-style: none; }
.sidebar-list li { margin-bottom: 10px; }
.sidebar-list a {
    color: var(--color-text); text-decoration: none;
    padding: 10px 15px; background: var(--color-bg-2);
    border-radius: 8px; display: block; transition: var(--transition);
    font-size: 14px; font-weight: 600;
}
.sidebar-list a:hover { background: var(--color-accent); color: white; }

/* Galeri */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item {
    aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--color-bg-2), var(--color-bg-3));
    border: 1px solid var(--color-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 60px; cursor: pointer; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.gallery-item:hover { transform: scale(1.03); border-color: var(--color-accent); box-shadow: var(--shadow-lg); }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-item::after {
    content: attr(data-title); position: absolute; bottom: 0; left: 0;
    width: 100%; padding: 20px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
    color: white; font-weight: 700; text-align: left; font-size: 16px;
}

/* Mobil */
@media (max-width: 968px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 400px; }
    .contact-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .content-grid aside { position: static; top: auto; max-height: none; overflow: visible; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: white; flex-direction: column; padding: 20px;
        border-top: 1px solid var(--color-border); box-shadow: var(--shadow-md);
        align-items: stretch;
    }
    .nav.active { display: flex; }
    .nav a { width: 100%; justify-content: center; text-align: center; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        width: 100%; min-width: 0; margin-top: 6px; box-shadow: none;
        background: var(--color-bg-2); border-radius: 8px; padding: 8px;
    }
    .nav-dropdown-menu::before { display: none; }
    .nav-dropdown-menu a { justify-content: flex-start; text-align: left; }
    .menu-toggle { display: block; }
    .sidebar-card { position: static; }
}
@media (max-width: 768px) {
    .hero-stats { grid-template-columns: 1fr; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-visual {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .hero-card {
        position: static;
        width: 100%;
        max-width: 100%;
        animation: none;
        transform: none;
    }
    .hero-card-1, .hero-card-2, .hero-card-3 { width: auto; }
    .section { padding: 60px 0; }
    .cta-banner { padding: 40px 25px; }
    .contact-form { padding: 25px; }
    .whatsapp-fixed { right: 18px; bottom: 18px; width: 58px; height: 58px; font-size: 28px; }
    .scroll-top-btn { right: 18px; bottom: 88px; width: 50px; height: 50px; font-size: 24px; }
}

/* Mobil/touch cihazlarda hover tabanli ilk tik problemini engelle */
@media (hover: none) and (pointer: coarse) {
    .nav a:hover,
    .nav a.active,
    .nav-cta:hover,
    .btn-primary:hover,
    .btn-whatsapp:hover,
    .btn-outline:hover,
    .btn-white:hover,
    .contact-info-item a:hover,
    .footer-widget .textwidget p a:hover,
    .footer ul a:hover,
    .whatsapp-fixed:hover,
    .scroll-top-btn:hover,
    .breadcrumb a:hover,
    .sidebar-card .textwidget a:hover,
    .sidebar-list a:hover,
    .gallery-item:hover {
        transform: none !important;
        box-shadow: inherit !important;
        background: inherit;
        color: inherit;
        padding-left: 0;
        border-color: inherit;
    }
    .service-card:hover::before { transform: scaleX(0) !important; }
    .service-card:hover,
    .district-card:hover {
        transform: none !important;
        box-shadow: var(--shadow-sm) !important;
        border-color: var(--color-border) !important;
        background: white !important;
        color: var(--color-text) !important;
    }
    .service-card:hover .service-link { gap: 8px !important; }
}
