/*
Theme Name: Erken Oto Kurtarma Pro
Author: Enes Kaya
Description: 6 Bölümlü, Full Yönetilebilir Premium Dark Tema — SEO Entegre
Version: 3.3
*/

:root {
    /* --- RENK PALETİ --- */
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-lighter: #252525;
    --accent-gold: #FFC107;
    --text-main: #ffffff;
    --text-muted: #d1d1d1;
    --whatsapp-green: #25D366;
    
    /* --- YAPI --- */
    --container-width: 1200px;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* --- SPACING --- */
    --section-padding: 100px;
    --card-padding: 40px;
    --border-radius: 10px;
}

/* --- TEMEL RESET VE AYARLAR --- */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

a { 
    text-decoration: none; 
    transition: all 0.3s ease; 
}

ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- ERİŞİLEBİLİRLİK --- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-gold);
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100000;
    border-radius: 0 0 5px 0;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* --- ORTAK BAŞLIK STİLLERİ --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title p { 
    color: var(--text-muted); 
    font-size: clamp(1rem, 2vw, 1.1rem);
    padding: 0 15px;
}

/* --- HEADER --- */
.site-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 0;
    border-bottom: 2px solid var(--accent-gold);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
}

.site-header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 a { 
    color: var(--accent-gold); 
    font-weight: 800; 
    font-size: clamp(18px, 3vw, 24px);
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.custom-logo { 
    max-height: 50px; 
    width: auto;
    height: auto;
}

.main-menu { 
    display: flex; 
    gap: 25px;
    flex-wrap: wrap;
}

.main-menu li a { 
    color: white; 
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 16px);
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-menu li a:hover { 
    color: var(--accent-gold);
    background-color: rgba(255, 193, 7, 0.1);
}

.btn-header { 
    background-color: var(--accent-gold); 
    color: #000 !important; 
    padding: 10px 25px; 
    border-radius: 5px; 
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    order: 3;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

/* Main Navigation */
.main-nav {
    order: 2;
}

/* --- 1. HERO BÖLÜMÜ --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4)); 
    z-index: 1; 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    width: 100%;
    padding: 0 20px;
}

.main-title { 
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1.1; 
    font-weight: 800; 
    margin-bottom: 20px; 
    color: white;
    word-wrap: break-word;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn { 
    padding: 18px 35px; 
    border-radius: 50px; 
    font-weight: bold; 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    cursor: pointer; 
    border: none; 
    font-size: clamp(14px, 1.5vw, 16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary { 
    background-color: var(--accent-gold); 
    color: #000 !important; 
}

.btn-secondary { 
    background-color: var(--bg-card); 
    color: var(--text-main) !important; 
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: #000 !important;
}

.btn-whatsapp { 
    background-color: var(--whatsapp-green); 
    color: #fff !important; 
}

.btn-whatsapp:hover {
    background-color: #1da851;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.hero-buttons { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap;
}

/* --- 2. HİZMETLER BÖLÜMÜ --- */
.services-section { 
    background-color: #000; 
    padding: 80px 0; 
    position: relative; 
    z-index: 5; 
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-top: -100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card { 
    background-color: var(--bg-card); 
    padding: var(--card-padding) 30px; 
    border-radius: var(--border-radius); 
    text-align: center; 
    border-bottom: 3px solid transparent; 
    transition: all 0.3s ease; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover { 
    transform: translateY(-10px); 
    border-bottom-color: var(--accent-gold); 
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.icon-box { 
    font-size: clamp(40px, 6vw, 50px);
    color: var(--accent-gold); 
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1);
}

.service-card h3 { 
    color: white; 
    margin-bottom: 10px;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
}

.service-card p { 
    color: var(--text-muted);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

/* --- 3. HAKKIMIZDA BÖLÜMÜ --- */
.about-section { 
    padding: var(--section-padding) 0; 
    background-color: var(--bg-dark); 
}

.about-container { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; 
    gap: 50px;
}

.about-image { 
    width: 100%;
}

.about-image img { 
    width: 100%; 
    height: auto;
    border-radius: var(--border-radius); 
    border: 2px solid var(--accent-gold); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-content { 
    width: 100%;
}

.about-content h2 { 
    color: var(--accent-gold); 
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p { 
    color: var(--text-muted); 
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* --- 4. FOTO GALERİ SLAYT --- */
.gallery-section { 
    padding: 80px 0; 
    background-color: var(--bg-card); 
    text-align: center; 
}

.slider-container { 
    position: relative; 
    max-width: 800px; 
    margin: 0 auto; 
    overflow: hidden; 
    border-radius: var(--border-radius); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    aspect-ratio: 16/9;
    width: 100%;
}

.slides { 
    display: flex; 
    transition: transform 0.5s ease-in-out; 
    height: 100%; 
}

.slide { 
    min-width: 100%; 
    height: 100%;
    flex-shrink: 0;
}

.slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.prev, .next { 
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    padding: 16px; 
    margin-top: -22px; 
    color: white; 
    font-weight: bold; 
    font-size: 18px; 
    background-color: rgba(0,0,0,0.5); 
    user-select: none; 
    z-index: 10;
    transition: all 0.3s ease;
}

.next { 
    right: 0; 
    border-radius: 3px 0 0 3px; 
}

.prev { 
    left: 0; 
    border-radius: 0 3px 3px 0; 
}

.prev:hover, .next:hover { 
    background-color: var(--accent-gold); 
    color: black; 
}

/* --- GALERI FOTOĞRAFLARI (UNIFORM GRID) - GÜNCELLENDİ --- */
.gallery-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.gallery-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-lighter);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3; /* Sabit oran: 4:3 */
    height: 250px; /* Sabit yükseklik */
}

.gallery-photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi crop eder, container'ı doldurur */
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-photo-item:hover img {
    transform: scale(1.1);
}

/* --- 5. İLETİŞİM BÖLÜMÜ --- */
.contact-section { 
    padding: var(--section-padding) 0; 
    background-color: var(--bg-dark); 
}

.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
}

.contact-info-box { 
    background-color: var(--bg-card); 
    padding: var(--card-padding); 
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-item { 
    display: flex; 
    align-items: flex-start;
    gap: 20px; 
    margin-bottom: 30px; 
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i { 
    font-size: 25px; 
    color: var(--accent-gold); 
    min-width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item h4 { 
    margin: 0; 
    color: white; 
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
}

.contact-item p { 
    margin: 5px 0 0; 
    color: var(--text-muted);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    word-break: break-word;
    line-height: 1.6;
}

.map-box {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.map-box iframe { 
    width: 100%; 
    height: 100%; 
    min-height: 400px; 
    border-radius: var(--border-radius); 
    border: none; 
    filter: grayscale(100%) invert(92%) contrast(83%); 
}

/* --- 6. SIK SORULAN SORULAR (SSS) --- */
.faq-section { 
    padding: 80px 0; 
    background-color: var(--bg-lighter); 
}

.faq-container { 
    max-width: 800px; 
    margin: 0 auto;
    width: 100%;
}

.faq-item { 
    background-color: var(--bg-card); 
    border-radius: 5px; 
    margin-bottom: 15px; 
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

.faq-question { 
    padding: 20px; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-weight: bold; 
    color: white; 
    transition: 0.3s;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.faq-question:hover { 
    color: var(--accent-gold); 
}

.faq-question::after { 
    content: '+'; 
    font-size: 20px; 
    color: var(--accent-gold); 
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after { 
    content: '-';
    transform: rotate(180deg);
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease-out; 
    padding: 0 20px; 
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

.faq-item.active .faq-answer { 
    padding: 0 20px 20px 20px; 
    max-height: 500px; 
}

/* --- 404 HATA SAYFASI --- */
.error-404-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.error-404-number {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.error-404-image {
    margin-bottom: 30px;
}

.error-404-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.error-404-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-404-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-404-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.error-404-buttons .btn {
    gap: 10px;
}

.error-404-search {
    max-width: 400px;
    margin: 0 auto;
}

.search-form-404 {
    display: flex;
    gap: 10px;
    background-color: var(--bg-card);
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.search-field-404 {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: var(--text-main);
    font-size: 16px;
    outline: none;
}

.search-field-404::placeholder {
    color: var(--text-muted);
}

.search-submit-404 {
    background-color: var(--accent-gold);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.search-submit-404:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* --- FOOTER --- */
.site-footer { 
    background-color: #000; 
    padding: 30px 0; 
    text-align: center; 
    border-top: 1px solid #333; 
}

.site-footer p { 
    color: var(--text-muted); 
    font-size: clamp(12px, 1.5vw, 14px);
    margin: 0;
    padding: 0 20px;
}

/* ========================================
   RESPONSIVE TASARIM - TABLET & DESKTOP
   ======================================== */

/* Large Tablet - 992px */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
        --card-padding: 30px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -50px;
        gap: 25px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .gallery-photo-item {
        height: 200px;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --card-padding: 25px;
    }
    
    .site-header .container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .cta-button {
        order: 2;
    }
    
    .main-nav {
        display: none;
        order: 4;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-menu {
        display: flex;
        flex-direction: column;
        background-color: var(--bg-card);
        padding: 20px;
        border-radius: 5px;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .main-menu li,
    .main-menu .menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    }
    
    .main-menu li:last-child,
    .main-menu .menu-item:last-child {
        border-bottom: none;
    }
    
    .main-menu li a,
    .main-menu .menu-item a {
        display: block;
        padding: 12px 10px;
        transition: all 0.3s ease;
    }
    
    .main-menu li a:hover,
    .main-menu .menu-item a:hover {
        padding-left: 20px;
        color: var(--accent-gold);
        background-color: rgba(255, 193, 7, 0.1);
    }
    
    .btn-header {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .main-title { 
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-section { 
        min-height: auto;
        height: auto;
        padding: 150px 0 80px 0;
    }
    
    .hero-buttons { 
        flex-direction: column;
        gap: 15px;
    }
    
    .btn { 
        width: 100%; 
        text-align: center; 
        justify-content: center;
    }
    
    .services-grid { 
        margin-top: 30px;
        gap: 20px;
    }
    
    .about-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
    
    .map-box,
    .map-box iframe {
        min-height: 300px;
    }
    
    .gallery-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-photo-item {
        height: 180px;
    }
    
    .error-404-buttons {
        flex-direction: column;
    }
    
    .error-404-buttons .btn {
        width: 100%;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
        --card-padding: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .site-header {
        padding: 12px 0;
    }
    
    .hero-section {
        padding: 120px 0 60px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .about-section,
    .contact-section,
    .gallery-section,
    .faq-section {
        padding: 50px 0;
    }
    
    .about-container {
        gap: 30px;
    }
    
    .contact-wrapper {
        gap: 30px;
    }
    
    .contact-info-box {
        padding: 25px 15px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .prev, .next {
        padding: 12px;
        font-size: 16px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .gallery-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-photo-item {
        height: 150px;
    }
    
    .error-404-section {
        padding: 80px 0 60px 0;
    }
    
    .error-404-number {
        font-size: 5rem;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .icon-box {
        font-size: 40px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .error-404-number {
        font-size: 4rem;
    }
    
    .gallery-photo-item {
        height: 120px;
    }
}

/* ========================================
   LANDSCAPE ORIENTATION - YATAY EKRAN
   ======================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 150px 0 80px 0;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .error-404-section {
        min-height: auto;
        padding: 100px 0 60px 0;
    }
}

/* ========================================
   PRINT STYLES - YAZDIRILIRKEN
   ======================================== */
@media print {
    .site-header,
    .hero-buttons,
    .mobile-menu-toggle,
    .prev,
    .next,
    .error-404-buttons,
    .error-404-search,
    .btn-header {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-section {
        background: none;
        page-break-after: always;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* ========================================
   ACCESSIBILITY - ERİŞİLEBİLİRLİK
   ======================================== */

/* Focus states for keyboard navigation */
a:focus,
button:focus,
.faq-question:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Focus visible (modern browsers) */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode improvements */
@media (prefers-contrast: high) {
    .service-card,
    .contact-info-box,
    .faq-item,
    .gallery-photo-item {
        border: 2px solid var(--accent-gold);
    }
    
    .error-404-content {
        border: 2px solid var(--accent-gold);
        padding: 20px;
    }
}

/* Dark mode (if user prefers) - Already dark by default */
@media (prefers-color-scheme: light) {
    /* Kullanıcı light mode tercih ederse bile dark kalacak 
       Çünkü bu bir dark tema */
}