/* --- INITIATIV BANNER WRAPPER --- */
.initiatiiv-banner {
    padding: 100px 0;
    background: #103b7b; /* Pars Mavisi Arka Plan */
    /* Hafif bir endüstriyel doku veya gradient ile derinlik katıyoruz */
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.15), transparent), 
                linear-gradient(135deg, #103b7b 0%, #0a254d 100%);
    overflow: hidden;
    position: relative;
}

/* Cam Efektli Ana Gövde */
.banner-glass {
    width: 85%; /* Sayfanın %85'ini kaplasın */
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 5%;
    background: rgba(255, 255, 255, 0.05); /* Çok hafif beyaz şeffaflık */
    backdrop-filter: blur(15px); /* ASIL OLAY: Arkadaki rengi buğular */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.5s ease;
}

.banner-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3); /* Hoverda turuncu parıltı */
}

/* Roket İkonu Animasyonu */
.launch-icon {
    font-size: 3.5rem;
    color: #ff6b00;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.4));
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Yazı Alanları */
.banner-glass h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.banner-glass p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Minimalist Ama Güçlü Buton */
.btn-minimal {
    display: inline-block;
    padding: 18px 45px;
    background: #ff6b00;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
    border: 2px solid transparent;
}

.btn-minimal:hover {
    background: transparent;
    color: #ff6b00;
    border-color: #ff6b00;
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
    transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .banner-glass { width: 95%; padding: 40px 20px; }
    .banner-glass h2 { font-size: 1.8rem; }
    .banner-glass p { font-size: 1rem; }
    .launch-icon { font-size: 2.5rem; }
}