        /* --- Değişkenler ve Temel Ayarlar --- */
        :root {
            --bg-black: #0a0a0a;
            --accent-purple-1: #4400d8;
            --accent-purple-2: #9b0de2;
            --text-white: #ffffff;
            --text-gray: #abb8c3;
            --text-body: #e2e8f0;
            --gradient: linear-gradient(135deg, var(--accent-purple-1), var(--accent-purple-2));
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.05);
            /* Tüm içerik sayfalarında ortak yüzey paleti */
            --surface-page: #1a1d2e;
            --surface-raised: #22253a;
            --surface-muted: rgba(255, 255, 255, 0.04);
            --surface-edge: rgba(255, 255, 255, 0.06);
            --accent-label: #c9a8ff;
        }

        body {
            background-color: var(--bg-black);
            color: var(--text-white);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
        }

        p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            transition: color 0.3s ease;
        }

        /* --- Scroll Animasyon Sınıfları --- */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Buton Tasarımı --- */
        .btn-gradient {
            background: var(--gradient);
            color: var(--text-white);
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .btn-gradient::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, var(--accent-purple-2), var(--accent-purple-1));
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(155, 13, 226, 0.4);
            color: var(--text-white);
        }
        
        .btn-gradient:hover::before {
            opacity: 1;
        }

        /* --- Yeni Buton Tasarımı (MEKANLAR) --- */
        .btn-mekanlar {
            background-color: #3b00e3; /* Görseldeki mora yakın */
            color: var(--text-white);
            border: none;
            padding: 14px 40px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border-radius: 2px; /* Köşeli tasarım */
        }

        .btn-mekanlar:hover {
            background-color: #5118f7;
            color: var(--text-white);
            box-shadow: 0 0 20px rgba(59, 0, 227, 0.5);
        }

        /* --- Sticky Header --- */
        .navbar {
            padding: 25px 0;
            transition: all 0.4s ease;
            background: transparent;
            z-index: 1000;
        }

        .navbar-inner {
            padding-left: 12px;
            padding-right: 24px;
        }

        .navbar.scrolled {
            padding: 15px 0;
            background: rgba(43, 49, 82, 0.96);
            backdrop-filter: blur(15px);
            box-shadow: 0 8px 24px rgba(7, 10, 24, 0.35);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .navbar-brand {
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: 2.2rem;
            font-style: italic;
            color: var(--text-white) !important;
            letter-spacing: 1px;
            line-height: 0.9;
            padding: 0;
            margin-left: -6px;
            margin-right: 28px;
        }
        
        .navbar-brand small {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 4px;
            font-weight: 400;
            font-style: normal;
            display: block;
            color: #ffffff;
            margin-top: 2px;
        }

        .navbar-brand i {
            color: #a855f7; /* Yıldırım rengi */
            text-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
        }

        .navbar-logo-img {
            width: 200px;
            height: 100px;
            object-fit: contain;
            display: block;
            transform: translateX(-4px);
        }

        .nav-link {
            color: #f5f7ff !important;
            font-weight: 500;
            font-size: 0.95rem;
            margin: 0 15px;
            position: relative;
            opacity: 0.85;
            border-radius: 999px;
            padding: 8px 12px !important;
            transition: all 0.3s ease;
            background: rgba(10, 12, 28, 0.35);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
        }

        .nav-link:hover, .nav-link.active {
            opacity: 1;
            color: #ffffff !important;
        }

        .navbar:not(.scrolled) .nav-link:hover,
        .navbar:not(.scrolled) .nav-link.active {
            background: rgba(84, 56, 183, 0.35);
            box-shadow: 0 8px 18px rgba(18, 14, 44, 0.45);
            transform: translateY(-1px);
            text-shadow: 0 0 8px rgba(198, 171, 255, 0.45);
        }

        .navbar.scrolled .nav-link {
            color: #ffffff !important;
            opacity: 0.9;
        }

        .navbar.scrolled .nav-link:hover,
        .navbar.scrolled .nav-link.active {
            color: #ffffff !important;
            opacity: 1;
        }

        .navbar.scrolled .navbar-toggler {
            color: #ffffff !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 50%;
            width: 0; height: 2px;
            background: #6e3ff5;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar:not(.scrolled) .nav-link:hover::after,
        .navbar:not(.scrolled) .nav-link.active::after {
            width: 70%;
            box-shadow: 0 0 14px rgba(142, 81, 255, 0.85);
        }

        .navbar-toggler {
            border: none;
            color: var(--text-white);
            box-shadow: none !important;
        }

        @media (max-width: 991px) {
            .navbar-inner {
                position: relative;
                display: flex;
                align-items: center;
                flex-wrap: nowrap;
                padding-left: 10px;
                padding-right: 10px;
            }

            .navbar-mekanlar-mobile {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                z-index: 5;
                padding: 10px 20px;
                font-size: 0.72rem;
                font-weight: 800;
                letter-spacing: 0.2em;
                border-radius: 10px;
                line-height: 1.2;
                box-shadow: 0 6px 22px rgba(0, 0, 0, 0.42);
            }

            .navbar-brand {
                position: relative;
                z-index: 6;
                margin-left: 0;
                margin-right: 10px;
            }

            .navbar-toggler {
                position: relative;
                z-index: 6;
                border: 1px solid rgba(255, 255, 255, 0.38) !important;
                border-radius: 10px;
                padding: 0.4rem 0.55rem;
            }

            .navbar-logo-img {
                width: 150px;
                height: 75px;
                transform: none;
            }
            .navbar-collapse {
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(15px);
                padding: 20px;
                border-radius: 0;
                margin-top: 15px;
                border: 1px solid rgba(59, 0, 227, 0.3);
            }
            .nav-item {
                text-align: center;
                margin-bottom: 15px;
            }
            .nav-item.ms-lg-4 {
                margin-top: 10px !important;
            }
        }

        /* --- Hero Section (Sadece Slider) --- */
        .hero {
            height: 100vh; /* Ekranı tam olarak kaplar */
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: var(--bg-black);
            /* margin-top: -100px; KALDILIRDI: Alttaki mor boşluğun sebebi buydu. */
        }

        /* Üst menü okunsun ve alt kısımla yumuşak geçiş sağlansın diye hafif gölge efekti */
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(5, 5, 15, 0.35) 0%,
                rgba(10, 10, 20, 0) 22%,
                rgba(10, 10, 20, 0) 72%,
                rgba(5, 5, 12, 0.55) 100%
            );
            z-index: 1;
            pointer-events: none;
        }

        .object-fit-cover {
            object-fit: cover;
            object-position: center;
        }

        /* --- Slider Yavaş Büyüme (Ken Burns) Efekti --- */
        .hero .carousel-item img {
            transform: scale(1.05); /* Resim başlangıçta biraz daha zoomlu başlar */
            transition: transform 12s ease-out; /* Daha uzun ve pürüzsüz büyüme süresi */
        }

        .hero .carousel-item.active img {
            transform: scale(1.2); /* Resim aktif olduğunda %20 oranında daha da büyür */
        }

        .hero-content {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-46%);
            z-index: 12;
            pointer-events: none;
        }

        .hero-glass-panel {
            max-width: 760px;
            padding: 36px 34px;
            border-radius: 0;
            background: transparent;
            border: none;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            pointer-events: auto;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #f8f6ff;
            padding: 0 0 2px 0;
            border-radius: 0;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.45);
            background: transparent;
            margin-bottom: 18px;
            text-shadow:
                0 0 1px rgba(0, 0, 0, 0.9),
                0 2px 16px rgba(0, 0, 0, 0.75),
                0 4px 28px rgba(0, 0, 0, 0.55);
        }

        .hero-heading {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 3.5rem);
            line-height: 1.06;
            color: #ffffff;
            margin-bottom: 14px;
            text-shadow:
                0 0 2px rgba(0, 0, 0, 0.95),
                0 2px 20px rgba(0, 0, 0, 0.85),
                0 6px 40px rgba(0, 0, 0, 0.65),
                0 1px 2px rgba(0, 0, 0, 0.9);
        }

        .hero-heading .accent {
            color: #e4d4ff;
            text-shadow:
                0 0 2px rgba(0, 0, 0, 0.85),
                0 0 24px rgba(120, 70, 200, 0.55),
                0 4px 28px rgba(0, 0, 0, 0.7);
        }

        .hero-description {
            color: #f6f8ff;
            font-size: 1rem;
            max-width: 650px;
            line-height: 1.7;
            margin-bottom: 26px;
            text-shadow:
                0 0 1px rgba(0, 0, 0, 0.95),
                0 2px 14px rgba(0, 0, 0, 0.8),
                0 5px 32px rgba(0, 0, 0, 0.55);
        }

        .hero-action-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }

        .hero-action-row .btn {
            border-radius: 12px;
            font-weight: 700;
            padding: 12px 20px;
        }

        .btn-ghost {
            border: 2px solid rgba(255, 255, 255, 0.85);
            background: transparent;
            color: #ffffff;
            text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }

        .btn-ghost:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
        }

        .hero-trust-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .trust-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 0.85rem;
            color: #f8f9ff;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.55);
            text-shadow:
                0 0 1px rgba(0, 0, 0, 0.9),
                0 2px 12px rgba(0, 0, 0, 0.75);
        }

        @media (max-width: 768px) {
            .hero-content {
                top: 52%;
            }

            .hero-glass-panel {
                margin: 0 12px;
                padding: 24px 18px;
            }

            .hero-description {
                font-size: 0.92rem;
                line-height: 1.6;
            }

            .hero-action-row .btn {
                width: 100%;
            }
        }

        /* --- Hakkımızda Section (Yeni) --- */
        .about-section {
            padding: 100px 0;
            background-color: var(--surface-page);
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--surface-edge);
        }

        .about-img-wrapper {
            position: relative;
            z-index: 2;
            padding: 20px;
        }

        .about-oval {
            width: 100%;
            aspect-ratio: 1.3 / 1; /* Oval görünüm */
            border-radius: 50%;
            border: 8px solid rgba(155, 13, 226, 0.85);
            object-fit: cover;
            box-shadow: 0 0 40px rgba(155, 13, 226, 0.35);
            position: relative;
            z-index: 2;
        }

        /* Sol Taraftaki Dekoratif Çemberler */
        .decor-blue-circle {
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(68, 0, 216, 0.85), rgba(91, 33, 182, 0.65));
            top: -10px;
            left: -30px;
            z-index: 1;
            opacity: 0.9;
        }

        .decor-blue-ring {
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            border: 25px solid rgba(68, 0, 216, 0.45);
            bottom: -30px;
            left: 20px;
            z-index: 1;
            opacity: 0.6;
        }

        .about-subtitle {
            color: var(--accent-label);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }

        .about-title {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 25px;
            font-family: 'Manrope', sans-serif;
        }

        .about-text {
            color: var(--text-body);
            font-size: 0.85rem;
            line-height: 1.8;
            text-align: justify;
            position: relative;
            z-index: 2;
        }

        .about-text p {
            margin-bottom: 1rem;
            color: var(--text-body);
        }

        /* Sağ Taraftaki Noktalı Desen (Dotted Pattern) */
        .decor-dots {
            position: absolute;
            top: -20px;
            right: 10%;
            width: 180px;
            height: 180px;
            background-image: radial-gradient(rgba(201, 168, 255, 0.55) 2px, transparent 2px);
            background-size: 15px 15px;
            border-radius: 50%;
            opacity: 0.4;
            z-index: 0;
        }

        /* --- Neden Biz Section (Yeni) --- */
        .why-us-section {
            padding: 100px 0;
            background-color: var(--surface-page);
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--surface-edge);
        }

        /* Neden Biz - Arka Plan Şekilleri */
        .why-bg-shape {
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            background-color: var(--surface-raised);
            border-top-left-radius: 600px;
            z-index: 0;
        }

        .why-cream-circle {
            position: absolute;
            bottom: 40px;
            right: 3%;
            width: 70px;
            height: 70px;
            background: radial-gradient(circle at 30% 30%, rgba(201, 168, 255, 0.45), rgba(68, 0, 216, 0.25));
            border-radius: 50%;
            z-index: 1;
        }

        .why-dots-left {
            position: absolute;
            bottom: 15%;
            left: 5%;
            width: 150px;
            height: 150px;
            background-image: radial-gradient(rgba(68, 0, 216, 0.45) 2px, transparent 2px);
            background-size: 15px 15px;
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }

        .why-card {
            background-color: var(--surface-muted);
            padding: 50px 30px;
            border-radius: 4px; /* Görseldeki gibi hafif keskin/çok az yuvarlak köşeler */
            text-align: center;
            height: 100%;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.03);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border-top: 2px solid rgba(155, 13, 226, 0.35);
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            border-color: rgba(155, 13, 226, 0.25);
        }

        .why-icon-container {
            font-size: 3.5rem;
            color: var(--accent-purple-2);
            margin-bottom: 25px;
        }

        .why-card h3 {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .why-card p {
            color: var(--text-body);
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* --- İstatistikler (Odometer) --- */
        .stats-section {
            padding: 60px 0;
            background-color: var(--surface-page);
            background-image: linear-gradient(90deg, rgba(68, 0, 216, 0.08), rgba(155, 13, 226, 0.06));
            border-top: 1px solid var(--surface-edge);
            border-bottom: 1px solid var(--surface-edge);
            position: relative;
            z-index: 10;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 5px;
            font-family: 'Manrope', sans-serif;
        }

        .stat-text {
            color: var(--text-gray);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- Hizmetler (Services) --- */
        .services-section {
            padding: 100px 0;
            background-color: var(--surface-page);
            border-top: 1px solid var(--surface-edge);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title p {
            color: var(--text-body);
        }

        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            color: var(--text-white);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .service-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        /* Kartın altına glow efekti eklemek için gizli bir gölge öğesi */
        .service-card::after {
            content: '';
            position: absolute;
            bottom: -20px; left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 20px;
            background: var(--accent-purple-2);
            filter: blur(30px);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px);
            border-color: rgba(155, 13, 226, 0.4);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .service-card h3,
        .why-card h3 {
            text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        }

        .service-card:hover::after {
            opacity: 0.6;
        }

        .service-img-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img-wrapper img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 30px 25px;
        }

        .service-card h3 {
            color: var(--text-white);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .service-card p {
            font-size: 0.85rem;
            line-height: 1.7;
            margin-bottom: 0;
            text-align: justify;
            color: var(--text-body);
        }

        /* --- SSS / Accordion (Yeni Görsele Göre Güncellendi) --- */
        .faq-section {
            background-color: var(--surface-page);
            padding: 80px 0;
            border-top: 1px solid var(--surface-edge);
        }

        .faq-title {
            color: #ffffff;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .accordion-faq {
            border: 1px solid rgba(255, 255, 255, 0.5); /* Dış çerçeve */
            border-bottom: none;
        }

        .accordion-faq .accordion-item {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5); /* Sorular arası ince beyaz çizgi */
        }

        .accordion-faq .accordion-button {
            background-color: transparent !important;
            color: var(--accent-label) !important;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 18px 20px;
            box-shadow: none !important;
            display: flex;
            align-items: center;
        }

        /* Orijinal Bootstrap okunu gizliyoruz */
        .accordion-faq .accordion-button::after {
            display: none;
        }

        .accordion-faq .accordion-body {
            color: var(--text-body);
            padding: 0 20px 20px 45px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Görseldeki sol tarafta bulunan + ve - işaretleri */
        .faq-icon {
            color: #ffffff;
            font-size: 1.4rem;
            font-weight: 400;
            margin-right: 15px;
            font-family: monospace;
            display: inline-block;
            width: 15px;
            text-align: center;
        }

        /* --- Footer --- */
        .footer {
            position: relative;
            overflow: hidden;
            padding: 90px 0 0;
            border-top: 1px solid var(--surface-edge);
            background: linear-gradient(165deg, #241038 0%, #150a22 42%, #0a0612 100%);
        }

        .footer-bg-decor {
            pointer-events: none;
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 100% 55% at 0% 100%, rgba(250, 204, 21, 0.14), transparent 52%),
                radial-gradient(ellipse 90% 50% at 100% 0%, rgba(236, 72, 153, 0.12), transparent 48%),
                radial-gradient(circle at 78% 85%, rgba(155, 13, 226, 0.18), transparent 42%);
            opacity: 0.95;
        }

        .footer .container {
            position: relative;
            z-index: 2;
        }

        .footer-intro {
            color: var(--text-body);
            font-size: 0.95rem;
            line-height: 1.75;
            max-width: 38rem;
        }

        .footer-contact-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .footer-contact-icon {
            flex-shrink: 0;
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 50%;
            border: 2px solid rgba(250, 204, 21, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fcd34d;
            font-size: 1.1rem;
        }

        .footer-contact-label {
            display: block;
            font-weight: 800;
            font-size: 0.72rem;
            letter-spacing: 0.14em;
            color: var(--text-white);
            margin-bottom: 0.35rem;
        }

        .footer-contact-text {
            color: var(--text-gray);
            font-size: 0.92rem;
            line-height: 1.55;
        }

        .footer-contact-text a {
            color: var(--text-gray);
        }

        .footer-contact-text a:hover {
            color: var(--accent-purple-2);
        }

        .footer-links--inline li {
            margin-bottom: 0;
        }

        .footer-links--inline a {
            font-size: 0.9rem;
        }

        .footer-cookie {
            color: #93c5fd;
            font-size: 1.15rem;
            width: 2.5rem;
            height: 2.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.28);
            border: 1px solid rgba(147, 197, 253, 0.45);
        }

        .footer-pulse-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bef264;
            box-shadow: 0 0 14px rgba(190, 242, 100, 0.65);
        }

        .footer-brand {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--text-white);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-brand span {
            color: var(--accent-purple-2);
        }

        .footer-logo-img {
            height: 56px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .footer-title {
            color: var(--text-white);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 40px; height: 2px;
            background: var(--gradient);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-gray);
            display: inline-flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--accent-purple-2);
            transition: transform 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-purple-2);
        }

        .footer-links a:hover i {
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gradient);
            transform: translateY(-5px);
            border-color: transparent;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.4);
        }

        .footer-bottom-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 12px;
        }

        .footer-bottom-copy {
            flex: 1 1 auto;
            text-align: center;
            margin: 0;
            font-size: 0.82rem;
            color: var(--text-gray);
            letter-spacing: 0.02em;
        }

        /* --- Başvuru formu --- */
        .basvuru-page {
            background-color: var(--surface-page);
            padding-bottom: 100px;
            border-bottom: 1px solid var(--surface-edge);
        }

        .apply-form-wrap {
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        .apply-badge {
            display: inline-block;
            padding: 0.35rem 0.9rem;
            border-radius: 999px;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            color: #e0f2fe;
            background: linear-gradient(135deg, #1d4ed8, #2563eb);
            border: 1px solid rgba(147, 197, 253, 0.45);
        }

        .apply-form-title {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: clamp(1.85rem, 4vw, 2.5rem);
            color: var(--text-white);
            letter-spacing: -0.02em;
        }

        .apply-form-title-accent {
            color: #93c5fd;
            font-weight: 800;
        }

        .apply-label {
            display: block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: var(--text-white);
            margin-bottom: 0.45rem;
        }

        .apply-req {
            color: #fb7185;
            font-weight: 700;
        }

        .apply-field {
            background: rgba(8, 10, 22, 0.75) !important;
            border: 1px solid rgba(148, 163, 184, 0.25) !important;
            color: var(--text-white) !important;
            border-radius: 8px;
            padding: 0.65rem 0.85rem;
            font-size: 0.95rem;
        }

        .apply-field::placeholder {
            color: rgba(148, 163, 184, 0.75);
        }

        .apply-field:focus {
            border-color: rgba(96, 165, 250, 0.55) !important;
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
        }

        .apply-input-icon-wrap {
            position: relative;
        }

        .apply-input-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(147, 197, 253, 0.85);
            font-size: 1rem;
            pointer-events: none;
            z-index: 2;
        }

        .apply-field-pad-icon {
            padding-left: 2.5rem;
        }

        .apply-input-group-unit .apply-field {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        .apply-input-group-unit .apply-unit {
            background: linear-gradient(135deg, #1d4ed8, #2563eb);
            color: #eff6ff;
            font-weight: 800;
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            border: 1px solid rgba(96, 165, 250, 0.45);
            border-left: none;
            border-radius: 0 8px 8px 0;
            padding: 0 14px;
        }

        .apply-radio-block {
            background: rgba(8, 10, 22, 0.55);
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: 10px;
            padding: 1rem 1.15rem;
        }

        .apply-radio-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 1.75rem;
            margin-top: 0.5rem;
        }

        .apply-radio-option {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-body);
            font-size: 0.92rem;
            cursor: pointer;
            margin: 0;
        }

        .apply-radio-option input {
            width: 1.05rem;
            height: 1.05rem;
            accent-color: #2563eb;
        }

        .apply-hint {
            font-size: 0.8rem;
            color: rgba(148, 163, 184, 0.95);
            margin-top: 0.65rem;
        }

        .apply-file-block .apply-file-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem 1rem;
            background: rgba(8, 10, 22, 0.55);
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: 10px;
            padding: 1rem 1.15rem;
        }

        .apply-file-input {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .apply-file-btn {
            background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
            color: #eff6ff !important;
            font-weight: 700;
            font-size: 0.78rem;
            letter-spacing: 0.06em;
            border: none !important;
            border-radius: 8px !important;
            padding: 0.55rem 1.1rem !important;
            cursor: pointer;
        }

        .apply-file-btn:hover {
            filter: brightness(1.08);
            color: #fff !important;
        }

        .apply-file-name {
            font-size: 0.88rem;
            color: rgba(148, 163, 184, 0.95);
        }

        .apply-consent .apply-check-label {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            color: var(--text-body);
            font-size: 0.88rem;
            line-height: 1.5;
            cursor: pointer;
        }

        .apply-consent input[type="checkbox"] {
            width: 1.1rem;
            height: 1.1rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
            accent-color: #2563eb;
        }

        .apply-conditional {
            display: none;
            margin-bottom: 1.5rem;
            padding: 1.1rem 1.15rem;
            border-radius: 12px;
            border: 1px solid rgba(155, 13, 226, 0.28);
            background: rgba(8, 12, 28, 0.45);
        }

        .apply-conditional.is-visible {
            display: block;
        }

        .apply-radio-row--wrap {
            flex-wrap: wrap;
            gap: 0.65rem 1.25rem;
        }

        .apply-bolge-grid {
            display: grid;
            gap: 0.65rem;
            grid-template-columns: 1fr;
        }

        @media (min-width: 576px) {
            .apply-bolge-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 992px) {
            .apply-bolge-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .apply-bolge-item {
                font-size: 0.82rem;
            }
        }

        .apply-bolge-item {
            margin: 0;
            align-items: flex-start;
        }

        .apply-form-message {
            padding: 14px 18px;
            border-radius: 10px;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .apply-form-message--ok {
            background: rgba(76, 175, 125, 0.12);
            color: #4caf7d;
            border: 1px solid rgba(76, 175, 125, 0.35);
        }

        .apply-form-message--err {
            background: rgba(224, 85, 85, 0.1);
            color: #e05555;
            border: 1px solid rgba(224, 85, 85, 0.28);
        }

        .apply-submit-btn {
            background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important;
            color: #fff !important;
            font-weight: 800;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            border: none !important;
            border-radius: 10px !important;
            padding: 1rem 1.25rem !important;
            box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
        }

        .apply-submit-btn:hover {
            filter: brightness(1.06);
            color: #fff !important;
        }

        /* --- Anasayfa: hero altı bölümler --- */
        .home-main {
            position: relative;
            z-index: 2;
        }

        .home-slogan {
            position: relative;
            overflow: hidden;
            background: linear-gradient(145deg, #7c1fb8 0%, #9127bc 45%, #6b1a9e 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .home-slogan-pad {
            padding-top: 3.5rem !important;
            padding-bottom: 3.5rem !important;
        }

        @media (min-width: 768px) {
            .home-slogan-pad {
                padding-top: 4.5rem !important;
                padding-bottom: 4.5rem !important;
            }
        }

        .home-slogan-bokeh {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 42%),
                radial-gradient(circle at 78% 65%, rgba(255, 255, 255, 0.08) 0%, transparent 38%),
                radial-gradient(circle at 50% 80%, rgba(190, 242, 100, 0.06) 0%, transparent 35%);
            pointer-events: none;
        }

        .home-slogan-deco {
            position: absolute;
            pointer-events: none;
        }

        .home-slogan-deco--left {
            left: 0;
            bottom: 0;
            width: min(28vw, 200px);
            height: min(28vw, 200px);
            background: repeating-linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.22) 0 2px,
                transparent 2px 10px
            );
            opacity: 0.35;
            mask-image: linear-gradient(135deg, black 40%, transparent 75%);
        }

        .home-slogan-deco--left::after {
            content: '';
            position: absolute;
            right: -40%;
            bottom: 15%;
            width: 120%;
            height: 8px;
            background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.85), transparent);
            border-radius: 999px;
            transform: rotate(-8deg);
        }

        .home-slogan-deco--right {
            right: 8%;
            top: 12%;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 0 8px rgba(190, 242, 100, 0.55);
            background: transparent;
        }

        .home-slogan-deco--right::before {
            content: '';
            position: absolute;
            right: -18px;
            top: -18px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #bef264;
            z-index: -1;
        }

        .home-slogan-deco--right::after {
            content: '';
            position: absolute;
            right: -6px;
            bottom: -28px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 14px solid #fff;
            filter: drop-shadow(0 6px 0 #ef4444);
        }

        .home-slogan-brand {
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.35em;
            color: rgba(255, 255, 255, 0.95);
            text-transform: uppercase;
        }

        .home-slogan-headline {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 5vw, 3.25rem);
            color: #fff;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .home-intro {
            position: relative;
            background-color: var(--surface-page);
            overflow: hidden;
            border-bottom: 1px solid var(--surface-edge);
        }

        .home-intro-pad {
            padding-top: 3.5rem !important;
            padding-bottom: 3.5rem !important;
        }

        .home-intro-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 180px;
            height: 180px;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 22px 22px;
            opacity: 0.6;
            pointer-events: none;
        }

        .home-intro-dots {
            position: absolute;
            width: 140px;
            height: 140px;
            background-image: radial-gradient(rgba(201, 168, 255, 0.35) 2px, transparent 2px);
            background-size: 14px 14px;
            pointer-events: none;
        }

        .home-intro-dots--tr {
            top: 12%;
            right: 6%;
            opacity: 0.5;
        }

        .home-intro-visual {
            position: relative;
            padding: 12px;
        }

        .home-intro-oval-wrap {
            border-radius: 50%;
            overflow: hidden;
            border: 6px solid rgba(155, 13, 226, 0.9);
            box-shadow: 0 0 40px rgba(155, 13, 226, 0.35);
            aspect-ratio: 1.35 / 1;
        }

        .home-intro-oval-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .home-intro-play {
            position: absolute;
            right: 4%;
            top: 50%;
            transform: translateY(-50%);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-purple-1), var(--accent-purple-2));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            padding-left: 4px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .home-intro-play:hover {
            color: #fff;
            transform: translateY(-50%) scale(1.06);
            box-shadow: 0 12px 32px rgba(155, 13, 226, 0.5);
        }

        .home-intro-title {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            color: var(--text-white);
            line-height: 1.2;
        }

        .home-intro-lead {
            font-weight: 700;
            color: var(--text-white);
            font-size: 1.05rem;
            line-height: 1.55;
        }

        .home-intro-body {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .home-intro-where {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .home-intro-where-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(155, 13, 226, 0.2);
            border: 1px solid rgba(155, 13, 226, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-purple-2);
            font-size: 1.25rem;
        }

        .home-intro-where-label {
            display: block;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            color: var(--accent-purple-2);
            margin-bottom: 0.25rem;
        }

        .home-intro-where-stats {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-white);
            letter-spacing: 0.04em;
        }

        .home-intro-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-purple-1), var(--accent-purple-2));
            color: #fff !important;
            font-weight: 800;
            font-size: 0.82rem;
            letter-spacing: 0.12em;
            padding: 0.85rem 1.75rem;
            border-radius: 6px;
            border: none;
            text-transform: uppercase;
        }

        .home-intro-cta:hover {
            filter: brightness(1.08);
            color: #fff !important;
        }

        .home-stats-banner {
            padding: 0 12px 48px;
            margin-top: -1px;
            background: var(--surface-page);
        }

        .home-stats-banner-inner {
            position: relative;
            overflow: hidden;
            padding: 2.5rem 1rem;
            border-radius: 0 48px 0 0;
            background: linear-gradient(125deg, #1d4ed8 0%, #2563eb 40%, #1e40af 100%);
            box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
        }

        @media (min-width: 768px) {
            .home-stats-banner-inner {
                padding: 3rem 2rem;
                border-radius: 0 64px 0 0;
            }
        }

        .home-stats-watermark {
            position: absolute;
            font-weight: 900;
            font-size: clamp(4rem, 18vw, 10rem);
            color: rgba(255, 255, 255, 0.06);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .home-stats-watermark--l {
            left: -2%;
            bottom: -8%;
        }

        .home-stats-watermark--r {
            right: 2%;
            top: 10%;
            width: 120px;
            height: 160px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'%3E%3Cpath fill='rgba(255,255,255,0.07)' d='M50 10c15 25 35 45 40 70-10-5-25-8-40-8s-30 3-40 8c5-25 25-45 40-70z'/%3E%3C/svg%3E") center/contain no-repeat;
        }

        .home-stat-num {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.1;
        }

        .home-stat-num .stat-number {
            font-size: inherit;
            color: #fff;
            -webkit-text-fill-color: #fff;
        }

        .home-stat-label {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            opacity: 0.92;
            margin-top: 0.35rem;
        }

        .home-service-areas {
            background-color: var(--surface-page);
            border-bottom: 1px solid var(--surface-edge);
        }

        .home-areas-title {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: clamp(1.65rem, 3.5vw, 2.35rem);
            color: var(--text-white);
            letter-spacing: 0.06em;
        }

        .home-area-card {
            border-radius: 4px;
            overflow: hidden;
            background: #0a0a12;
            border: 3px solid rgba(255, 255, 255, 0.92);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .home-area-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
        }

        .home-area-card-img-wrap {
            aspect-ratio: 4 / 3;
            overflow: hidden;
        }

        .home-area-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .home-area-card:hover .home-area-card-img {
            transform: scale(1.06);
        }

        .home-area-card-cap {
            display: block;
            padding: 0.85rem 1rem;
            text-align: center;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-white);
            background: rgba(0, 0, 0, 0.35);
        }

        .section--gallery {
            padding: 2rem clamp(0.75rem, 3vw, 1.5rem) 2.25rem !important;
            margin: 0;
            background: linear-gradient(180deg, #050d18 0%, #071525 42%, #0a1628 100%);
            border-bottom: 1px solid var(--surface-edge);
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        .gallery-mosaic-wrap {
            width: 100%;
            max-width: min(960px, 100%);
            margin: 0 auto;
            padding: 3px;
            border-radius: 14px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(155, 13, 226, 0.12) 50%, rgba(255, 255, 255, 0.06) 100%);
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .gallery-mosaic {
            display: grid;
            width: 100%;
            margin: 0;
            gap: 0;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            grid-template-rows: auto auto;
            grid-auto-rows: auto;
            border-radius: 11px;
            overflow: hidden;
            background: #050a14;
        }

        .gallery-mosaic__item {
            position: relative;
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            border: none;
            border-radius: 0;
            padding: 0;
            margin: 0;
            background-size: cover;
            background-position: center;
            background-color: #0d1b2e;
            background-repeat: no-repeat;
            cursor: pointer;
            overflow: hidden;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
            transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, filter 0.32s ease;
        }

        .gallery-mosaic__hover {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(165deg, rgba(5, 12, 24, 0.62) 0%, rgba(20, 45, 88, 0.42) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .gallery-mosaic__plus {
            position: absolute;
            left: 50%;
            top: 50%;
            z-index: 2;
            width: 2.5rem;
            height: 2.5rem;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(0.85rem, 2.8vw, 1.05rem);
            font-weight: 400;
            color: #fff;
            line-height: 1;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.42);
            background: rgba(4, 10, 22, 0.42);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.88);
            transition: opacity 0.3s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, background 0.25s ease;
            pointer-events: none;
        }

        .gallery-mosaic__plus i {
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55));
        }

        .gallery-mosaic__item:hover,
        .gallery-mosaic__item:focus-visible {
            z-index: 4;
            filter: brightness(1.05) saturate(1.04);
            transform: translateY(-1px) scale(1.006);
            box-shadow:
                inset 0 0 0 1px rgba(0, 0, 0, 0.35),
                0 16px 36px rgba(0, 0, 0, 0.42),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                0 0 36px rgba(99, 102, 241, 0.12);
        }

        .gallery-mosaic__item:hover .gallery-mosaic__hover,
        .gallery-mosaic__item:focus-visible .gallery-mosaic__hover {
            opacity: 1;
        }

        .gallery-mosaic__item:hover .gallery-mosaic__plus,
        .gallery-mosaic__item:focus-visible .gallery-mosaic__plus {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            border-color: rgba(255, 255, 255, 0.58);
            background: rgba(8, 16, 32, 0.55);
        }

        .gallery-mosaic__item:focus {
            outline: none;
        }

        .gallery-mosaic__item:focus-visible {
            outline: 2px solid rgba(155, 13, 226, 0.95);
            outline-offset: -2px;
        }

        .gallery-lightbox {
            position: fixed;
            inset: 0;
            z-index: 10050;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3.5rem min(4.5rem, 6vw) 4.5rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.32s ease, visibility 0.32s ease;
        }

        .gallery-lightbox.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .gallery-lightbox__backdrop {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: rgba(4, 6, 14, 0.76);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            cursor: pointer;
        }

        .gallery-lightbox__frame {
            position: relative;
            z-index: 2;
            margin: 0;
            padding: 0;
            max-width: min(90vw, 980px);
            max-height: calc(86vh - 2.5rem);
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: auto;
        }

        .gallery-lightbox__img {
            display: block;
            max-width: 100%;
            max-height: calc(86vh - 2.5rem);
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 12px;
            box-shadow:
                0 32px 80px rgba(0, 0, 0, 0.72),
                0 0 0 1px rgba(255, 255, 255, 0.06);
            transition: opacity 0.22s ease, transform 0.22s ease;
        }

        .gallery-lightbox__img.is-swapping {
            opacity: 0.35;
            transform: scale(0.992);
        }

        .gallery-lightbox__close {
            position: absolute;
            top: 1rem;
            right: min(1.25rem, 4vw);
            z-index: 4;
            width: 48px;
            height: 48px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 50%;
            background: rgba(12, 14, 22, 0.72);
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
        }

        .gallery-lightbox__close:hover {
            background: rgba(28, 28, 38, 0.92);
            border-color: rgba(255, 255, 255, 0.28);
            transform: scale(1.05);
        }

        .gallery-lightbox__close:focus-visible {
            outline: 2px solid rgba(155, 13, 226, 0.9);
            outline-offset: 3px;
        }

        .gallery-lightbox__nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            width: 52px;
            height: 52px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 50%;
            background: rgba(12, 14, 22, 0.72);
            color: #fff;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
        }

        .gallery-lightbox__nav:hover {
            background: rgba(32, 32, 44, 0.92);
            border-color: rgba(255, 255, 255, 0.26);
            transform: translateY(-50%) scale(1.05);
        }

        .gallery-lightbox__nav:focus-visible {
            outline: 2px solid rgba(155, 13, 226, 0.9);
            outline-offset: 3px;
        }

        .gallery-lightbox__nav--prev {
            left: min(1rem, 3vw);
        }

        .gallery-lightbox__nav--next {
            right: min(1rem, 3vw);
        }

        .gallery-lightbox__toolbar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
            pointer-events: none;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
        }

        .gallery-lightbox__counter {
            font-family: 'Manrope', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            color: rgba(255, 255, 255, 0.52);
            text-transform: uppercase;
        }

        .gallery-lightbox__kbd-hint {
            font-family: 'Manrope', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            color: rgba(255, 255, 255, 0.32);
        }

        @media (max-width: 575.98px) {
            .gallery-lightbox {
                padding: 3rem 0.35rem 4rem;
            }

            .gallery-lightbox__nav {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }

            .gallery-lightbox__nav--prev {
                left: 0.35rem;
            }

            .gallery-lightbox__nav--next {
                right: 0.35rem;
            }

            .gallery-lightbox__img {
                border-radius: 10px;
            }

            .gallery-lightbox__kbd-hint {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .gallery-mosaic__item,
            .gallery-mosaic__hover,
            .gallery-mosaic__plus,
            .gallery-lightbox,
            .gallery-lightbox__img {
                transition-duration: 0.01ms !important;
            }

            .gallery-mosaic__item:hover,
            .gallery-mosaic__item:focus-visible {
                transform: none;
            }

            .gallery-lightbox__nav:hover {
                transform: translateY(-50%);
            }
        }

/* Sabit menü: sayfadaki ilk ana bölümün üst boşluğu */
body.page-sub main > section:first-of-type {
    padding-top: 160px;
}

body.page-sub .contact-page {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--surface-page) 0%, var(--bg-black) 100%);
    border-bottom: 1px solid var(--surface-edge);
}

body.page-sub .venues-page {
    padding: 160px 0 100px;
    min-height: 50vh;
    background-color: var(--surface-page);
    border-bottom: 1px solid var(--surface-edge);
}
