/* ================= BGM BLUE HERO V5 ================= */

/* Footer Mavisi Arka Plan */
.bgm-blue-bg {
    position: relative;
    background: #102652; /* BGM Bilişim Footer Tonu */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 100px;
    font-family: 'Inter', sans-serif;
}

.cyber-bg-elements {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1;
}

/* Hafif Orta Aydınlatma (Çok abartmadan) */
.center-glow-light {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, rgba(16, 38, 82, 0) 70%);
    filter: blur(50px);
}

.float-icon {
    position: absolute; color: rgba(255, 255, 255, 0.04);
    animation: floatCyber 6s ease-in-out infinite alternate;
}
.i-1 { top: 15%; left: 10%; font-size: 120px; animation-delay: 0s; }
.i-2 { top: 20%; right: 15%; font-size: 100px; animation-delay: 1s; }
.i-3 { bottom: 15%; left: 15%; font-size: 140px; animation-delay: 2s; }
.i-4 { bottom: 25%; right: 10%; font-size: 110px; animation-delay: 0.5s; }
.i-5 { top: 50%; left: 5%; font-size: 90px; animation-delay: 1.5s; }
.i-6 { top: 40%; right: 5%; font-size: 130px; animation-delay: 2.5s; }
.i-7 { top: 10%; left: 45%; font-size: 80px; animation-delay: 0.8s; }
.i-8 { bottom: 10%; right: 40%; font-size: 150px; animation-delay: 1.2s; }

@keyframes floatCyber {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.cyber-content-wrapper {
    position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; text-align: center !important; width: 100%;
}

.cyber-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 204, 0, 0.1); border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 8px 25px; border-radius: 50px; color: #ffcc00; font-weight: 700; font-size: 14px; margin-bottom: 30px;
}

.cyber-main-title {
    font-size: 65px !important; font-weight: 800 !important; color: #ffffff; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px;
}

/* --- YENİ: KAYAN RENKLİ BAŞLIK ANİMASYONU --- */
.text-animated-gradient {
    background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00, #ff9900);
    background-size: 300% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 4s linear infinite;
    display: inline-block;
}

@keyframes shineText {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.cyber-subtitle {
    font-size: 19px !important; color: #cbd5e1 !important; line-height: 1.7 !important;
    max-width: 800px; margin: 0 auto 50px auto !important; font-weight: 400;
}
.text-white-bold { color: #ffffff; font-weight: 700; }
.text-yellow-bold { color: #ffcc00; font-weight: 700; }

/* --- YENİ: 4'LÜ EŞİT GRID SİSTEMİ --- */
.bgm-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Eşit Sütun */
    gap: 25px;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 60px;
}

.bgm-service-card {
    background: rgba(255, 255, 255, 0.03); /* Cam efekti */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon-gold {
    font-size: 55px;
    color: #ffcc00;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.bgm-service-card h3 {
    color: #ffffff !important; font-size: 20px !important; font-weight: 700 !important; margin-bottom: 10px !important; transition: all 0.4s ease;
}

.bgm-service-card p {
    color: #94a3b8 !important; font-size: 14px !important; margin: 0 !important; line-height: 1.6 !important; transition: all 0.4s ease;
}

/* --- YENİ: KUTU HOVER (ÜZERİNE GELİNCE) ANİMASYONU --- */
.bgm-service-card:hover {
    transform: translateY(-15px); /* Yukarı zıplar */
    background: #ffcc00; /* Arka plan sarı olur */
    border-color: #ffcc00;
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.3);
}

.bgm-service-card:hover .card-icon-gold,
.bgm-service-card:hover h3 {
    color: #102652 !important; /* İkon ve başlık lacivert olur */
}

.bgm-service-card:hover p {
    color: #1a3673 !important; /* Alt yazı daha koyu lacivert olur */
    font-weight: 600;
}

/* Aksiyon Butonu */
.cyber-action-btn {
    background: #ffcc00; color: #102652 !important; font-size: 18px; font-weight: 800;
    padding: 18px 45px; border-radius: 12px; text-decoration: none; display: inline-flex;
    align-items: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 0 25px rgba(255, 204, 0, 0.2);
}
.cyber-action-btn:hover { background: #fff; transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 255, 255, 0.4); }

/* --- MOBİL UYUM (GRID İÇİN KRİTİK) --- */
@media (max-width: 991px) {
    .bgm-services-grid { grid-template-columns: repeat(2, 1fr); /* Tablette 2'li yan yana */ }
    .cyber-main-title { font-size: 50px !important; }
}

@media (max-width: 768px) {
    .bgm-services-grid { grid-template-columns: 1fr; /* Telefonda alt alta */ }
    .cyber-main-title { font-size: 38px !important; }
    .cyber-subtitle { font-size: 16px !important; padding: 0 15px; }
}/* ================= BGM BLUE HERO V5 ================= */

/* Footer Mavisi Arka Plan */
.bgm-blue-bg {
    position: relative;
    background: #102652; /* BGM Bilişim Footer Tonu */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 100px;
    font-family: 'Inter', sans-serif;
}

.cyber-bg-elements {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1;
}

/* Hafif Orta Aydınlatma (Çok abartmadan) */
.center-glow-light {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, rgba(16, 38, 82, 0) 70%);
    filter: blur(50px);
}

.float-icon {
    position: absolute; color: rgba(255, 255, 255, 0.04);
    animation: floatCyber 6s ease-in-out infinite alternate;
}
.i-1 { top: 15%; left: 10%; font-size: 120px; animation-delay: 0s; }
.i-2 { top: 20%; right: 15%; font-size: 100px; animation-delay: 1s; }
.i-3 { bottom: 15%; left: 15%; font-size: 140px; animation-delay: 2s; }
.i-4 { bottom: 25%; right: 10%; font-size: 110px; animation-delay: 0.5s; }
.i-5 { top: 50%; left: 5%; font-size: 90px; animation-delay: 1.5s; }
.i-6 { top: 40%; right: 5%; font-size: 130px; animation-delay: 2.5s; }
.i-7 { top: 10%; left: 45%; font-size: 80px; animation-delay: 0.8s; }
.i-8 { bottom: 10%; right: 40%; font-size: 150px; animation-delay: 1.2s; }

@keyframes floatCyber {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.cyber-content-wrapper {
    position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; text-align: center !important; width: 100%;
}

.cyber-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 204, 0, 0.1); border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 8px 25px; border-radius: 50px; color: #ffcc00; font-weight: 700; font-size: 14px; margin-bottom: 30px;
}

.cyber-main-title {
    font-size: 65px !important; font-weight: 800 !important; color: #ffffff; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px;
}

/* --- YENİ: KAYAN RENKLİ BAŞLIK ANİMASYONU --- */
.text-animated-gradient {
    background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00, #ff9900);
    background-size: 300% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 4s linear infinite;
    display: inline-block;
}

@keyframes shineText {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.cyber-subtitle {
    font-size: 19px !important; color: #cbd5e1 !important; line-height: 1.7 !important;
    max-width: 800px; margin: 0 auto 50px auto !important; font-weight: 400;
}
.text-white-bold { color: #ffffff; font-weight: 700; }
.text-yellow-bold { color: #ffcc00; font-weight: 700; }

/* --- YENİ: 4'LÜ EŞİT GRID SİSTEMİ --- */
.bgm-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Eşit Sütun */
    gap: 25px;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 60px;
}

.bgm-service-card {
    background: rgba(255, 255, 255, 0.03); /* Cam efekti */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon-gold {
    font-size: 55px;
    color: #ffcc00;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.bgm-service-card h3 {
    color: #ffffff !important; font-size: 20px !important; font-weight: 700 !important; margin-bottom: 10px !important; transition: all 0.4s ease;
}

.bgm-service-card p {
    color: #94a3b8 !important; font-size: 14px !important; margin: 0 !important; line-height: 1.6 !important; transition: all 0.4s ease;
}

/* --- YENİ: KUTU HOVER (ÜZERİNE GELİNCE) ANİMASYONU --- */
.bgm-service-card:hover {
    transform: translateY(-15px); /* Yukarı zıplar */
    background: #ffcc00; /* Arka plan sarı olur */
    border-color: #ffcc00;
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.3);
}

.bgm-service-card:hover .card-icon-gold,
.bgm-service-card:hover h3 {
    color: #102652 !important; /* İkon ve başlık lacivert olur */
}

.bgm-service-card:hover p {
    color: #1a3673 !important; /* Alt yazı daha koyu lacivert olur */
    font-weight: 600;
}

/* Aksiyon Butonu */
.cyber-action-btn {
    background: #ffcc00; color: #102652 !important; font-size: 18px; font-weight: 800;
    padding: 18px 45px; border-radius: 12px; text-decoration: none; display: inline-flex;
    align-items: center; gap: 10px; transition: all 0.3s ease; box-shadow: 0 0 25px rgba(255, 204, 0, 0.2);
}
.cyber-action-btn:hover { background: #fff; transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 255, 255, 0.4); }

/* --- MOBİL UYUM (GRID İÇİN KRİTİK) --- */
@media (max-width: 991px) {
    .bgm-services-grid { grid-template-columns: repeat(2, 1fr); /* Tablette 2'li yan yana */ }
    .cyber-main-title { font-size: 50px !important; }
}

@media (max-width: 768px) {
    .bgm-services-grid { grid-template-columns: 1fr; /* Telefonda alt alta */ }
    .cyber-main-title { font-size: 38px !important; }
    .cyber-subtitle { font-size: 16px !important; padding: 0 15px; }
}



/* ================= ŞİRKET PROFİLİ (FİNAL STİLLER) ================= */

.cp-final-section {
    background-color: #102652 !important; /* Hero V5 ile BİREBİR Aynı Renk */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border: none !important;
}

.cp-final-container {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- SOL: GÖRSEL ALANI --- */
.cp-final-visual {
    flex: 1;
    position: relative;
}

.cp-final-image-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    overflow: hidden; /* Resim köşelerden taşmasın */
}

/* Gerçek Fotoğraf Ayarları */
.cp-real-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: transform 0.6s ease;
}
.cp-final-image-box:hover .cp-real-img { transform: scale(1.05); }

/* Resim Yoksa Çıkacak İkon */
.cp-fallback-icon { position: absolute; font-size: 150px; color: rgba(255,255,255,0.05); z-index: 1; }

/* Resim Üzeri Hafif Karartma */
.cp-image-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(16,38,82,0.1) 0%, rgba(16,38,82,0.6) 100%);
    z-index: 3; pointer-events: none;
}

/* Sarı Rozet */
.cp-final-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: #ffcc00;
    color: #102652;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 204, 0, 0.4);
    z-index: 5;
}
.cp-badge-num { display: block; font-size: 45px; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.cp-badge-text { font-size: 13px; font-weight: 800; text-transform: uppercase; }

/* --- SAĞ: İÇERİK VE HİZALANMIŞ METİNLER --- */
.cp-final-content { flex: 1.2; }

.cp-final-tag {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(255,204,0,0.3); background: rgba(255,204,0,0.05);
    color: #ffcc00; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; font-size: 13px; margin-bottom: 25px;
    padding: 8px 20px; border-radius: 50px;
}

.cp-final-title {
    font-size: 44px; font-weight: 800; color: #ffffff;
    line-height: 1.2; margin-bottom: 30px; letter-spacing: -0.5px;
}
.cp-text-yellow { color: #ffcc00; }
.cp-text-white { color: #ffffff; font-weight: 700; }

/* METİN HİZALAMA VE FERAHLAŞTIRMA (Sorunun Çözümü) */
.cp-final-text-group {
    margin-bottom: 40px;
}
.cp-final-text-group p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.85; /* Satır aralığı açıldı, rahat okuma */
    margin-bottom: 20px; /* Paragraflar arası net boşluk */
    text-align: left; /* Düzenli sola hizalama */
    font-weight: 400;
}
.cp-final-text-group p:last-child { margin-bottom: 0; }

/* FOTOĞRAFTAKİ GİBİ KOYU RENKLİ LİSTE KUTULARI */
.cp-final-list { display: flex; flex-direction: column; gap: 20px; }

.cp-list-box {
    display: flex; align-items: center; gap: 20px;
    background: rgba(0, 0, 0, 0.2); /* Koyu iç kutu görünümü */
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.cp-list-box:hover { background: rgba(0, 0, 0, 0.3); border-color: rgba(255,204,0,0.3); transform: translateX(5px); }

.cp-icon-circle {
    width: 40px; height: 40px; background: #ffcc00; color: #102652;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: bold; flex-shrink: 0;
}

.cp-list-info h4 { color: #ffffff; font-size: 19px; font-weight: 700; margin-bottom: 5px; }
.cp-list-info p { color: #94a3b8; font-size: 14px; margin: 0; line-height: 1.5; }

/* --- MOBİL UYUM --- */
@media (max-width: 991px) {
    .cp-final-container { flex-direction: column; gap: 50px; }
    .cp-final-visual { width: 100%; max-width: 500px; margin: 0 auto; }
    .cp-final-title { font-size: 36px; text-align: center; }
    .cp-final-tag { margin: 0 auto 25px auto; display: flex; width: fit-content; }
    .cp-final-text-group p { text-align: center; }
}









/* ================= MİSYON & VİZYON FİNAL STİLLERİ ================= */

.mv-final-section {
    background-color: #102652 !important; /* Dikişsiz BGM Mavisi */
    padding: 100px 0 !important;
    position: relative !important;
    border: none !important;
}

/* --- BAŞLIK ALANINI ZORLA ORTALAMA --- */
.mv-header-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 60px !important;
}

/* Üst Kutu (Hedeflerimiz) */
.mv-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 204, 0, 0.1) !important;
    border: 1px solid rgba(255, 204, 0, 0.3) !important;
    color: #ffcc00 !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 25px !important;
}

/* Ana Başlık */
.mv-title {
    font-size: 46px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

/* KAYAN RENKLİ YAZI ANİMASYONU (ÇÖZÜLDÜ) */
.mv-gradient-text {
    background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00, #ff9900) !important;
    background-size: 300% auto !important;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: mvShineText 4s linear infinite !important;
    display: inline-block !important;
}

@keyframes mvShineText {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* Alt Metin */
.mv-subtitle {
    color: #cbd5e1 !important;
    font-size: 18px !important;
    max-width: 700px !important;
    line-height: 1.7 !important;
    text-align: center !important;
    margin: 0 auto !important;
}

/* --- KARTLAR (GRID SİSTEMİ) --- */
.mv-final-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 30px !important;
    padding: 50px 40px !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
}

.mv-card:hover {
    transform: translateY(-10px) !important;
    border-color: #ffcc00 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
}

.mv-icon-wrap {
    width: 75px !important; height: 75px !important;
    margin: 0 auto 25px auto !important;
    background: rgba(255, 204, 0, 0.1) !important;
    color: #ffcc00 !important;
    border-radius: 20px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    font-size: 38px !important;
    transition: all 0.4s ease !important;
}

.mv-card:hover .mv-icon-wrap {
    background: #ffcc00 !important;
    color: #102652 !important;
    transform: scale(1.1) rotate(10deg) !important;
}

.mv-card h3 {
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}

.mv-card p {
    color: #94a3b8 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin: 0 !important;
}
.mv-card p strong { color: #ffffff !important; transition: 0.3s !important; }
.mv-card:hover p strong { color: #ffcc00 !important; }

/* --- MOBİL UYUM --- */
@media (max-width: 991px) {
    .mv-final-grid { grid-template-columns: 1fr !important; padding: 0 20px !important; }
    .mv-title { font-size: 36px !important; }
}






/* ================= NEDEN BGM BİLİŞİM? FİNAL STİLLERİ ================= */

.bgm-why-final-section {
    position: relative !important;
    padding: 100px 0 !important;
    background-color: #102652 !important; /* Dikişsiz BGM Mavisi */
    border: none !important;
}

.bgm-why-final-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* --- BAŞLIK ALANI (ZORLA ORTALAMA) --- */
.why-final-header-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    width: 100% !important;
}

.why-final-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 204, 0, 0.1) !important;
    border: 1px solid rgba(255, 204, 0, 0.3) !important;
    color: #ffcc00 !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 25px !important;
}

.why-final-title {
    font-size: 46px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
}

/* --- YENİ: KAYAN RENKLİ BAŞLIK ANİMASYONU (FİNAL VERSİYON) --- */
.why-animated-gradient {
    background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00, #ff9900) !important;
    background-size: 300% auto !important;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important; /* BU KOD GRİ KUTUYU YOK EDER */
    animation: shineTextWhy 4s linear infinite !important;
    display: inline-block !important;
}

@keyframes shineTextWhy {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.why-final-subtitle {
    color: #cbd5e1 !important;
    font-size: 18px !important;
    max-width: 750px !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
}

/* --- 4'LÜ EŞİT KUTU SİSTEMİ (FLEXBOX İLE ZORLANMIŞ) --- */
.why-final-boxes-wrapper {
    display: flex !important;
    flex-direction: row !important; /* Yan yana dizer */
    flex-wrap: nowrap !important; /* Alt satıra inmesini engeller */
    justify-content: center !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 1200px !important;
}

/* Kart Tasarımı (Cam Efekti) */
.why-final-box {
    flex: 1 !important; /* Hepsini eşit böler (1/4) */
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 25px !important;
    padding: 40px 25px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

/* Üzerine Gelince (Hover) Zıplama ve Parlama */
.why-final-box:hover {
    transform: translateY(-12px) !important;
    background: #ffcc00 !important; /* Arka plan sarı olur */
    border-color: #ffcc00 !important;
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.3) !important;
}

/* İkon Kutusu */
.why-icon-final-wrap {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto 25px auto !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    transition: all 0.4s ease !important;
}

/* İkon Hover Efekti */
.why-final-box:hover .why-icon-final-wrap {
    background: #102652 !important; /* İkon kutusu lacivert olur */
    color: #ffcc00 !important; /* İkon sarı olur */
    transform: scale(1.15) !important;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.2) !important;
}

/* Metinler */
.why-final-box h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    transition: color 0.3s ease !important;
}

.why-final-box:hover h3 {
    color: #102652 !important; /* Başlık lacivert olur */
}

.why-final-box p {
    color: #94a3b8 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    transition: color 0.3s ease !important;
}

.why-final-box:hover p {
    color: #1a3673 !important; /* Alt yazı daha koyu lacivert olur */
    font-weight: 600 !important;
}

/* --- MOBİL UYUM (Flexbox İçin Kritik) --- */
@media (max-width: 991px) {
    .why-final-boxes-wrapper { flex-direction: column !important; gap: 20px !important; }
}



/* ================= ÇALIŞMA SÜRECİMİZ STİLLERİ ================= */

.bgm-process-section {
    position: relative !important;
    padding: 100px 0 !important;
    background-color: #102652 !important; /* Dikişsiz BGM Mavisi */
    border: none !important;
    overflow: hidden !important;
}

.bgm-process-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* --- BAŞLIK ALANI --- */
.process-header-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    width: 100% !important;
}

.process-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 204, 0, 0.1) !important;
    border: 1px solid rgba(255, 204, 0, 0.3) !important;
    color: #ffcc00 !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 25px !important;
}

.process-title {
    font-size: 46px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
}

/* KAYAN RENKLİ BAŞLIK ANİMASYONU (Söz verdiğimiz gibi) */
.process-animated-gradient {
    background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00, #ff9900) !important;
    background-size: 300% auto !important;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: shineTextProcess 4s linear infinite !important;
    display: inline-block !important;
}

@keyframes shineTextProcess {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.process-subtitle {
    color: #cbd5e1 !important;
    font-size: 18px !important;
    max-width: 750px !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
}

/* --- ADIM KARTLARI (FLEXBOX WRAP YAPISI) --- */
.process-steps-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 25px !important;
    width: 100% !important;
}

.process-step-card {
    flex: 1 1 350px !important; /* Min 350px genişlik, esneyebilir */
    max-width: 400px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 25px !important;
    padding: 40px 30px !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: left !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.process-step-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 204, 0, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}

/* Kart Arkasındaki Dev Numara Filigranı (Watermark) */
.step-watermark {
    position: absolute !important;
    right: -10px !important;
    bottom: -20px !important;
    font-size: 120px !important;
    font-weight: 900 !important;
    color: rgba(255, 255, 255, 0.03) !important;
    line-height: 1 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    transition: all 0.5s ease !important;
}

.process-step-card:hover .step-watermark {
    color: rgba(255, 204, 0, 0.08) !important;
    transform: scale(1.1) !important;
}

/* İkonlar ve Metinler */
.step-icon {
    font-size: 35px !important;
    color: #ffcc00 !important;
    background: rgba(255, 204, 0, 0.1) !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    position: relative !important;
    z-index: 2 !important;
    transition: all 0.4s ease !important;
}

.process-step-card:hover .step-icon {
    background: #ffcc00 !important;
    color: #102652 !important;
}

.process-step-card h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    position: relative !important;
    z-index: 2 !important;
}

.process-step-card p {
    color: #94a3b8 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .process-title { font-size: 36px !important; }
    .process-step-card { flex: 1 1 100% !important; max-width: 100% !important; }
}




/* ================= RAKAMLARLA BİZ (SAYAÇ) STİLLERİ ================= */

.bgm-counter-section {
    position: relative !important;
    padding: 100px 0 !important;
    background-color: #102652 !important; /* Dikişsiz BGM Mavisi */
    border: none !important;
    overflow: hidden !important;
}

.bgm-counter-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* --- BAŞLIK ALANI --- */
.counter-header-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    width: 100% !important;
}

.counter-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 204, 0, 0.1) !important;
    border: 1px solid rgba(255, 204, 0, 0.3) !important;
    color: #ffcc00 !important;
    padding: 8px 25px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 25px !important;
}

.counter-title {
    font-size: 46px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
}

/* KAYAN RENKLİ BAŞLIK ANİMASYONU */
.counter-animated-gradient {
    background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00, #ff9900) !important;
    background-size: 300% auto !important;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: shineTextCounter 4s linear infinite !important;
    display: inline-block !important;
}

@keyframes shineTextCounter {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.counter-subtitle {
    color: #cbd5e1 !important;
    font-size: 18px !important;
    max-width: 750px !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
}

/* --- 4'LÜ SAYAÇ KARTLARI (FLEXBOX) --- */
.counter-boxes-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    width: 100% !important;
}

.counter-card {
    flex: 1 1 250px !important; /* Esnek genişlik */
    max-width: 280px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 25px !important;
    padding: 40px 20px !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.counter-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 204, 0, 0.05) !important;
    border-color: rgba(255, 204, 0, 0.3) !important;
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.1) !important;
}

/* İkon Alanı */
.c-icon-wrap {
    font-size: 40px !important;
    color: #ffcc00 !important;
    margin-bottom: 20px !important;
    background: rgba(255, 204, 0, 0.1) !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s ease !important;
}

.counter-card:hover .c-icon-wrap {
    background: #ffcc00 !important;
    color: #102652 !important;
    transform: scale(1.1) !important;
}

/* Rakam ve Plus İşareti */
.c-number-box {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
}

.c-number {
    font-size: 50px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    transition: color 0.3s ease !important;
}

.c-plus {
    font-size: 35px !important;
    font-weight: 800 !important;
    color: #ffcc00 !important;
    margin-left: 5px !important;
}

.counter-card:hover .c-number {
    color: #ffcc00 !important; /* Hoverda rakam da sarı olur */
}

/* Alt Metin */
.c-text {
    color: #cbd5e1 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    letter-spacing: 0.5px !important;
}

/* --- MOBİL UYUM --- */
@media (max-width: 991px) {
    .counter-boxes-wrapper { gap: 20px !important; }
    .counter-card { flex: 1 1 45% !important; max-width: 45% !important; }
}
@media (max-width: 768px) {
    .counter-card { flex: 1 1 100% !important; max-width: 100% !important; }
    .counter-title { font-size: 36px !important; }
}



/* ================= MEGA KAPANIŞ (CTA) STİLLERİ ================= */

.bgm-cta-section {
    position: relative !important;
    padding: 120px 0 !important;
    background-color: #102652 !important; /* Dikişsiz BGM mavisinin bir tık daha koyusu, final hissi verir */
    border: none !important;
    overflow: hidden !important;
}

/* Arka Plan Süslemeleri */
.cta-bg-glow {
    position: absolute !important;
    top: 50% !important; left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 800px !important; height: 800px !important;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 70%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.cta-abstract-shapes i {
    position: absolute !important;
    color: rgba(255, 255, 255, 0.03) !important;
    animation: floatShape 6s ease-in-out infinite alternate !important;
    z-index: 1 !important;
}
.s-1 { top: 10%; left: 15%; font-size: 150px; animation-delay: 0s; }
.s-2 { bottom: 15%; right: 20%; font-size: 120px; animation-delay: 1s; }
.s-3 { top: 30%; right: 10%; font-size: 100px; animation-delay: 2s; transform: rotate(45deg); }

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(10deg); }
}

/* Ana Kutu */
.cta-container {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.cta-content-box {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 40px !important;
    padding: 70px 40px !important;
    text-align: center !important;
    max-width: 900px !important;
    width: 100% !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Kutu İçi Hafif Çerçeve Işığı */
.cta-content-box::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important; left: -50% !important;
    width: 200% !important; height: 200% !important;
    background: radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.1) 0%, transparent 50%) !important;
    animation: rotateGlow 10s linear infinite !important;
    pointer-events: none !important;
}
@keyframes rotateGlow { 100% { transform: rotate(360deg); } }

/* Badge ve Başlıklar */
.cta-badge {
    display: inline-flex !important; align-items: center !important; gap: 8px !important;
    background: rgba(255, 204, 0, 0.15) !important; border: 1px solid rgba(255, 204, 0, 0.4) !important;
    color: #ffcc00 !important; padding: 10px 30px !important; border-radius: 50px !important;
    font-weight: 800 !important; font-size: 14px !important; letter-spacing: 2px !important;
    margin-bottom: 30px !important; position: relative !important; z-index: 2 !important;
}

.cta-main-title {
    font-size: 52px !important; color: #ffffff !important; font-weight: 900 !important;
    line-height: 1.2 !important; margin-bottom: 25px !important; position: relative !important; z-index: 2 !important;
}

/* Kayan Başlık Efekti (Burada da var) */
.cta-animated-gradient {
    background: linear-gradient(90deg, #ffcc00, #ffffff, #ffcc00, #ff9900) !important;
    background-size: 300% auto !important; color: transparent !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: shineTextCta 4s linear infinite !important; display: inline-block !important;
}
@keyframes shineTextCta { 0% { background-position: 0% center; } 100% { background-position: 300% center; } }

.cta-subtitle {
    color: #cbd5e1 !important; font-size: 19px !important; max-width: 700px !important;
    line-height: 1.7 !important; margin: 0 auto 40px auto !important; font-weight: 400 !important;
    position: relative !important; z-index: 2 !important;
}

/* --- BUTONLAR --- */
.cta-buttons-wrapper {
    display: flex !important; justify-content: center !important; gap: 20px !important;
    position: relative !important; z-index: 2 !important;
}

.cta-btn-primary {
    background: #ffcc00 !important; color: #0b1a3d !important;
    font-size: 18px !important; font-weight: 800 !important;
    padding: 20px 45px !important; border-radius: 15px !important;
    text-decoration: none !important; display: inline-flex !important;
    align-items: center !important; gap: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3) !important;
}
.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05) !important; background: #ffffff !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4) !important;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important; color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 18px !important; font-weight: 700 !important;
    padding: 20px 45px !important; border-radius: 15px !important;
    text-decoration: none !important; display: inline-flex !important;
    align-items: center !important; gap: 10px !important;
    transition: all 0.3s ease !important;
}
.cta-btn-secondary:hover {
    background: #25D366 !important; /* WhatsApp Yeşili */ border-color: #25D366 !important;
    transform: translateY(-5px) !important; box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4) !important;
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .cta-main-title { font-size: 38px !important; }
    .cta-content-box { padding: 50px 20px !important; border-radius: 30px !important; }
    .cta-buttons-wrapper { flex-direction: column !important; width: 100% !important; }
    .cta-btn-primary, .cta-btn-secondary { width: 100% !important; justify-content: center !important; }
}