    /* Google Fonts import */
    @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

    /* Sayfa zemini (font eklendi) */
    body {
        margin: 0;
        background: #fff;
        font-family: 'Quicksand', sans-serif;
        /* Tüm sayfa içeriği yatayda kaymayı engellemek için */
        overflow-x: hidden;
    }

    html {
        scroll-behavior: smooth;
    }

    /* Header */
    .header {
        width: 100%;
        height: 72px;
        /* margin: 0 auto; kaldırıldı, box-sizing ile tam genişlik garantilendi */
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        box-sizing: border-box;
        background: #ffffff;
    }

    /* Logo */
    .logo img {
        height: auto;
        width: auto;
        display: block;
        /* Mobil için max genişlik sınırı */
        max-width: 150px;
    }

    /* Sosyal ikonlar */
    .social {
        display: inline-flex;
        align-items: center;
        gap: 16px;
    }

    .social a {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        transition: transform .15s ease, opacity .15s ease;
    }

    .social a:hover {
        transform: translateY(-1px);
        opacity: .9;
    }

    .social a:active {
        transform: translateY(0);
        opacity: .8;
    }

    .social a:focus-visible {
        outline: 3px solid #9cc4ff;
        outline-offset: 2px;
    }

    /* BirKapakBinUmut Alanı (Hero) */
    .hero {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 80px;
        box-sizing: border-box;
        gap: 40px;
    }

    /* Sol yazı alanı */
    .hero-text {
        max-width: 45%;
    }

    .hero-text h1 {
        font-size: 48px;
        color: #c4165d;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 20px;
        line-height: 1.8;
        color: #555;
    }

    /* Sağ görsel alanı */
    .hero-image img {
        width: auto;
        max-height: 800px;
        height: auto;
        display: block;
    }

    /* ----------- Responsive ----------- */

    /* Masaüstü (≥1201px) */
    @media (min-width: 1201px) {
        .hero {
            height: 860px;
            padding: 0 100px;
        }

        .hero-text h1 {
            font-size: 52px;
        }

        .hero-text p {
            font-size: 22px;
        }
    }

    /* Laptop (769px – 1200px) */
    @media (max-width: 1200px) and (min-width: 769px) {
        .hero {
            height: 720px;
            padding: 0 60px;
        }

        .hero-text h1 {
            font-size: 40px;
        }

        .hero-text p {
            font-size: 18px;
        }
    }

    /* Tablet (577px – 768px) */
    @media (max-width: 768px) and (min-width: 577px) {
        .hero {
            flex-direction: column;
            text-align: center;
            height: auto;
            padding: 40px;
            gap: 30px;
        }

        .hero-text {
            max-width: 90%;
        }

        .hero-text h1 {
            font-size: 32px;
        }

        .hero-text p {
            font-size: 16px;
        }

        .hero-image img {
            max-height: 400px;
            /* Tablette görselin tam genişlik almasını engellemek için */
            width: auto;
        }
    }

    /* Mobil (≤576px) **DÜZENLENDİ** */
    @media (max-width: 576px) {
        .header {
            padding: 0 16px;
            /* Daha dar bir padding */
        }

        .hero {
            flex-direction: column;
            text-align: center;
            height: auto;
            padding: 20px 16px;
            /* Yatay padding azaltıldı */
            gap: 20px;
        }

        .hero-text {
            max-width: 100%;
        }

        .hero-text h1 {
            font-size: 26px;
        }

        .hero-text p {
            font-size: 14px;
        }

        .hero-image img {
            max-height: 280px;
            width: 90%;
            /* Görselin kapsayıcı içinde daha iyi durması için */
            object-fit: contain;
        }

        /* Video kapsayıcısı mobil için padding'i sıfırlansın */
        .hero-video {
            padding: 0 !important;
        }
    }

    /* 3. section (Campaign) */
    .campaign {
        background: #f6fcfd;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 60px 80px;
        gap: 40px;
        height: 824px;
        /* Sabit yükseklik - responsive'de kaldırılacak */
        box-sizing: border-box;
    }

    /* Sol yazı */
    .campaign-text {
        flex: 1;
        max-width: 50%;
        color: #333;
        font-size: 16px;
        line-height: 1.7;
    }

    /* Renkli şeritler */
    .color-line {
        display: flex;
        width: 60%;
        height: 8px;
        margin-bottom: 20px;
    }

    .color-line span {
        flex: 1;
        height: 100%;
    }

    .color-line .c1 {
        background: #00AAC2;
    }

    .color-line .c2 {
        background: #BED230;
    }

    .color-line .c3 {
        background: #ED7824;
    }

    .color-line .c4 {
        background: #7E287B;
    }

    .color-line .c5 {
        background: #DA1D52;
    }

    .campaign-text p {
        margin-bottom: 16px;
    }

    .campaign-text strong {
        font-weight: 600;
    }

    /* Sağ görsel */
    .campaign-image {
        flex: 1;
        text-align: right;
    }

    .campaign-image img {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        display: inline-block;
    }

    /* Campaign Responsive **DÜZENLENDİ** */
    @media (max-width: 992px) {
        .campaign {
            flex-direction: column;
            text-align: center;
            padding: 40px;
            height: auto;
            /* Küçük ekranlarda sabit yüksekliği kaldır */
        }

        .campaign-text {
            max-width: 100%;
        }

        .campaign-image {
            text-align: center;
            margin-top: 20px;
        }

        .color-line {
            width: 80%;
            /* Mobil/Tablet için biraz genişletildi */
            margin: 0 auto 20px auto;
            /* Ortalandı */
        }
    }

    @media (max-width: 576px) {
        .campaign {
            padding: 30px 16px;
            /* Mobil için daha dar padding */
        }

        .campaign-text p {
            font-size: 15px;
        }

        .color-line {
            width: 100%;
            /* Mobil için tam genişlik */
        }
    }
    /* ==================================== */
    /* 1. SLIDER ANA YAPISI & BOYUTLANDIRMA */
    /* ==================================== */

    .slider.swiper {
        position: relative;
        width: 100%;
        /* Swiper, ana kapsayıcıya 'swiper' sınıfını ekler */
        height: 900px;
        overflow: hidden;
    }

    /* Swiper'ın kullandığı sarmalayıcı ve slaytlar */
    .slides.swiper-wrapper {
        width: 100%;
        height: 100%;
    }

    .slide.swiper-slide {
        width: 100%;
        height: 100%;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        /* Görüntünün altında oluşabilecek boşluğu engeller */
    }

    /* ==================================== */
    /* 2. CAPTION (Metin İçeriği) STİLLERİ */
    /* ==================================== */

    .caption {
        position: absolute;
        bottom: 80px;
        left: 80px;
        color: #fff;
        max-width: 500px;
        z-index: 10;
    }

    .caption h2 {
        font-size: 42px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .caption p {
        font-size: 18px;
        line-height: 1.6;
    }

    /* ==================================== */
    /* 3. SWIPER PAGINATION (Göstergeler) */
    /* ==================================== */

    /* Swiper varsayılanlarını geçersiz kılmak için */
    .swiper-pagination {
        bottom: 30px !important;
        left: 80px !important;
        width: auto !important;
        /* Genişliği içeriğe göre ayarla */
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        /* Noktalar arasındaki boşluk */
    }

    .swiper-pagination-bullet {
        width: 40px;
        height: 4px;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        /* Swiper varsayılan opaklığı sıfırlama */
        margin: 0 !important;
        /* Swiper varsayılan margin'i sıfırlama */
        transition: background 0.3s ease;
        cursor: pointer;
    }

    .swiper-pagination-bullet-active {
        background: #fff;
    }

    /* ==================================== */
    /* 4. RESPONSIVE DÜZENLEMELER */
    /* ==================================== */

    /* Tablet ve Orta Boy Cihazlar (<= 992px) */
    @media (max-width: 992px) {
        .slider.swiper {
            height: 600px;
            /* Tablet için yükseklik ayarı */
        }

        .caption {
            left: 40px;
            bottom: 50px;
            max-width: 80%;
        }

        .caption h2 {
            font-size: 32px;
        }

        .caption p {
            font-size: 16px;
        }

        .swiper-pagination {
            left: 40px !important;
        }
    }

    /* Mobil Cihazlar (<= 576px) */
    @media (max-width: 576px) {
        .slider.swiper {
            height: 400px;
            /* Mobil için yükseklik ayarı */
        }

        .caption {
            left: 20px;
            bottom: 30px;
        }

        .caption h2 {
            font-size: 24px;
            margin-bottom: 10px;
            /* Başlık ve paragraf arası boşluk azaltıldı */
        }

        .caption p {
            font-size: 14px;
        }

        .swiper-pagination {
            left: 20px !important;
            bottom: 15px !important;
            gap: 8px;
            /* Mobil için noktalar arası boşluk azaltıldı */
        }

        .swiper-pagination-bullet {
            width: 25px;
            /* Noktalar küçültüldü */
        }
    }
    /* ==================================== */
    /* 4. SWIPER NAVIGATION (OKLAR) STİLLERİ */
    /* ==================================== */

    /* Genel Ok Konumlandırması ve Boyutlandırması */
    .swiper-button-next,
    .swiper-button-prev {
        color: transparent;
        /* Swiper'ın varsayılan ok rengini gizle */
        width: 50px;
        height: 50px;
        background-color: #fff;
        /* Beyaz zemin */
        border-radius: 50%;
        /* Yuvarlak şekil */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        /* Hafif gölge */
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    /* Hover Etkisi */
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        opacity: 1;
        transform: scale(1.05);
    }

    /* Swiper'ın varsayılan içeriğini (SVG/Font) override ederek kendi okumuzu ekliyoruz */
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 24px;
        /* Ok simgesinin boyutu */
        font-weight: bold;
        color: #333;
        /* Ok rengi (koyu gri/siyah) */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* İleri (Next) Oku */
    .swiper-button-next::after {
        content: '→';
        /* Şık bir Unicode ok (veya font-awesome simgesi kullanabilirsiniz) */
    }

    /* Geri (Prev) Oku */
    .swiper-button-prev::after {
        content: '←';
        /* Şık bir Unicode ok */
    }

    /* Okları kenarlara biraz yaklaştıralım (varsayılan 10px olabilir) */
    .swiper-button-next {
        right: 30px;
    }

    .swiper-button-prev {
        left: 30px;
    }

    /* ==================================== */
    /* 5. OKLAR İÇİN RESPONSIVE DÜZENLEMELER */
    /* ==================================== */

    /* Tablet ve Orta Boy Cihazlar (<= 992px) */
    @media (max-width: 992px) {

        .swiper-button-next,
        .swiper-button-prev {
            width: 40px;
            height: 40px;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 20px;
        }

        .swiper-button-next {
            right: 20px;
        }

        .swiper-button-prev {
            left: 20px;
        }
    }

    /* Mobil Cihazlar (<= 576px) */
    @media (max-width: 576px) {

        /* Mobil cihazlarda genelde oklar gizlenir veya küçültülür */
        .swiper-button-next,
        .swiper-button-prev {
            /* Bu alanda gizlemeyi tercih edebilirsiniz */
            display: none !important;
        }

        /* Alternatif olarak, eğer göstermek isterseniz: */
        /*
        .swiper-button-next,
        .swiper-button-prev {
            width: 30px;
            height: 30px;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 16px;
        }
        .swiper-button-next { right: 10px; }
        .swiper-button-prev { left: 10px; }
        */
    }
    /* About Us */
    .about {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        padding: 80px;
        box-sizing: border-box;
        background: #fff;
    }

    /* Sol görsel */
    .about-image {
        flex: 1;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
    }

    /* Sağ içerik */
    .about-content {
        flex: 1;
        color: #333;
    }

    .about-content .about-tag {
        color: #c4165d;
        font-size: 16px;
        font-weight: 600;
    }

    .about-content h2 {
        font-size: 40px;
        color: #662d91;
        /* Mor ton */
        margin: 10px 0 20px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
        color: #444;
    }

    /* Her madde */
    .about-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 30px;
    }

    .about-item img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        padding: 20px 0px 0px 0px;
    }

    .about-item h3 {
        font-size: 18px;
        margin-bottom: 6px;
        color: #333;
    }

    .about-item p {
        font-size: 15px;
        line-height: 1.6;
        color: #666;
        margin: 0;
    }

    /* Buton */
    .about-btn {
        display: inline-block;
        background: #00a5df;
        color: #fff;
        padding: 12px 28px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 16px;
        margin-top: 20px;
        transition: background 0.3s ease;
    }

    .about-btn:hover {
        background: #008bbd;
    }

    /* About Responsive **DÜZENLENDİ** */
    @media (max-width: 992px) {
        .about {
            flex-direction: column;
            height: auto;
            /* küçük ekranlarda esnek olsun */
            padding: 40px;
            text-align: center;
        }

        .about-content {
            max-width: 100%;
        }

        .about-item {
            /* Tablette ortalanmasın, soldan başlasın */
            justify-content: flex-start;
            text-align: left;
            max-width: 500px;
            /* İçerik çok yayılmasın */
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 576px) {
        .about {
            padding: 30px 16px;
        }

        .about-content h2 {
            font-size: 32px;
        }

        .about-item {
            gap: 10px;
            /* Boşluk azaltıldı */
        }

        .about-item img {
            width: 30px;
            height: 30px;
            padding: 15px 0 0 0;
        }
    }


    /* Soru İşareti Olan Alan (why-separate) **DÜZENLENDİ ve TEKRARLAR TEMİZLENDİ** */
    .why-separate {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        /* İki tarafı ayırmak için */
        gap: 60px;
        padding: 50px 110px 100px 110px;
        /* Büyük ekran padding'i */
        box-sizing: border-box;
        background: #fff;
        /* Eski çakışan margin ve padding kaldırıldı, buradaki padding genel olarak ayarlanıyor */
        margin: 0;
        font-family: "Quicksand", sans-serif;
        color: #4c4c4c;
        line-height: 1.7;
    }

    /* Sol alan (Başlık) */
    .why-left {
        display: flex;
        align-items: center;
        gap: 16px;
        flex: 1;
        min-width: 250px;
        /* Minimum genişlik verilebilir */
        /* Eski margin-bottom: 20px kaldırıldı */
    }

    .why-left img {
        width: 60px;
        /* frame.png boyutu */
        height: auto;
        flex-shrink: 0;
    }

    .why-left h2 {
        font-size: 28px;
        font-weight: 600;
        color: #BED230;
        /* yeşil ton */
        line-height: 1.4;
    }

    /* Sağ alan (Metin) */
    .why-right {
        flex: 1;
        color: #444;
        /* Eski çakışan padding'ler kaldırıldı */
    }

    .why-right p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .why-right ul {
        list-style: none;
        padding-left: 0;
        margin: 15px 0 20px 0;
        /* inline-size: max-content; kaldırıldı, mobil uyumu zorluyordu */
    }

    .why-right li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .why-right span {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 2px;
        margin-right: 8px;
    }

    .blue {
        background-color: #00AAC2;
    }

    .pink {
        background-color: #DA1D52;
    }

    .orange {
        background-color: #ED7824;
    }

    .purple {
        background-color: #7E287B;
    }

    /* Sağdaki kapak görselleri */
    .cap-images {
        width: 25%;
        /* Masaüstü boyutunda genişlik */
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        /* padding-right: 150px; kaldırıldı, responsive'e bırakıldı */
    }

    .cap-images .green-cap {
        height: auto;
        width: 150px;
        /* Görsel boyutları varsayıldı */
        margin-bottom: 20px;
    }

    .cap-images .row {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .cap-images .row img {
        animation-delay: 1s;
        width: 150px;
            padding: 15px;
            /* Animasyon gecikmesi */
    }

    .cap-images img:hover {
        transform: scale(1.05);
    }

    /* Animasyon */
    .cap-images .green-cap,
    .cap-images .row img {
        animation: zoomMove 5s ease-in-out infinite;
    }

    .cap-images .green-cap {
        animation-delay: 0s;
    }

    .cap-images .row img {
        animation-delay: 1s;
    }

    @keyframes zoomMove {
        0% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-10px) scale(1.1);
        }

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


    /* why-separate Responsive **DÜZENLENDİ** */
    @media (max-width: 992px) {
        .why-separate {
            flex-direction: column;
            text-align: center;
            gap: 30px;
            padding: 40px;
            /* Daha az yatay padding */
        }

        .why-left {
            justify-content: center;
            margin-bottom: 20px;
            /* Başlık soldan hizalı olsun diye */
            text-align: left;
        }

        .why-left h2 {
            font-size: 24px;
        }

        .why-right {
            width: 100%;
            margin: 0 auto;
            padding: 0;
        }

        /* Madde işaretleri solda kalsın */
        .why-right ul {
            text-align: left;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .why-right li {
            justify-content: flex-start;
        }

        .cap-images {
            width: 100%;
            /* Görsel bloğu ortalandı */
            margin: 30px auto 0 auto;
            flex-direction: row;
            /* Görseller yan yana dizilebilir */
            justify-content: center;
            gap: 10px;
        }

        .cap-images .green-cap {
            width: 100px;
            margin-bottom: 0;
        }

        .cap-images .row {
            flex-direction: row;
            align-items: center;
            width: auto;
        }

        .cap-images .row img {
            width: 60px;
            margin: 0 5px;
        }
    }

    @media (max-width: 576px) {
        .why-separate {
            padding: 30px 16px;
        }

        .why-left img {
            width: 40px;
        }

        .why-left h2 {
            font-size: 20px;
        }

        .why-right p {
            font-size: 14px;
        }

        .cap-images {
            flex-wrap: wrap;
            /* Görseller sığmazsa alt satıra geçsin */
        }

        .cap-images .green-cap {
            width: 80px;
        }

        .cap-images .row img {
            width: 80px;
        }
    }


    /* Kapak olduğu alan (Counter Section) */
    .counter-section {
        position: relative;
        height: 640px;
        background: #fff;
        overflow: hidden;
    }

    /* Ortadaki yazı ve kutu */
    .counter-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 5;
    }

    .counter-center h2 {
        font-size: 22px;
        color: #662d91;
        margin-bottom: 20px;
    }

    .counter-box {
        display: inline-block;
        background: #c4165d;
        padding: 30px 80px;
        border-radius: 20px;
        color: #fff;
    }

    .counter-box .count {
        font-size: 42px;
        font-weight: bold;
        display: block;
    }

    .counter-box small {
        font-size: 14px;
    }

    /* Kapak animasyonu */
    .cap {
        position: absolute;
        width: auto;
        height: auto;
        animation: float 5s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    /* Kapakların konumları */
    .cap1 {
        top: 60px;
        left: 250px;
        animation-delay: 2s;
    }

    .cap2 {
        top: 180px;
        left: 200px;
        animation-delay: 1s;
    }

    .cap3 {
        top: 80px;
        left: 600px;
        animation-delay: 2s;
    }

    .cap4 {
        top: 80px;
        right: 550px;
        animation-delay: 1.7s;
    }

    .cap5 {
        bottom: 60px;
        right: 620px;
        animation-delay: 2s;
    }

    .cap6 {
        top: 50px;
        right: 120px;
        animation-delay: 1.5s;
    }

    .cap7 {
        bottom: 100px;
        left: 300px;
        animation-delay: 1.8s;
    }

    .cap8 {
        bottom: 150px;
        left: 500px;
        animation-delay: 1.9s;
    }

    .cap9 {
        top: 250px;
        right: 500px;
        animation-delay: 1.4s;
    }

    .cap10 {
        bottom: 200px;
        right: 350px;
        animation-delay: 1.6s;
    }

    /* Sabit yarım kapak */
    .cap11.fixed {
        top: 200px;
        right: 0;
        animation: none;
    }

    /* Mobil düzenlemeler **DÜZENLENDİ** */
    @media (max-width: 576px) {
        .counter-section {
            height: 420px;
        }

        .counter-center h2 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .counter-box {
            padding: 15px 30px;
            border-radius: 12px;
        }

        .counter-box .count {
            font-size: 26px;
        }

        /* Kapakları küçült */
        .cap {
            transform: scale(0.5);
        }

        /* Mobilde gösterilecek kapaklar dengeli dağılsın */
        /* Mutlak konumlar mobil ekran için ayarlandı */
        .cap1 {
            top: 30px;
            left: 5%;
        }

        .cap2 {
            bottom: 40px;
            left: 5%;
        }

        .cap6 {
            top: 20px;
            right: 5%;
        }

        .cap7 {
            bottom: 60px;
            right: 5%;
        }

        .cap10 {
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%) scale(0.5);
        }

        /* Ortaya yakın yerleştirildi */

        /* Gereksiz kalabalığı gizle */
        .cap3,
        .cap4,
        .cap5,
        .cap8,
        .cap9,
        .cap11.fixed {
            display: none;
        }
    }


    /* Nasıl Katılabiliriz? (Join Section) */
    .join-section {
        text-align: center;
        padding: 40px 20px;
    }

    .join-header {
        margin-bottom: 25px;
    }

    .join-tag {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #c4165d;
        margin-bottom: 10px;
    }

    .join-title {
        font-size: 26px;
        font-weight: 700;
        color: #662d91;
    }

    /* Slider alanı */
    .join-slider {
        position: relative;
        width: 100%;
        max-width: 1280px;
        height: 720px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 10px;
    }

    .join-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 2s ease-in-out;
    }

    .join-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .join-slide.active {
        opacity: 1;
    }

    /* Yazı */
    .join-caption {
        position: absolute;
        bottom: 45px;
        left: 30px;
        color: #fff;
        font-size: 18px;
        text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
        z-index: 5;
        max-width: 80%;
        text-align: left;
    }

    /* Noktalar */
    .join-dots {
        position: absolute;
        bottom: 15px;
        left: 30px;
        z-index: 6;
    }

    .join-dots .dot {
        height: 10px;
        width: 10px;
        margin: 0 4px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .join-dots .dot.active {
        background-color: #662d91;
    }

    /* Join Section Responsive */
    @media (max-width: 1280px) {
        .join-slider {
            height: calc(100vw * 0.5625);
        }

        /* 16:9 */
    }

    @media (max-width: 768px) {
        .join-title {
            font-size: 22px;
        }

        .join-caption {
            font-size: 16px;
            left: 20px;
            bottom: 20px;
        }

        .join-dots {
            left: 20px;
            bottom: 10px;
        }
    }

    @media (max-width: 480px) {
        .join-title {
            font-size: 20px;
        }

        .join-caption {
            font-size: 14px;
            left: 15px;
            bottom: 35px;
            /* Noktaların üstünde kalsın */
            max-width: 90%;
        }

        .join-dots {
            left: 15px;
            bottom: 10px;
        }
    }


    /* Footer Alanı */

    /* Ana Alan */
    .delivery-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 60px 80px;
        background: #fff;
        flex-wrap: wrap;
    }

    /* Sol Yazılar */
    .delivery-text {
        flex: 1;
        min-width: 320px;
    }

    .delivery-text h2 {
        font-size: 36px;
        color: #f37021;
        margin-bottom: 16px;
    }

    .delivery-text p {
        font-size: 16px;
        color: #444;
        margin-bottom: 24px;
    }

    .delivery-logo {
        width: 180px;
        margin-top: 20px;
    }

    /* Sağ Görsel */
    .delivery-image {
        flex: 1;
        text-align: center;
        min-width: 320px;
    }

    .delivery-image img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
    }

    /* Sosyal Medya */
    .delivery-social {
        display: flex;
        justify-content: flex-end;
        gap: 16px;
        padding: 20px 80px;
    }

    .delivery-social img {
        width: 28px;
        height: 28px;
        transition: transform 0.3s;
    }

    .delivery-social img:hover {
        transform: scale(1.1);
    }

    /* Footer Çizgi ve Linkler */
    .delivery-footer {
        text-align: center;
        margin-top: 20px;
    }

    .footer-line {
        height: 3px;
        background: linear-gradient(to right, #00AAC2, #BED230, #ED7824, #7E287B, #DA1D52);
        margin: 20px auto;
        width: 90%;
        border-radius: 3px;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 30px;
        padding-bottom: 20px;
    }

    .footer-links a {
        text-decoration: none;
        color: #444;
        font-size: 14px;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: #f37021;
    }

    /* Delivery/Footer Responsive **DÜZENLENDİ** */
    @media (max-width: 992px) {
        .delivery-section {
            flex-direction: column;
            text-align: center;
            padding: 40px 20px;
        }

        .delivery-text {
            min-width: unset;
            /* Min genişlik kaldırıldı */
        }

        .delivery-text h2 {
            font-size: 28px;
        }

        .delivery-image {
            min-width: unset;
            /* Min genişlik kaldırıldı */
            order: -1;
            /* Görseli üste taşıyabiliriz */
        }

        .delivery-social {
            justify-content: center;
            padding: 20px;
        }

        .footer-links {
            flex-direction: column;
            gap: 12px;
        }
    }

    @media (max-width: 576px) {
        .delivery-section {
            padding: 30px 16px;
        }

        .delivery-text h2 {
            font-size: 24px;
        }
    }

    /* Video Ayarları (Hero Video) **TEKRARLANAN KODLAR TEMİZLENDİ** */

    /* Genel video ayarları */
    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    /* Masaüstü video göster, mobil video gizle */
    .desktop-video {
        display: block;
    }

    .mobile-video {
        display: none;
    }

    /* Tablet ve mobil için video ayarları */
    @media (max-width: 768px) {
        .desktop-video {
            display: none;
        }

        .mobile-video {
            display: block;
            width: 100%;
            /* Mobil dikey ekranda tam yüksekliği yakalaması için */
            height: 80vh;
            object-fit: cover;
            position: relative;
            z-index: -1;
        }
    }

    @media (max-width: 1024px) and (min-width: 769px) {

        /* Tablet görünümünde video object-fit: contain ayarı tutuldu */
        .hero-video video {
            object-fit: contain;
        }
    }