 /* Swiper yapısının kaybolmasını engeller */
.hero-section.hero-five .swiper {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-section.hero-five .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Yazı animasyonları için başlangıç durumu */
.hero-animated-content h6, 
.hero-animated-content h2, 
.hero-animated-content p, 
.hero-animated-content a {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Sadece aktif slayttaki yazılar görünür olsun */
.swiper-slide-active .hero-animated-content h6 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.swiper-slide-active .hero-animated-content h2 { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.swiper-slide-active .hero-animated-content p { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.swiper-slide-active .hero-animated-content a { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

.head-section .cloud-img {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 9;
}
/* Kapsayıcı ayarları */
.share-wrapper {
    position: relative;
    display: inline-block;
}

/* Yukarı açılan ikonların gizli hali */
.share-options {
    position: absolute;
    bottom: 100%; /* Ana butonun hemen üstünden başlar */
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px; /* Butonla arasındaki boşluk */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Hafif aşağıdan başlasın */
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Yaylanma efekti */
        z-index: 1;
}

/* Hover durumunda (Üzerine gelince) açılma */
.share-wrapper:hover .share-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sosyal medya buton tasarımları */
.share-icon {
    width: 40px;
    height: 40px;
    background-color: #28a745; /* Marka rengine göre değişebilir */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.share-icon:hover {
    transform: scale(1.1);
    color: white;
}

/* Renk Özelleştirmeleri (Opsiyonel) */
.whatsapp { background-color: #25D366; }
.instagram { background-color: #E4405F; }
.facebook { background-color: #1877F2; }