
    /* --- Slider Mobil Uyumluluk Güncellemesi --- */
@media (max-width: 768px) {
    #anasayfa {
        /* Ekranın tamamını değil, yaklaşık yarısını kaplaması için */
        height: 400px; 
        min-height: 400px;
        padding: 80px 5% 40px; /* Üstten navbar boşluğu bırakıldı */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-content {
        position: relative;
        z-index: 10;
        transform: translateY(20px); /* İçeriği biraz aşağı kaydırarak ortalar */
    }

    #anasayfa h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    #anasayfa p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Çok uzun metinleri mobilde kısıtlar */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        top: 50%;
    }
}

@media (max-width: 480px) {
    #anasayfa {
        height: 350px; /* Küçük telefonlarda biraz daha daraltıldı */
        min-height: 350px;
    }
    
    #anasayfa h1 {
        font-size: 1.4rem;
    }
}
     :root {
    --primary: #B68B2D;
    --primary-dark: #8C6A1F;

    --accent: #D4AF37;

    --bg: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.9);

    --text-main: #1e293b;
    --text-muted: #64748b;

    --footer-bg: #0f172a;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* --- Animasyonlar --- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroicEntrance {
            0% {
                opacity: 0;
                transform: scale(1.1) translateY(20px);
                filter: blur(10px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
                filter: blur(0);
            }
        }

        @keyframes kenBurns {
            0% { transform: scale(1); }
            100% { transform: scale(1.2); }
        }

        /* --- Navigasyon --- */
        nav {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(15px);
            padding: 1.2rem 8%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }


        nav .nav-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: 0.3s;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        .social-icons {
            display: flex;
            gap: 20px;
            border-left: 1px solid rgba(0, 0, 0, 0.1);
            padding-left: 25px;
        }

        .social-icons a {
            color: var(--text-main);
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        
        /* --- Slider Tasarımı --- */
        #anasayfa {
            height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 10%;
            overflow: hidden;
            color: #fff;
        }

        .slider-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: #000;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            animation: kenBurns 20s linear infinite alternate;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
            z-index: 2;
        }

        .slider-content {
            z-index: 10;
            position: relative;
            width: 100%;
        }

        .content-anim {
            animation: heroicEntrance 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        #anasayfa h1 {
            font-size: clamp(2.2rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        #anasayfa p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 35px;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .slider-arrow:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .arrow-left { left: 30px; }
        .arrow-right { right: 30px; }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 16px 40px;
            text-decoration: none;
            border-radius: 100px;
            font-weight: 700;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
            border: none;
            cursor: pointer;
        }

        /* --- Bölümler --- */
        section {
            padding: 80px 10%;
        }

        h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); 
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: var(--card-bg);
            padding: 35px 25px; 
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            transition: 0.4s;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-top: 10px;
        }

        .card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
            transition: 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }

        .card:hover i {
            transform: scale(1.1);
            color: var(--accent);
        }

        #hakkimizda {
            background: #fff;
            border-radius: 50px;
            margin: 0 5% 50px;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            padding: 90px 5%;
        }

        .hakkimizda-img {
            flex: 1;
            min-width: 300px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .hakkimizda-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hakkimizda-text {
            flex: 1.2;
            min-width: 300px;
        }

        .hakkimizda-text h2 {
            text-align: left;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        /* --- Galeri --- */
        .galeri-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .galeri-item {
            position: relative;
            height: 300px;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
        }

        .galeri-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.6s;
        }

        .galeri-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, #b48f45, transparent);
            display: flex;
            align-items: flex-end;
            padding: 30px;
            opacity: 0;
            transition: 0.4s;
        }

        .galeri-overlay span {
            color: #fff;
            font-weight: 700;
        }

        .galeri-item:hover img { transform: scale(1.1); }
        .galeri-item:hover .galeri-overlay { opacity: 1; }



     

    

        /* --- İletişim --- */
        .iletisim-wrapper {
            background: #fff;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1100px;
            margin: 0 auto;
        }

        .map-box {
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: #f1f5f9;
        }

        .map-box iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .info-box {
            padding: 50px;
            background: #fff;
        }

        .info-item {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .info-icon {
            background: rgba(79, 70, 229, 0.1);
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-content .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-muted);
            font-weight: 800;
            margin-bottom: 4px;
            display: block;
        }

        .info-content .value {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-main);
            text-decoration: none;
        }

        /* --- Footer --- */
        footer {
            background: var(--footer-bg);
            color: #e2e8f0;
            padding: 40px 8%;
        }

     /* --- Mevcut/Eski Kodların (Aynen Korundu) --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}


/* --- YENİ EKLENEN PREMİUM ŞEMA STİLLERİ --- */
footer {
    background-color: #fcf9f5; /* Görseldeki kırık beyaz arka plan (Siten koyu mofeldeyse burayı silebilirsin) */
    padding: 40px 20px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-features-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #c59b27; /* Görseli çevreleyen ince altın sarısı çerçeve */
    padding: 30px 20px;
    box-sizing: border-box;
}

/* Üçlü Özellik Satırı */
.footer-features-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    flex: 1;
}

.feature-icon {
    font-size: 28px;
    color: #c59b27; /* Altın Sarısı */
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #0b2347; /* Kurumsal Lacivert */
}

/* Dik Çizgiler */
.feature-divider {
    width: 1px;
    height: 40px;
    background-color: #c59b27;
    opacity: 0.7;
}

/* Slogan Satırı */
.footer-slogan-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slogan-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(197,155,39,0), rgba(197,155,39,1), rgba(197,155,39,0));
}

.slogan-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #c59b27;
    letter-spacing: 4px;
}

.slogan-text {
    font-size: 20px;
    font-style: italic;
    color: #c59b27;
    font-family: Georgia, serif;
}

.brand-logo-icon {
    font-size: 30px;
    color: #c59b27;
    margin-left: 5px;
}

/* İki Bölüm Arasındaki İnce Ayraç Çizgisi */
.footer-section-divider {
    border: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 30px 0 10px 0;
}


/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 768px) {
    .footer-features-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .feature-divider {
        display: none; /* Mobilde dik çizgileri gizle ki tasarım kaymasın */
    }
    
    .slogan-line {
        display: none; /* Mobilde yan çizgileri gizleyerek yazıyı ortala */
    }
    
    .brand-name {
        font-size: 26px;
    }
    
    .slogan-text {
        font-size: 16px;
    }
}

/* --- Sadece Değişecek Alt Footer CSS Kodu --- */
.footer-bottom p {
    color: #1a1a1a; 
    font-weight: 500;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.05); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a; 
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #c59b27; 
    color: #fff; 
    transform: translateY(-3px);
}

        /* --- RESPONSIVE / MOBİL UYUM --- */

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-main);
            z-index: 1001;
        }

        @media (max-width: 992px) {
            nav { padding: 1rem 5%; }
            .menu-toggle { display: block; }
            
            nav .nav-content {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
      /* ŞEFFAF */          
background: #b68b2d95 !important; 
    
    /* Arkadaki görseli bulanıklaştırarak yazıları ön plana çıkarır */
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); /* Safari desteği için */

                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            }

            nav .nav-content.active { right: 0; }
            nav ul { flex-direction: column; align-items: center; }
            .social-icons { width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;}

    .info-area a, .info-item a {
    text-decoration: none !important; /* Alt çizgiyi tamamen kaldırır */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}


.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

            .services-container { grid-template-columns: repeat(2, 1fr); }
            .galeri-grid { grid-template-columns: repeat(2, 1fr); }
            .iletisim-wrapper { grid-template-columns: 1fr; }
            
            #hakkimizda { flex-direction: column; text-align: center; }
            .hakkimizda-text h2 { text-align: center; }
        }

        @media (max-width: 768px) {
            section { padding: 60px 5%; }
            .services-container { grid-template-columns: 1fr; }
            .galeri-grid { grid-template-columns: 1fr; }
            .galeri-item { height: 250px; }
            .slider-arrow { width: 45px; height: 45px; }
            .arrow-left { left: 10px; }
            .arrow-right { right: 10px; }
            .info-box { padding: 30px 20px; }
            .footer-bottom { justify-content: center; text-align: center; }
        }

        @media (max-width: 480px) {
            #anasayfa h1 { font-size: 1.8rem; }
            .btn { padding: 12px 30px; font-size: 0.9rem; }
            .sol-ust-logo { font-size: 1.2rem; }
        }

        
/* --- Slider Mobil Uyumluluk Ayarı --- */
@media (max-width: 768px) {
    #anasayfa {
        /* Ekranın yarısından az (yaklaşık %40) yer kaplaması için */
        height: 40vh !important; 
        min-height: 320px !important;
        padding: 60px 5% 20px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-content {
        transform: translateY(10px);
    }

    #anasayfa h1 {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }

    #anasayfa p {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
        /* Metin çok uzunsa 2 satırda keser */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn {
        padding: 10px 25px !important;
        font-size: 0.8rem !important;
    }

    .btn:hover {
    background: linear-gradient(135deg, #D4AF37, #C99A2E);
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 10px 30px rgba(140, 106, 31, 0.35),
        0 0 40px rgba(212, 175, 55, 0.45);
    color: #111;
}

    .slider-arrow {
        width: 35px !important;
        height: 35px !important;
    }
}

/* Navbar Yazı Okunurluk Ayarları */
nav ul li a,  
.social-icons a, 
.menu-toggle {
    color: #ffffff !important; /* Başlangıçta beyaz olsun ki görsel üstünde görünsün */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Okunurluğu sağlayan sihirli dokunuş */
    transition: all 0.3s ease;
}

/* Sayfa aşağı kaydırıldığında (Arkaplan beyaz olduğunda) yazılar koyulaşsın */
nav.scrolled ul li a, 
nav.scrolled .sol-ust-logo, 
nav.scrolled .social-icons a, 
nav.scrolled .menu-toggle {
    color: var(--text-main) !important; /* Koyu renk (mevcut ana rengin) */
    text-shadow: none; /* Arka plan beyazken gölgeye gerek yok */
}

/* Navbar Genel Geçişi */
nav {
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.4s ease-in-out;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    padding: 0.8rem 8% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}




.stealth-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px; /* Geniş tıklama alanı ama görünmez */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.5s ease;
    opacity: 0.15; /* Normalde neredeyse görünmez */
    color: #fff;
    font-size: 24px;
}

/* Genel Ok Yapısı - Daha dar ve şık */
.stealth-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; /* Genişlik azaldı, daha zarif */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Masaüstünde başlangıçta gizli */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    cursor: pointer;
}

/* Konumlar ve Soft Geçişler */
.left { 
    left: 0; 
    background: linear-gradient(to right, rgba(255,255,255,0.05), transparent); 
    border-radius: 0 20px 20px 0;
}

.right { 
    right: 0; 
    background: linear-gradient(to left, rgba(255,255,255,0.05), transparent); 
    border-radius: 20px 0 0 20px;
}

/* Hover Durumu: Cam Efekti */
.stealth-arrow:hover {
    opacity: 1;
    width: 80px; /* Hafifçe içeri uzama efekti */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px); /* Arka planı hafifçe flulaştırır */
    -webkit-backdrop-filter: blur(4px);
}

/* İkon Stil: İnce ve Gölgeli */
.stealth-arrow i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Okların Hareket Animasyonu */
.left:hover i { 
    transform: translateX(-5px); 
    color: #fff;
}

.right:hover i { 
    transform: translateX(5px); 
    color: #fff;
}

/* Mobil Optimizasyonu: Daha kibar ve kalıcı */
@media (max-width: 768px) {
    .stealth-arrow { 
        opacity: 0.6; /* Mobilde tamamen kaybolmasın */
        width: 45px; 
        height: 70px;
        background: rgba(255, 255, 255, 0.03); /* Çok hafif bir belirginlik */
        backdrop-filter: blur(2px);
    }
    
    .stealth-arrow i {
        font-size: 1.2rem; /* Mobilde ikon küçüldü */
    }
    
    .left { border-radius: 0 10px 10px 0; }
    .right { border-radius: 10px 0 0 10px; }
}

/* Tuşa basıldığında anlık tepki */
.stealth-arrow:active {
    transform: translateY(-50%) scale(0.95); /* Hafifçe içe çökme efekti */
    transition: transform 0.1s;
}

/* Kibar ve Bağımsız Sol Üst Logo */
.kibar-sol-logo {
  position: absolute;
  top: 12px;         /* Üstten kibar bir boşluk */
  left: 15px;        /* Soldan kibar bir boşluk */
  z-index: 9999;     /* Sitedeki diğer elementlerin hep üstünde kalır */
  display: inline-block;
  transition: all 0.3s ease; /* Geçiş yumuşatması */
}

.kibar-sol-logo img {
  display: block;
  width: 120px;      /* Masaüstü için en kibar ideal genişlik (120 piksel) */
  height: auto;      /* Orantıyı korur, resmi asla bozmaz */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15)); /* Logonun arkasına çok hafif kibar bir gölge */
}

/* Mobil Cihazlar İçin (Telefon ekranlarında otomatik küçülme) */
@media (max-width: 768px) {
  .kibar-sol-logo {
    top: 8px;        /* Mobilde yukarıya biraz daha yanaşsın */
    left: 10px;      /* Mobilde sola biraz daha yanaşsın */
  }
  
  .kibar-sol-logo img {
    width: 90px;     /* Telefon ekranlarında kibar durması için 90 piksele düşürdük */
  }
}


/* Hizmetler ve Kademeler Alanlarını Birbirine Yaklaştırıyoruz */
#hizmetler {
    padding-top: 60px;
    padding-bottom: 0; /* Alt boşluğu sıfırlıyoruz ki iki grup arası açılmasın */
    margin-bottom: 0;
}

#kademeler {
    padding-top: 30px; /* Üstteki kartların kendi aralarındaki dikey boşluk (grid gap) ile eşitlendi */
    padding-bottom: 60px;
    margin-top: 0;
}

/* Başlık Mesafesini Düzenleme (Eğer h2 başlığı kullanmıyorsan bu kısmı es geçebilirsin) */
#kademeler h2 {
    display: none; /* Eğer görseldeki gibi başlık olmadan doğrudan kartlar başlasın istiyorsan açık kalsın */
    margin: 0;
}

/* 4'lü Üst Gruba Hizalanan Kapsayıcı */
.kademeler-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; /* Üstteki hizmetler container'ının gap değeriyle birebir aynı */
    width: 100%;
    max-width: 1200px; /* Üstteki hizmetler container'ının max-width değeri kaç ise buraya da aynısını yaz */
    margin: 0 auto;
    box-sizing: border-box;
}

/* Kibarlaştırılmış Yeni Card Sınıfı (cardiki) */
.cardiki {
    background: var(--card-bg);
    padding: 35px 25px; /* İç boşluklar üstteki kartlarla simetrik */
    border-radius: 20px; /* Köşe oval hatları üstteki kartlarla birebir aynı */
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Gölgelendirme üst grup ile eşitlendi */
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.cardiki h3 {
    font-size: 1.2rem;
    margin: 15px 0 8px 0;
    font-weight: 700;
    color: #2b2b2b; /* Logonuz ve kurumsal kimliğinize uygun koyu ton */
}

/* Tek satırlık kısa ve kibar açıklamalar */
.cardiki p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
    color: #555;
}

.cardiki i {
    font-size: 2.5rem; /* İkon boyutları üstteki ana kartlarla eşitlendi */
    color: var(--primary);
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hover Efektleri */
.cardiki:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.cardiki:hover i {
    transform: scale(1.1);
    color: var(--accent);
}

/* Mobil ve Tablet Uyumluluğu (Responsive) */
@media (max-width: 992px) {
    .kademeler-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .kademeler-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
}


/* --- Ek Lightbox CSS Tasarımı (Var olanı bozmaz) --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-icerik {
    max-width: 85%;
    max-height: 75vh;
    border-radius: 8px;
    object-fit: contain;
    animation: zoomEfekti 0.3s ease-in-out;
}

#lightboxYazi {
    color: #fff;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Butonlar ve Kapatma */
.lightbox-kapat {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox-kapat:hover { color: #b48f45; }

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}
.lightbox-btn:hover { background: #b48f45; }
.lightbox-sol { left: 30px; }
.lightbox-sag { right: 30px; }

@keyframes zoomEfekti {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Mobil Uyum için Küçük Dokunuş */
@media (max-width: 768px) {
    .lightbox-btn { padding: 10px 15px; font-size: 18px; }
    .lightbox-sol { left: 10px; }
    .lightbox-sag { right: 10px; }
}
/* ==========================================================================
   Ekip Kadrosu Bölümü (Fora Eğitim Kurumları)
   ========================================================================== */
#ekibimiz {
    padding: 6rem 8%;
    background-color: #ffffff; /* Sayfadaki diğer beyaz bölümlerle uyumlu */
    text-align: center;
}

#ekibimiz h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 3.5rem;
    position: relative;
    
    letter-spacing: 1px;
}

/* Kartların Dizileceği Grid Alanı */
.ekip-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Masaüstünde yan yana 4 kutu */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kibar Ekip Kartı Tasarımı */
.ekip-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f2f2f2;
}

/* Görsel Alanı ve Oran Sabitleme */
.ekip-img-box {
    width: 100%;
    height: 320px; /* Fotoğrafların dikdörtgen duruşu için ideal yükseklik */
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.ekip-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fotoğraf boyutları ne olursa olsun taşma veya basıklık yapmaz */
    transition: transform 0.6s ease;
}

/* Metin Alanı */
.ekip-info {
    padding: 20px 15px;
    text-align: center;
}

.ekip-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.ekip-unvan {
    display: block;
    font-size: 0.85rem;
    color: #777777; /* Sektör standardı kibar gri tonu */
    font-weight: 400;
}

/* Hover Efekti - Minimal ve Şık */
.ekip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ekip-card:hover .ekip-img-box img {
    transform: scale(1.04); /* Aşırıya kaçmayan, göz yormayan yakınlaşma */
}

/* ==========================================================================
   Mobil ve Tablet Uyumlu Responsive Kırılımlar
   ========================================================================== */

/* Tablet Görünümü */
@media (max-width: 1024px) {
    .ekip-container {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2'li sıra */
        gap: 20px;
    }
    #ekibimiz {
        padding: 4rem 5%;
    }
}

/* Telefon Görünümü */
@media (max-width: 600px) {
    .ekip-container {
        grid-template-columns: repeat(1, 1fr); /* Mobilde tekli sıra, tam uyum */
        gap: 25px;
    }
    .ekip-img-box {
        height: 350px; /* Mobilde dikey duruş oranını korumak için hafif artış */
    }
    #ekibimiz h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}





/* ==========================================================================
E KAYIT
   ========================================================================== */
   /* ==========================================================================
   Güncellenmiş Hizalı Navbar Gold E-Kayıt Butonu
   ========================================================================== */

/* Menü listesindeki li elemanı */
.nav-btn-li {
    margin-left: 20px; /* Diğer menü elemanlarından kibar bir boşluk */
    display: inline-flex;
    align-items: center; /* Dikeyde tam ortalama sağlar */
    height: 100%; /* Navbar yüksekliğine uyum sağlar */
}

/* Gold Butonun Kendisi */
.nav-gold-btn {
    background: linear-gradient(135deg, #c5a880 0%, #b39268 100%);
    color: #ffffff !important;
    padding: 0.5rem 1.3rem !important; /* Yüksekliği diğer menü yazılarını bozmayacak şekilde optimize edildi */
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(0); /* Hizalamayı bozacak manuel kaydırmalar sıfırlandı */
}

/* Hover Efekti */
.nav-gold-btn:hover {
    background: linear-gradient(135deg, #b39268 0%, #a17f56 100%);
    transform: translateY(-1px); /* Çok hafif, dikey hizayı sarsmayacak hover esnemesi */
    box-shadow: 0 6px 18px rgba(197, 168, 128, 0.4);
    color: #ffffff !important;
}

/* Tıklama Anı */
.nav-gold-btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   Mobil Uyum (Responsive)
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-btn-li {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        display: flex;
    }
    
    .nav-gold-btn {
        width: 80%;
        padding: 0.8rem 1.5rem !important;
    }
}

/* Kurumsal Video Bölümü Tasarımı */
#kurumsal-video {
    width: 100%;
    padding: 60px 0; /* Sayfa içi dikey boşluk, ne çok sıkışık ne çok açık */
    background-color: #ffffff; /* Sitenin genel arka plan rengine uyumlu */
    display: flex;
    justify-content: center;
    align-items: center;
}

#kurumsal-video .video-wrapper {
    position: relative;
    width: 90%; /* Kenarlardan çok hafif kibar bir boşluk bırakır, tam ekran hissi verir */
    max-width: 1200px; /* Dev ekranlarda videonun patlamasını engeller, klas durur */
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio koruması (Mobil uyumun sırrı) */
    height: 0;
    border-radius: 12px; /* Köşeleri hafif yumuşatarak modern bir hava katıyoruz */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06); /* Hafif derinlik efekti */
}

#kurumsal-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobil Ekranlar İçin Hassas Ayar */
@media (max-width: 768px) {
    #kurumsal-video {
        padding: 40px 0;
    }
    #kurumsal-video .video-wrapper {
        width: 95%; /* Mobilde ekrana daha çok yayılması için */
        border-radius: 8px;
    }
}