﻿:root {
    --color-bg: #f5f5f5;
    --color-text: #222;
    --color-secondary: #e0e0e0;
    --color-accent: #FFAA00;
    --color-primary: #333;
    --transition-fast: 0.3s ease;
    --header-height: 70px;
    --color-link: #FFAA00;
    --color-muted: #999;
}

body.dark-mode {
    --color-bg: #121212;
    --color-text: #f1f1f1;
    --color-secondary: #1e1e1e;
    --color-accent: #ffc107;
    --color-primary: #ffffff;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    padding-top: var(--header-height);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    position: relative;
}



/* ======================= */
/*        NAVBAR           */
/* ======================= */
header.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #dcdcdc;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav.navbar {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

/* ======================= */
/*        LOGO             */
/* ======================= */
.logo {
    position: relative;
    padding: 0.5rem 0.75rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-text);
    overflow: hidden;
}

    .logo::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, transparent, var(--color-accent), transparent);
        animation: sweepLight 3s linear infinite;
    }

    .logo img {
        display: block;
        height: 60px;
        object-fit: contain;
        transform: scale(1.6);
        transform-origin: center;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

        .logo img:hover {
            transform: scale(1.65) rotate(3deg);
            filter: brightness(1.15);
        }

@keyframes sweepLight {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.logo span {
    color: var(--color-accent);
}

/* ======================= */
/*      NAV LINKS          */
/* ======================= */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

    .nav-links li a {
        position: relative;
        display: flex;
        align-items: center;
        padding: .5rem .75rem;
        border-radius: 4px;
        color: var(--color-text);
        font-weight: 500;
        transition: color .3s ease, transform .3s ease, background .3s ease;
    }

        .nav-links li a i {
            margin-right: 6px;
            font-size: 1.1rem;
        }

        .nav-links li a::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 3px;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
            transition: width .35s ease;
        }

        .nav-links li a:hover {
            color: var(--color-accent);
            transform: translateY(-2px);
        }

            .nav-links li a:hover::before {
                width: 100%;
            }

        .nav-links li a.active {
            color: var(--color-accent);
            font-weight: 600;
            background: transparent;
            transform: none;
            text-shadow: 0 0 4px rgba(255,170,0,.35);
        }

            .nav-links li a.active::before {
                width: 100%;
                height: 3px;
                bottom: -4px;
                background: var(--color-accent);
                box-shadow: 0 0 4px rgba(255,170,0,.5), 0 0 8px rgba(255,170,0,.35);
            }

/* ======================= */
/*     MOBILE MENU         */
/* ======================= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: .8rem;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 5%;
        width: 90%;
        background: #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 0.5rem 0;
        border-radius: 8px;
        animation: slideDown 0.3s ease forwards;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            width: 100%;
        }

            .nav-links li a {
                padding: 0.75rem 1.25rem;
                width: 100%;
                display: block;
                border-bottom: 1px solid #eee;
                font-size: 0.95rem;
            }

    .mobile-menu-toggle {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .nav-links {
        left: 0;
        width: 100%;
        border-radius: 0;
    }
}

@media (max-width: 375px) {
    header.site-header {
        padding: 0.5rem 1rem;
    }

    nav.navbar {
        padding: 0.6rem 1rem;
    }

    .logo img {
        height: 38px;
        transform: scale(1.2);
    }

    .logo {
        font-size: 1.4rem;
        padding: 0.3rem 0.5rem;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 0.5rem 0.6rem;
    }

    .mobile-menu-toggle {
        font-size: 1.1rem;
        padding: 0.6rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* === ÇEREZ BİLDİRİMİ GENEL TASARIMI === */
#cookieConsentBanner.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    transition: transform var(--transition-fast) ease-in-out;
}

    #cookieConsentBanner.cookie-banner.d-none {
        transform: translateY(100%);
    }

    #cookieConsentBanner.cookie-banner p {
        flex: 1 1 auto;
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }

    #cookieConsentBanner.cookie-banner a {
        color: var(--color-accent);
        text-decoration: underline;
        font-weight: 500;
    }

    #cookieConsentBanner.cookie-banner .btn {
        flex: 0 0 auto;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        transition: background-color var(--transition-fast), color var(--transition-fast);
    }

    #cookieConsentBanner.cookie-banner .btn-success {
        background-color: var(--color-accent);
        border: none;
    }

        #cookieConsentBanner.cookie-banner .btn-success:hover {
            background-color: #e69e00;
        }

    #cookieConsentBanner.cookie-banner .btn-secondary {
        background-color: #6c757d;
        border: none;
        color: #fff;
    }

        #cookieConsentBanner.cookie-banner .btn-secondary:hover {
            background-color: #5a6268;
        }

    #cookieConsentBanner.cookie-banner .btn-outline-light {
        border: 1px solid #fff;
        color: #fff;
    }

        #cookieConsentBanner.cookie-banner .btn-outline-light:hover {
            background-color: rgba(255,255,255,0.1);
        }

/* Mobile: Dar ekranlarda dikey ve ortalanmış */
@media (max-width: 576px) {
    #cookieConsentBanner.cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

        #cookieConsentBanner.cookie-banner .d-flex {
            justify-content: center !important;
            margin-top: 0.75rem;
        }
}

/* ─── MODAL: ÇEREZ AYARLARI ──────────────────────────────────────────── */
#cookieSettingsModal .modal-dialog {
    max-width: 600px;
    margin: 1.5rem auto;
}

#cookieSettingsModal .modal-content {
    background-color: var(--color-secondary);
    color: var(--color-text);
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform var(--transition-fast);
}

#cookieSettingsModal .modal-header,
#cookieSettingsModal .modal-footer {
    border: none;
    padding: 1rem 1.5rem;
}

#cookieSettingsModal .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
}

#cookieSettingsModal .btn-close {
    filter: invert(1);
}

#cookieSettingsModal .modal-body {
    padding: 1rem 1.5rem;
}

#cookieSettingsModal .form-check {
    padding-left: 0;
    margin-bottom: 1rem;
}

#cookieSettingsModal .form-check-input {
    width: 1.5em;
    height: 1em;
    margin-left: 0;
    margin-right: 0.5rem;
    cursor: pointer;
    background-color: #e0e0e0;
}

    #cookieSettingsModal .form-check-input:checked {
        background-color: var(--color-accent); /* Aktifken arka plan rengi */
        border-color: var(--color-accent); /* Aktifken kenarlık */
    }

#cookieSettingsModal .form-check-label {
    font-weight: 500;
}

#cookieSettingsModal .form-check small {
    font-size: 0.875rem;
    color: #adb5bd;
}

#cookieSettingsModal .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    background: transparent;
}

    #cookieSettingsModal .modal-footer .btn-primary {
        background-color: var(--color-accent);
        border: none;
        color: #f5f5f5;
    }

        #cookieSettingsModal .modal-footer .btn-primary:hover {
            background-color: #e69900;
        }

    #cookieSettingsModal .modal-footer .btn-secondary {
        background-color: #6c757d;
        border: none;
        color: #fff;
    }

        #cookieSettingsModal .modal-footer .btn-secondary:hover {
            background-color: #5a6268;
        }

/* Mobile: Modal dar ekran uyumu */
@media (max-width: 576px) {
    #cookieSettingsModal .modal-dialog {
        max-width: 90%;
        margin: 0.5rem auto;
    }

    #cookieSettingsModal .modal-title {
        font-size: 1.1rem;
    }

    #cookieSettingsModal .modal-body {
        padding: 0.75rem 1rem;
    }

    #cookieSettingsModal .modal-footer {
        flex-direction: column;
        align-items: stretch;
    }

        #cookieSettingsModal .modal-footer .btn {
            width: 100%;
        }
}







/* ========== FOOTER GENEL ========== */
.site-footer {
    background-color: #dcdcdc;
    color: #222;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* Marka Alanı */
.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #222;
}

    .footer-brand h3 span {
        color: var(--color-accent);
    }

.footer-brand p {
    line-height: 1.6;
    color: #333;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}


/* Hızlı Erişim */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #222;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    color: #222;
    position: relative;
    transition: color 0.3s ease;
}

    .footer-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background-color: var(--color-accent);
        transition: width 0.4s ease;
    }

    .footer-links a:hover {
        color: var(--color-accent);
    }

        .footer-links a:hover::after {
            width: 100%;
        }

/* İletişim */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.footer-contact a {
    color: #222;
    text-decoration: none;
}

.footer-social {
    margin-top: 1rem;
    color: var(--color-accent)
}

    .footer-social a {
        font-size: 1.1rem;
        color: #222;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
    }

        .footer-social a:hover {
            color: var(--color-accent);
        }



/* Alt İmza */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #555;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}

    .footer-bottom p {
        margin: 0;
    }

    .footer-bottom .divider {
        margin: 0 10px;
        color: #ccc;
    }

    .footer-bottom .powered-text {
        color: #888;
    }

    /* Shimmer efektli link */
    .footer-bottom a {
        position: relative;
        display: inline-block;
        font-weight: 700;
        text-decoration: none;
        /* Amber shimmer efekt */
        background: linear-gradient(90deg, #FFAA00, #FFD580 50%, #FFAA00);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 4s linear infinite;
        transition: color 0.3s ease, transform 0.3s ease;
    }

        /* Hover animasyonu: underline + shimmer kapama */
        .footer-bottom a::after {
            content: '';
            position: absolute;
            width: 0%;
            height: 2px;
            left: 0;
            bottom: -2px;
            background: linear-gradient(90deg, #FFAA00, #FFD580);
            transition: width 0.4s ease;
        }

        .footer-bottom a:hover {
            color: #FFAA00;
            background: none;
            -webkit-text-fill-color: #FFAA00;
            transform: translateX(3px);
        }

            .footer-bottom a:hover::after {
                width: 100%;
            }

/* Shimmer animasyonu */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}


@media (max-width: 768px) {
    .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        width: 100%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .footer-brand p,
        .footer-contact p,
        .footer-links a {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-contact p,
        .footer-links li {
            justify-content: center;
            margin: 0.4rem 0;
        }

        .footer-links ul {
            padding-left: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a {
            display: inline-block;
            text-align: center;
            transition: color 0.3s ease;
        }

    .footer-social {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

        .footer-social a {
            gap: 0.5rem;
            font-size: 1.1rem;
        }
}



@media (max-width: 480px) {
    .site-footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-brand img {
        max-width: 140px;
        margin-bottom: 1rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 1rem;
    }

    .footer-bottom a {
        font-size: 0.85rem;
    }
}



/* Scroll Reveal Animasyon */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }








/*SCROLL TO TOP*/
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 170, 0, 0.4);
    color: var(--color-bg);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

    #scrollToTopBtn:hover {
        background-color: #e69b00;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3), 0 0 14px rgba(255, 170, 0, 0.5);
        transform: translateY(-3px);
    }

    #scrollToTopBtn {
  opacity: 0;
  visibility: hidden;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 480px) {
    #scrollToTopBtn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}




/* HERO */
.hero {
    position: relative;
    min-height: 100svh; /* mobile-safe full height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video geçiş animasyonu */
.fade-video {
    filter: blur(4px);
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

    .fade-video.show {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }

/* Video arka plan */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* ✔ mobilde düzgün gösterim */
    z-index: -2;
    display: block;
}

/* Hero overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Hero içerik */
.hero-inner {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    text-align: left;
}

#about,
#services,
#projects,
#faq,
#contact {
    scroll-margin-top: var(--header-height);
}


.hero-text {
    color: #fff;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1s ease forwards;
}

    .hero-text h1 {
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

        .hero-text h1::after {
            content: '';
            display: block;
            width: 700px;
            height: 4px;
            background: linear-gradient(to left, var(--color-accent) 0%, transparent 100%);
            margin-top: 0.5rem;
            border-radius: 2px;
        }

    .hero-text p {
        font-size: 1.3rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255,170,0,0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn:hover {
        background: #e69b00;
        box-shadow: 0 6px 16px rgba(255,170,0,0.4);
        transform: translateY(-3px);
    }

    .btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transform: skewX(-20deg);
        transition: 0.5s;
    }

    .btn:hover::after {
        left: 125%;
    }

    .btn i {
        margin-right: 0.5rem;
        font-size: 1.1rem;
        vertical-align: middle;
    }

.hero-stats {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

    .stat-box:hover {
        transform: translateY(-5px);
    }

    .stat-box strong {
        display: block;
        font-size: 2rem;
        color: var(--color-accent);
    }

    .stat-box span {
        font-size: 0.9rem;
        color: #eee;
    }

/* Video seçici */
.video-selector {
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.6rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.1);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

    .video-selector button {
        width: 60px;
        height: 5px;
        background-color: rgba(255, 255, 255, 0.3);
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s ease;
        align-self: flex-end;
    }

        .video-selector button:hover {
            background-color: rgba(255, 255, 255, 0.6);
        }

        .video-selector button.active {
            width: 80px;
            height: 6px;
            background-color: var(--color-accent);
            box-shadow: 0 0 8px rgba(255, 170, 0, 0.4);
        }

/* Responsive */
@media (max-width: 768px) {
    .hero-inner {
        padding: 0 1.5rem;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

        .hero-text h1 {
            font-size: 2.2rem;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

            .hero-text h1::after {
                width: 200px;
                margin: 0.75rem auto 0;
            }

        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 95%;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-box {
        width: 90%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-inner {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .hero-buttons {
        gap: 0.6rem;
    }

    .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

        .btn i {
            font-size: 1rem;
        }

    .hero-stats {
        margin-top: 1rem;
    }

    .stat-box {
        width: 95%;
        padding: 0.8rem 1rem;
    }

        .stat-box strong {
            font-size: 1.4rem;
        }

        .stat-box span {
            font-size: 0.85rem;
        }

    .video-selector {
        bottom: 0.8rem;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        padding: 0.3rem 0.6rem;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 8px;
        gap: 0.4rem;
    }

        .video-selector button {
            width: 36px;
            height: 5px;
        }

            .video-selector button.active {
                width: 50px;
                height: 6px;
            }
}

@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .stat-box {
        width: 100%;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

        .btn i {
            font-size: 0.95rem;
        }
}











/* SECTIONS */
section {
    padding: 4rem 2rem;
    background: var(--color-bg);
}

    section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        color: var(--color-accent);
        position: relative;
    }

        section h2::after {
            content: '';
            width: 60px;
            height: 3px;
            background: var(--color-accent);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

@media (max-width: 992px) {
    .services-section {
        padding: 3rem 1.5rem;
    }

    .service-cards {
        grid-template-columns: 1fr; /* Tek sütuna geçiş */
        gap: 2rem;
    }

    .card {
        max-width: 100%;
        margin: 0 auto;
    }

    .card-content {
        text-align: center;
        padding: 1.5rem 1.2rem;
    }

        .card-content .icon {
            font-size: 1.8rem;
        }

        .card-content h3 {
            font-size: 1.25rem;
        }

    .card-features li {
        justify-content: center;
        font-size: 0.95rem;
    }

    .card-btn-alt {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

        section h2::after {
            width: 40px;
            height: 2px;
            bottom: -8px;
        }

    .card-content h3 {
        font-size: 1.15rem;
    }

    .card-content .icon {
        font-size: 1.5rem;
    }

    .card-features li {
        font-size: 0.9rem;
    }

    .card-btn-alt {
        font-size: 0.9rem;
    }
}





/* HAKKIMIZDA */
.about-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: none; /* sınırsız genişlik */
    overflow: hidden;
    flex: 1.2; /* görsel alanı daha fazla kaplasın */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* Masking (sol opak → sağ saydam) */
    -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
    mask-image: linear-gradient(to right, black 60%, transparent 100%);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--color-text);
    flex: 1;
}

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: var(--color-accent);
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        color: #444;
    }

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

    .about-highlights li {
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        color: #333;
    }

        .about-highlights li i {
            color: var(--color-accent);
            margin-right: 0.6rem;
            font-size: 1.1rem;
        }

.btn-outline i {
    margin-right: 0.4rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text {
        align-items: center;
    }

    .about-highlights {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-inner {
        padding: 0 1rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-highlights li {
        font-size: 0.9rem;
    }

        .about-highlights li i {
            font-size: 1rem;
            margin-right: 0.5rem;
        }

    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }

    .about-image img {
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        mask-image: none;
        -webkit-mask-image: none;
    }
}



/* SERVICES SECTION */
.services-section {
    background: #ffffff; /* Saf beyaz arka plan */
    padding: 6rem 2rem;
}

    /* Başlık */
    .services-section h2 {
        color: var(--color-accent); /* Eskisi gibi sarı */
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 800;
        letter-spacing: 2px;
        position: relative;
    }

        .services-section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--color-accent);
            margin: 0.5rem auto 0;
            border-radius: 2px;
            animation: slideLine 1.2s ease-out;
        }

@keyframes slideLine {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 80px;
        opacity: 1;
    }
}

/* Kart Grid */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Kart Genel */
.card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    border-top: 4px solid var(--color-accent); /* Kartların üstünde ince sarı çizgi */
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.5s ease, border-color 0.5s ease;
    will-change: transform;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

    .card:hover {
        transform: perspective(600px) translateY(-15px) scale(1.05) rotateX(2deg);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        border-top-color: var(--color-primary);
        border: 2px solid rgba(255, 215, 0, 0.5);
    }

        .card:hover .card-content h3 {
            color: var(--color-primary);
            transform: scale(1.05);
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .card:hover .card-features li {
            color: #000;
        }

/* Resim Bölümü */
.card-image {
    position: relative;
    overflow: hidden;
}

    .card-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.6s ease, filter 0.4s ease;
        will-change: transform;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    }

.card:hover .card-image img {
    transform: scale(1.15) rotateZ(1deg) translateY(-5px);
    filter: brightness(1.05) contrast(1.1);
}

.card-content {
    padding: 1.2rem 1rem;
}

/* CTA Butonu */
.card-btn-alt {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), #ff944d); /* örnek degrade */
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .card-btn-alt::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
        transition: left 0.4s ease;
    }

    .card-btn-alt:hover::before {
        left: 100%;
    }

    .card-btn-alt:hover {
        background: linear-gradient(135deg, #fbb034, #ffdd00); /* hover için özel degrade */
        transform: translateY(-2px) scale(1.04);
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
    }

    .card-btn-alt i {
        margin-right: 6px;
        vertical-align: middle;
    }


/* CTA Responsive*/
@media (max-width: 480px) {
    .card-btn-alt {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        border-radius: 10px;
        gap: 0.5rem;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        transition: all 0.35s ease;
    }

        .card-btn-alt i {
            font-size: 1.1rem;
            margin-right: 0;
        }

        /* Hover efektini mobilde sadeleştirme */
        .card-btn-alt:hover {
            transform: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .card-btn-alt::before {
            display: none;
        }
}



/* İçerik Bölümü */
.card-content {
    padding: 1.5rem;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0.95;
}

.card:hover .card-content {
    transform: translateY(-3px);
    opacity: 1;
}

    .card-content .icon {
        font-size: 2rem;
        color: var(--color-accent);
        margin-bottom: 0.5rem;
        transition: transform 0.5s ease;
    }

.card:hover .card-content .icon {
    transform: rotate(15deg) scale(1.1);
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

/* Özellikler Listesi */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .card-features li {
        position: relative;
        padding-left: 1.4rem;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        color: #555;
    }

        .card-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--color-accent);
            font-weight: bold;
        }


@media (max-width: 1024px) {
    .services-section {
        padding: 4rem 1.5rem;
    }

        .services-section h2 {
            font-size: 2.2rem;
        }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-content .icon {
        font-size: 1.8rem;
    }

    .card-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 1rem;
    }

        .services-section h2 {
            font-size: 2rem;
        }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-image img {
        height: 200px;
    }

    .card-content {
        padding: 1.2rem 1rem;
    }

        .card-content h3 {
            font-size: 1.2rem;
        }

    .card-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 2.5rem 1rem;
    }

        .services-section h2 {
            font-size: 1.75rem;
        }

    .card {
        border-radius: 12px;
    }

    .card-image img {
        height: 180px;
    }

    .card-content h3 {
        font-size: 1.1rem;
    }

    .card-content .icon {
        font-size: 1.6rem;
    }

    .card-features li {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }

        .card-features li::before {
            font-size: 0.85rem;
        }

    .card-btn-alt {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}



/* ==== PROJECTS GRID – ÖZEL STİLLER ====================== */
.project-card {
    position: relative;
    width: 100%;
    max-width: 600px; /* veya 360px gibi daha küçük */
    aspect-ratio: 16 / 10; /* oran sabit kalır */
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: auto;
    border: 2px solid transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; /* KARTLAR ARASI BOŞLUK */
    justify-content: center;
}

    .project-card:hover {
        transform: scale(1.015);
        border: 2px solid rgba(255, 200, 0, 0.4);
        box-shadow: 0 14px 36px rgba(255, 200, 0, 0.2);
    }



.card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
    transform: scale(1); /* varsayılan */
    will-change: transform;
    transform-origin: center center;
}

.project-card:hover .card-img {
    transform: scale(1.02);
}

.project-info {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1.2rem 1rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    backdrop-filter: blur(1px);
}

    /* Yazı stilleri */
    .project-info h3 {
        margin: 0 0 0.4rem;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .project-info p {
        margin: 0 0 0.6rem;
        font-size: 0.9rem;
        opacity: 0.9;
    }

/* Etiketler */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.ptag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #fff;
}

/* Buton */
.project-btn {
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    background: linear-gradient(135deg, var(--color-accent), #ff944d);
    color: #fff;
    text-decoration: none;
    border-radius: 999px; /* tamamen yuvarlak kenarlar */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .project-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 120%;
        height: 100%;
        background: rgba(255,255,255,0.25);
        transform: skewX(-20deg);
        transition: left 0.5s ease;
    }

    .project-btn:hover::after {
        left: 100%;
    }

    .project-btn:hover {
        background: linear-gradient(135deg, #fbb034, #ffdd00);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

/*  tüm projeler butonu  */
.all-projects-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.all-projects-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

    .all-projects-btn i {
        margin-left: 8px;
        transition: transform var(--transition-fast);
    }

    .all-projects-btn:hover {
        background-color: #ff9900; /* Daha koyu bir turuncu tonu */
        transform: translateY(-2px);
    }

        .all-projects-btn:hover i {
            transform: translateX(4px);
        }


/* Projects Responsive */
@media (max-width: 480px) {
    .project-card {
        max-width: 100%;
        aspect-ratio: auto; /* yüksekliği içerik belirlesin */
        flex-direction: column;
        align-items: stretch;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        margin: 1rem auto;
    }

    .card-img {
        position: relative;
        height: 180px;
        transform: none !important;
    }

    .project-card:hover {
        transform: none;
        border: 2px solid rgba(255, 200, 0, 0.2);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .project-info {
        padding: 1rem;
        backdrop-filter: none;
        background: #222; /* opak, okunaklı zemin */
    }

        .project-info h3 {
            font-size: 1rem;
            text-align: center;
        }

        .project-info p {
            font-size: 0.85rem;
            text-align: center;
        }

    .project-tags {
        justify-content: center;
    }

    .project-btn {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 12px;
        transform: none !important;
    }

        

        .project-btn::after {
            display: none;
        }
}









/* SIKÇA SORULAN SORULAR */
.faq-section {
    background: var(--color-bg);
    padding: 5rem 2rem;
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-title h2 {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.faq-title .highlight {
    color: #dcdcdc;
}

.faq-title .black {
    color: #000;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Accordion */
.accordion-item {
    background: var(--color-secondary);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .accordion-item:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }


.accordion-header {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-accent);
    cursor: pointer;
    text-align: left;
    width: 100%;
    position: relative;
    transition: background 0.3s ease;
}

    .accordion-header::after {
        content: '+';
        position: absolute;
        right: 1.5rem;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .accordion-header.active::after {
        content: '–';
    }

    .accordion-header:hover {
        background-color: rgba(0, 0, 0, 0.03);
        transition: background-color 0.3s ease;
    }

.accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #444;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

    .accordion-body.active {
        max-height: 1000px;
        padding: 1rem 1.5rem;
        opacity: 1;
    }

/* Responsive */
@media (max-width: 992px) {
    .faq-inner {
        grid-template-columns: 1fr;
    }

    .faq-title {
        text-align: center;
    }

        .faq-title h2 {
            font-size: 2rem;
        }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-title h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .accordion-header {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }

        .accordion-header::after {
            right: 1.2rem;
            font-size: 1rem;
        }

    .accordion-body {
        font-size: 0.9rem;
        padding: 0 1.2rem;
    }

        .accordion-body.active {
            padding: 0.8rem 1.2rem;
        }

    .faq-content {
        gap: 1rem;
    }
}


/* === İLETİŞİM BÖLÜMÜ – TAM RESPONSIVE CSS === */

/* Genel Grid Yapısı */
.contact-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* Mobilde Tek Sütun */
@media (max-width: 768px) {
    .contact-inner {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Form Alanı */
.contact-form {
    background: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    padding: 2.5rem;
}

@media (max-width: 576px) {
    .contact-form {
        padding: 1.5rem;
    }
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: 1.5rem;
}

@media(min-width:768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Form Alanları */
.form-group {
    position: relative;
    margin-bottom: 1.6rem;
}

    .form-group i {
        position: absolute;
        right: 1.2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.1rem;
        color: #bbb;
        pointer-events: none;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        background: #f7f7f7;
        border: 2px solid transparent;
        border-radius: 8px;
        padding: 1rem 3rem 1rem 1rem;
        font-size: 1rem;
        line-height: 1.4;
        transition: border .3s, background .3s;
    }

    .form-group textarea {
        resize: none;
        min-height: 140px;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: #fff;
            border-color: var(--color-accent);
        }

            .form-group input:focus ~ i,
            .form-group textarea:focus ~ i {
                color: var(--color-accent);
            }

    /* Floating Label */
    .form-group label {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
        color: #777;
        pointer-events: none;
        transition: .25s ease;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
        top: -10px;
        left: .8rem;
        font-size: .8rem;
        background: var(--color-secondary);
        padding: 0 .25rem;
        color: var(--color-accent);
    }

/* Gönder Butonu */
.send-btn {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: .75rem 2.3rem;
    border-radius: 28px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    position: relative;
    overflow: hidden;
    transition: background .35s;
}

    .send-btn::after {
        content: '';
        position: absolute;
        left: -120%;
        top: 0;
        width: 120%;
        height: 100%;
        background: rgba(255,255,255,.25);
        transform: skewX(-20deg);
        transition: left .7s ease;
    }

    .send-btn:hover {
        background: #e69b00;
    }

        .send-btn:hover::after {
            left: 100%;
        }

@media (max-width: 576px) {
    .send-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* İletişim Bilgileri */
.contact-info {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

    .contact-info h2 {
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .contact-info p {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: 1rem;
        font-size: .95rem;
        color: var(--color-text);
    }

/* Sosyal Link */
.contact-social {
    margin-top: 1rem;
    text-align: center;
}

    .contact-social a {
        display: inline-block;
        margin-right: 1rem;
        font-size: 1.3rem;
        color: var(--color-text);
        transition: color .3s;
    }

        .contact-social a:hover {
            color: var(--color-accent);
        }

.contact-info i {
    color: #FFAA00;
}

/* Fotoğraf ve Harita */
.contact-photo img,
.contact-map img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    object-fit: cover;
}

/* Responsive Görsel Ayarı */
@media (max-width: 768px) {
    .contact-photo img,
    .contact-map img {
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        margin: 0 auto;
    }

    .contact-photo,
    .contact-map {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-photo img,
    .contact-map img {
        box-shadow: none;
        border-radius: 3px;
    }

    .contact-photo,
    .contact-map {
        padding: 0 0.5rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
}




/* KVKK CSS */
.kvkk-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 3px solid var(--color-accent);
    display: inline-block;
    padding-bottom: 0.4rem;
}

/* KVKK Content Container */
.kvkk-content {
    background-color: var(--color-secondary);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.8;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

    /* Alt Başlıklar */
    .kvkk-content h2 {
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--color-accent);
        margin-top: 2.2rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    /* Liste Stili */
    .kvkk-content ul {
        margin-left: 1.5rem;
        padding-left: 0.5rem;
        list-style: disc;
    }

    .kvkk-content li {
        margin-bottom: 0.5rem;
    }

    /* Linkler */
    .kvkk-content a {
        color: var(--color-accent);
        text-decoration: underline;
        transition: color var(--transition-fast);
    }

        .kvkk-content a:hover {
            color: var(--color-primary);
        }


.kvkk-faq details {
    background-color: var(--color-secondary);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: background-color var(--transition-fast);
    cursor: pointer;
}

.kvkk-faq summary {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-accent);
    outline: none;
}

.kvkk-faq p {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: var(--color-text);
}

/* Güncelleme tarihi stili */
.kvkk-updated {
    margin-top: 3rem;
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.65;
}


/* Kutu ve responsive görünüm */
@media (max-width: 768px) {
    .kvkk-content {
        padding: 1.5rem 1.2rem;
        font-size: 1rem;
    }

    .kvkk-title {
        font-size: 1.8rem;
    }
}


/*      PRİVACY CSS     */
.privacy-policy {
    max-width: 850px;
    margin: auto;
    padding: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-secondary);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

    .privacy-policy h1 {
        font-size: 2.2rem;
        color: var(--color-primary);
        margin-bottom: 1.5rem;
        border-bottom: 3px solid var(--color-accent);
        padding-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .privacy-policy h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        color: var(--color-accent);
        position: relative;
    }

        .privacy-policy h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--color-accent);
            margin-top: 0.4rem;
            border-radius: 5px;
        }

    .privacy-policy ul {
        list-style-type: disc;
        padding-left: 1.5rem;
        margin-top: 0.5rem;
    }

    .privacy-policy a {
        color: var(--color-link);
        font-weight: 500;
        text-decoration: underline;
        transition: color var(--transition-fast);
    }

        .privacy-policy a:hover {
            color: var(--color-accent);
        }

    .privacy-policy .text-muted {
        font-size: 0.95rem;
        margin-top: 2rem;
        color: var(--color-muted);
        font-style: italic;
    }

/* Navigasyon */

.privacy-nav {
    background: var(--color-bg);
    padding: 1.2rem;
    border: 1px solid #ddd;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: background-color var(--transition-fast);
}

    .privacy-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .privacy-nav a {
        color: var(--color-link);
        font-weight: 600;
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background-color var(--transition-fast), color var(--transition-fast);
    }

        .privacy-nav a:hover {
            background-color: var(--color-accent);
            color: white;
            text-decoration: none;
        }


/* Responsive: Küçük ekranlar için optimize */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 1.2rem;
        font-size: 1rem;
        line-height: 1.6;
    }

        .privacy-policy h1 {
            font-size: 1.7rem;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.2rem;
        }

        .privacy-policy h2 {
            font-size: 1.3rem;
        }

        .privacy-policy ul {
            padding-left: 1.2rem;
        }

        .privacy-policy .text-muted {
            font-size: 0.9rem;
        }

    .privacy-nav {
        padding: 1rem;
    }

        .privacy-nav ul {
            flex-direction: column;
            gap: 0.7rem;
            align-items: stretch;
        }

        .privacy-nav a {
            text-align: center;
            padding: 0.6rem 0.8rem;
            font-size: 0.95rem;
        }
}

/* Ekstra küçük cihazlar (telefonlar) için */
@media (max-width: 480px) {
    .privacy-policy {
        padding: 1rem;
        font-size: 0.95rem;
    }

        .privacy-policy h1 {
            font-size: 1.5rem;
        }

        .privacy-policy h2 {
            font-size: 1.2rem;
        }

    .privacy-nav a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}






/* --------------------------------------------------------------- */
/*  Responsive düzen                                               */
/* --------------------------------------------------------------- */
@media (max-width: 992px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info {
        padding: 2rem;
    }

        .contact-info h2,
        .contact-form h2 {
            text-align: center;
        }

    .contact-social {
        text-align: center;
    }

    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-inner {
        padding: 0 1rem;
        gap: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

        .contact-form h2,
        .contact-info h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.9rem 2.8rem 0.9rem 1rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label {
        font-size: 0.75rem;
        top: -10px;
    }

    .send-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        text-align: left;
    }

    .contact-social {
        text-align: center;
    }

        .contact-social a {
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
        }

    .contact-map {
        margin-top: 1rem;
    }

        .contact-map iframe {
            height: 250px;
            border-radius: 4px;
        }
}




/* MEDIA */
@media (max-width:992px) {
    .about-inner, .contact-inner {
        grid-template-columns: 1fr;
    }
}


/*ABOUT SAYFASI*/
/* ABOUT HERO */
.about-hero {
    background-image: url('/images/about-hero-1920.webp');
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

    .about-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .about-hero::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
        pointer-events: none;
    }

.about-hero-inner {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* GENERAL SECTION PADDING */
.section-padding {
    padding: 4rem 2rem;
}

/* ABOUT STORY */
.about-story-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.story-text {
    flex: 1 1 50%;
}

    .story-text p {
        margin-bottom: 1rem;
        color: #555;
        font-size: 1rem;
        line-height: 1.7;
    }

.story-image {
    flex: 1 1 45%;
    max-width: 500px;
}

    .story-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

/* ABOUT VALUES */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-box {
    background: var(--color-secondary);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s ease;
}

    .value-box:hover {
        background: var(--color-accent);
        color: #fff;
    }

    .value-box i {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--color-accent);
    }

    .value-box:hover i {
        color: #fff;
    }

    .value-box h4 {
        margin-bottom: 0.5rem;
    }


/* NEW: ABOUT VISION SECTION (GELİŞMİŞ TASARIM) */
.about-vision {
    background: #f4f8fc;
}

.vision-title {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

    .vision-title h2 {
        font-size: 2.2rem;
        color: var(--color-primary);
        margin-bottom: 1rem;
    }

    .vision-title p {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.6;
    }

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-box {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .vision-box:hover {
        background: var(--color-primary);
        color: #fff;
        transform: translateY(-5px);
    }

    .vision-box h3 {
        font-size: 1.6rem;
        margin: 1rem 0 0.8rem;
        color: var(--color-primary);
        transition: 0.3s ease;
    }

    .vision-box p {
        font-size: 1rem;
        color: #555;
        line-height: 1.7;
        transition: 0.3s ease;
    }

    .vision-box:hover h3,
    .vision-box:hover p {
        color: #fff;
    }

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: #fff;
    transition: 0.3s ease;
}

.vision-box:hover .icon-circle {
    background: #fff;
    color: var(--color-primary);
}

/* Responsive Düzen */
@media (max-width: 576px) {
    /* HERO */
    .about-hero {
        height: auto;
        min-height: 40vh;
        background-size: cover;
        padding: 2rem 1rem;
        text-align: center;
    }

        .about-hero h1 {
            font-size: 1.5rem;
            line-height: 1.3;
        }

        .about-hero p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin-top: 0.5rem;
        }

    /* STORY */
    .about-story-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .story-text {
        flex: 1 1 100%;
    }

        .story-text p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

    .story-image {
        width: 100%;
        max-width: 100%;
    }

        .story-image img {
            border-radius: 6px;
        }

    /* VISION */
    .vision-title h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .vision-title p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .vision-box {
        padding: 1.3rem 1rem;
    }

        .vision-box h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .vision-box p {
            font-size: 0.93rem;
            line-height: 1.5;
        }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    /* VALUES */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .value-box {
        padding: 1.8rem 1.2rem;
    }

        .value-box h4 {
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }

        .value-box p {
            font-size: 0.93rem;
            line-height: 1.5;
        }

    /* CTA */
    .about-cta {
        padding: 2.5rem 1rem;
        margin: 2rem 1rem;
        border-radius: 6px;
    }

        .about-cta h2 {
            font-size: 1.4rem;
            line-height: 1.3;
        }

        .about-cta p {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .about-cta .btn {
            width: 100%;
            font-size: 0.95rem;
            padding: 0.65rem 1.2rem;
            justify-content: center;
        }
}



/* NEW: ABOUT CTA SECTION */
.about-cta {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 900px;
}

    .about-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .about-cta .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }


@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
}

.about-cta .btn.pulse {
    animation: pulseGlow 2s infinite;
}


/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .about-story-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .story-image {
        max-width: 350px;
    }

    .vision-box {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .about-cta h2 {
        font-size: 1.6rem;
    }

    .about-cta p {
        font-size: 1rem;
    }

    .about-cta .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}





/* ========================================================== */
/*   PROJELER — SHOWCASE GRID  (tam sayfa)                    */
/* ========================================================== */

.projects-showcase-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

    .projects-showcase-section h2 {
        text-align: center;
        font-size: 2.75rem;
        letter-spacing: .3px;
        color: var(--color-accent);
        margin-bottom: 3rem;
    }

.projects-showcase {
    --col: repeat(auto-fit,minmax(320px,1fr));
    display: grid;
    grid-template-columns: var(--col);
    gap: 2rem;
    max-width: 1300px;
    margin: auto;
}

/* ==== Kart ==== */
.ps-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.07);
    transition: transform .5s cubic-bezier(.25,.8,.25,1), box-shadow .5s cubic-bezier(.25,.8,.25,1);
    border-top: 4px solid var(--color-accent);
}

    .ps-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 22px 44px rgba(0,0,0,.14);
    }

/* Görsel */
.ps-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

    .ps-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

.ps-card:hover .ps-media img {
    transform: scale(1.08) rotate(.6deg);
}

/* Yıl rozeti */
.ps-year {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: .8rem;
    padding: .25rem .7rem;
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

/* İçerik */
.ps-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem 1.55rem 2.4rem;
}

    .ps-body h3 {
        font-size: 1.55rem;
        margin: 0;
        color: var(--color-primary);
        line-height: 1.25;
    }

.ps-summary {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* İstatistik rozetleri */
.ps-stats {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ps-stats li {
        background: var(--color-secondary);
        padding: .35rem .8rem;
        border-radius: 14px;
        font-size: .85rem;
        color: #444;
        display: flex;
        align-items: center;
        gap: .35rem;
    }

    .ps-stats i {
        color: var(--color-accent);
    }

/* Buton */
.ps-btn {
    align-self: flex-start;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 600;
    font-size: .92rem;
    padding: .7rem 1.8rem;
    border-radius: 28px;
    color: #fff;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
    transition: transform .35s,box-shadow .35s,background .35s;
}

    .ps-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 120%;
        height: 100%;
        background: rgba(255,255,255,.3);
        transform: skewX(-20deg);
        transition: left .7s ease;
    }

    .ps-btn:hover {
        background: #e69b00;
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,.22);
    }

        .ps-btn:hover::after {
            left: 100%;
        }

/* Responsive */
@media(max-width:576px) {
    .projects-showcase {
        gap: 1.5rem;
    }

    .ps-body {
        padding: 1.4rem 1.3rem 2rem;
    }

        .ps-body h3 {
            font-size: 1.35rem;
        }
}






/* DARK MODE BUTONU */
/* =============================== */
/*      DARK MODE SWITCH BUTTON   */
/* =============================== */

.theme-switch {
    position: relative;
    width: 100px;
    height: 38px;
    display: inline-block;
}

    .theme-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* Kaydırma alanı */
.slider-text {
    background-color: var(--color-secondary);
    border-radius: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: background-color 0.4s ease;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0); /* Glow için alan */
}

/* Glow efekti - Dark aktifken */
.theme-switch input:checked + .slider-text {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: inset 0 0 8px rgba(255, 170, 0, 0.1), 0 0 6px rgba(255, 170, 0, 0.15);
}

/* Etiketler */
.label-light, .label-dark {
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

/* Başlangıç durumu */
.label-light {
    opacity: 0;
    transform: translateX(-8px);
}

.label-dark {
    opacity: 1;
    transform: translateX(0);
}

/* Dark mod seçilince */
.theme-switch input:checked + .slider-text .label-light {
    opacity: 1;
    transform: translateX(0);
    color: #000;
}

.theme-switch input:checked + .slider-text .label-dark {
    opacity: 0;
    transform: translateX(8px);
}

/* Toggle topu */
.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: left 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    will-change: transform;
}

/* Sağ tarafa geçiş */
.theme-switch input:checked + .slider-text .toggle-knob {
    left: 65px;
}

/* =============== RESPONSIVE =============== */

@media (max-width: 480px) {
    .theme-switch {
        width: 84px;
        height: 32px;
    }

    .toggle-knob {
        width: 26px;
        height: 26px;
    }

    .theme-switch input:checked + .slider-text .toggle-knob {
        left: 54px;
    }

    .slider-text {
        font-size: 0.75rem;
        padding: 0 10px;
    }
}




/*  DARK MODE ÖZEL TANIMLAR  */
body.dark-mode {
    background-color: var(--color-bg);
    color: var(--color-text);
}

    /* Navbar */
    body.dark-mode header.site-header {
        background: #1e1e1e;
        color: var(--color-text);
    }

@media (max-width: 768px) {
    body.dark-mode .nav-links {
        background: #1e1e1e;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

        body.dark-mode .nav-links li a {
            color: #FFAA00;
            border-bottom: 1px solid #333;
        }

            body.dark-mode .nav-links li a:hover {
                background-color: #2a2a2a;
                color: var(--color-accent);
            }
}


    /* Footer */
    body.dark-mode .site-footer,
    body.dark-mode .footer-inner,
    body.dark-mode .footer-bottom {
        background: #1a1a1a;
        color: #ccc;
    }

    body.dark-mode .footer-brand p {
        color: #bbb;
    }

    body.dark-mode .footer-links h4 {
        color: #f1f1f1;
    }


    body.dark-mode .footer-links a,
    body.dark-mode .footer-contact p,
    body.dark-mode .footer-social a{
        color: #bbb;
    }

    body.dark-mode .footer-contact h4 {
        color: #f1f1f1; 
    }

    /*Hakkımda Kısmı*/
    body.dark-mode .about-text p,
    body.dark-mode .about-highlights li {
        color: #bbb;
    }

    /*Servisler Kısmı*/
    body.dark-mode .services-section {
        background: var(--color-bg);
    }

    body.dark-mode .card-features li {
        color: #bbb;
    }
    body.dark-mode .card:hover .card-features li {
        color: #f1f1f1;
    }


    /* Kartlar (Services, Projects, About) */
    body.dark-mode .card,
    body.dark-mode .ps-card,
    body.dark-mode .value-box {
        background: #1d1d1d;
        color: var(--color-text);
        border-color: #333;
    }

    body.dark-mode .project-btn {
        color: #121212;
    }

    body.dark-mode .all-projects-btn {
        background-color: var(--color-accent);
        color: #121212;
    }

        body.dark-mode .all-projects-btn:hover {
            background-color: #e6ac00; /* accent renginin biraz koyusu */
            transform: translateY(-2px);
        }

        body.dark-mode .all-projects-btn i {
            color: #121212;
        }

    /* faq başlık*/
    body.dark-mode .black{
        color: #ddd;
    }

    body.dark-mode .ps-summary {
        color: #2a2a2a;
    }

    /* Accordion */
    body.dark-mode .accordion-item {
        background: #2a2a2a;
    }

    body.dark-mode .accordion-body {
        background: #1f1f1f;
        color: #ddd;
    }

    /* Form alanları */
    body.dark-mode input,
    body.dark-mode textarea {
        background: #2a2a2a;
        color: #bbb;
        border-color: #444;
    }

    /*instagram link*/
    body.dark-mode .contact-social a {
        position: relative;
    }

        body.dark-mode .contact-social a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0%;
            height: 2px;
            background-color: var(--color-accent);
            transition: width 0.3s ease;
        }

        body.dark-mode .contact-social a:hover::after {
            width: 100%;
        }


    /*Footer İnstagram*/
    body.dark-mode .footer-social a {
        color: #ddd; /* açık renk */
        position: relative;
        text-decoration: none;
    }

        body.dark-mode .footer-social a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0%;
            height: 2px;
            background-color: var(--color-accent);
            transition: width 0.3s ease;
        }

        body.dark-mode .footer-social a:hover::after {
            width: 100%;
        }

        body.dark-mode .footer-social a:hover {
            color: var(--color-accent);
        }


    body.dark-mode label {
        color: #ccc;
    }

    /* Linkler */
    body.dark-mode a {
        color: var(--color-accent);
    }

    /* Butonlar */
    body.dark-mode .btn,
    body.dark-mode .card-btn-alt,
    body.dark-mode .send-btn {
        background: var(--color-accent);
        color: #111;
    }

    /* Hero yazıları (zaten beyaz ama sağlamlaştırmak için) */
    body.dark-mode .hero-text {
        color: #fff;
    }

    /*alt imza*/
    body.dark-mode .footer-bottom {
        border-top: 1px solid #333; /* Daha koyu bir çizgi */
    }

        body.dark-mode .footer-bottom p {
            color: #aaa; /* Açık gri metin rengi */
        }

        body.dark-mode .footer-bottom a {
            color: var(--color-accent);
        }

            body.dark-mode .footer-bottom a:hover {
                color: #fff; /* Açık renk vurgulu link */
                text-shadow: 0 0 6px rgba(255, 193, 7, 0.4); /* Yeni accent rengine uygun glow */
            }


    /* PROJECT SAYFASI DARK MODE ÖZEL */
    /* === Projeler Sayfası - Dark Mode Uyumları === */
    body.dark-mode .projects-showcase-section {
        background-color: var(--color-bg);
        color: var(--color-text);
    }

        body.dark-mode .projects-showcase-section h2 {
            color: var(--color-text);
        }

    body.dark-mode .ps-card {
        background-color: var(--color-secondary);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        transition: background-color 0.3s ease;
    }

        body.dark-mode .ps-card:hover {
            background-color: #2a2a2a;
        }

    body.dark-mode .ps-media img {
        border-radius: 8px;
    }

    body.dark-mode .ps-year {
        background-color: rgba(255, 255, 255, 0.1);
        color: #eee;
    }

    body.dark-mode .ps-body h3 {
        color: var(--color-primary);
    }

    body.dark-mode .ps-summary {
        color: #ccc;
    }

    body.dark-mode .ps-stats {
        color: #bbb;
    }

        body.dark-mode .ps-stats i {
            color: var(--color-accent);
        }

    body.dark-mode .ps-btn {
        background-color: var(--color-accent);
        color: #000;
        border: none;
        padding: 0.6rem 1.3rem;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        transition: background 0.3s ease, transform 0.3s ease;
    }

        body.dark-mode .ps-btn:hover {
            background-color: #e0a800;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
        }



/* HAKKIMIZDA SAYFASI DARK MODE ÖZEL */
    /* === DARK MODE: ABOUT VISION === */
    body.dark-mode .about-story-inner p {
        color: #bbb;
    }


    body.dark-mode .about-vision {
        background: var(--color-bg);
    }

    body.dark-mode .vision-title h2 {
        color: var(--color-primary);
    }

    body.dark-mode .vision-title p {
        color: #bbb;
    }

    body.dark-mode .vision-box {
        background: var(--color-secondary);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
    }

        body.dark-mode .vision-box h3 {
            color: var(--color-primary);
        }

        body.dark-mode .vision-box p {
            color: #ccc;
        }

        body.dark-mode .vision-box:hover {
            background: var(--color-accent);
            color: #fff;
        }

            body.dark-mode .vision-box:hover h3,
            body.dark-mode .vision-box:hover p {
                color: #fff;
            }

    body.dark-mode .icon-circle {
        background: var(--color-accent);
        color: #000;
    }

    body.dark-mode .vision-box:hover .icon-circle {
        background: #fff;
        color: var(--color-accent);
    }


    /* === DARK MODE: ABOUT CTA === */
    body.dark-mode .about-cta {
        background: var(--color-secondary);
        color: var(--color-primary);
    }

        body.dark-mode .about-cta h2 {
            color: var(--color-primary);
        }

        body.dark-mode .about-cta p {
            color: #ccc;
        }

        body.dark-mode .about-cta .btn {
            background: var(--color-accent);
            color: #000;
            border: none;
        }

            body.dark-mode .about-cta .btn:hover {
                opacity: 0.9;
            }



    /* ─── DARK MODE: ÇEREZ BİLDİRİMİ BANNER ─────────────────────────────── */
    body.dark-mode #cookieConsentBanner.cookie-banner {
        background-color: var(--color-secondary);
        color: var(--color-text);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.7);
    }

        body.dark-mode #cookieConsentBanner.cookie-banner a {
            color: var(--color-accent);
        }

        body.dark-mode #cookieConsentBanner.cookie-banner .btn-success {
            background-color: var(--color-accent);
        }

            body.dark-mode #cookieConsentBanner.cookie-banner .btn-success:hover {
                background-color: #1e7e34;
            }

        body.dark-mode #cookieConsentBanner.cookie-banner .btn-secondary {
            background-color: #495057;
        }

            body.dark-mode #cookieConsentBanner.cookie-banner .btn-secondary:hover {
                background-color: #343a40;
            }

        body.dark-mode #cookieConsentBanner.cookie-banner .btn-outline-light {
            border-color: var(--color-text);
            color: var(--color-text);
        }

            body.dark-mode #cookieConsentBanner.cookie-banner .btn-outline-light:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

    /* ─── DARK MODE: MODAL ÇEREZ AYARLARI ───────────────────────────────── */
    body.dark-mode #cookieSettingsModal .modal-content {
        background-color: var(--color-secondary);
        color: var(--color-text);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    }

    body.dark-mode #cookieSettingsModal .modal-title {
        color: var(--color-accent);
    }

    body.dark-mode #cookieSettingsModal .btn-close {
        filter: invert(1);
    }

    body.dark-mode #cookieSettingsModal .form-check-label,
    body.dark-mode #cookieSettingsModal .form-check small {
        color: var(--color-text);
    }

    body.dark-mode #cookieSettingsModal .modal-footer .btn-primary {
        background-color: var(--color-accent);
        color: var(--color-secondary);
    }

        body.dark-mode #cookieSettingsModal .modal-footer .btn-primary:hover {
            background-color: #e6a600;
        }

    body.dark-mode #cookieSettingsModal .modal-footer .btn-secondary {
        background-color: #495057;
        color: #f1f1f1;
    }

        body.dark-mode #cookieSettingsModal .modal-footer .btn-secondary:hover {
            background-color: #343a40;
        }

