/* Ana sayfa özel stilleri */

/* Margin yardımcıları */
.margin-t-b {
    margin-bottom: 8px;
    margin-top: 15px;
}

.modal p {
    font-size: 17px;
}

/* Başlık stilleri */
.tab-cont b {
    font-size: 24px;
    color: #808080;
    font-weight: 700;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    text-align: center;
    display: block;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
}

/* Seçim kutuları */
.custom-tabs {
    margin-bottom: 40px;
}

.custom-tabs .nav-tabs {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-tabs .nav-tabs a {
    text-decoration: none;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #cccccc;
}

.custom-tabs .nav-tabs a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 128, 188, 0.2);
    border-color: #0080bc;
}

.custom-tabs .nav-tabs a > div {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: none !important;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.custom-tabs .nav-tabs a:hover > div {
    background: linear-gradient(135deg, #e6f4ff 0%, #d1ebff 100%) !important;
}

.custom-tabs .nav-tabs a .tab-cont p {
    font-size: 18px !important;
    color: #0080bc;
    margin: 0;
    font-weight: 500;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    text-transform: none;
    letter-spacing: 0.2px;
}

.custom-tabs .nav-tabs a:hover .tab-cont p {
    color: #006ba6;
}

/* Animasyonlar */
.custom-tabs .nav-tabs a {
    animation: fadeInUp 0.6s ease-out forwards;
}

.custom-tabs .nav-tabs a:nth-child(1) {
    animation-delay: 0.1s;
}

.custom-tabs .nav-tabs a:nth-child(2) {
    animation-delay: 0.2s;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .tab-cont b {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .custom-tabs .nav-tabs a .tab-cont p {
        font-size: 16px !important;
    }
    
    .custom-tabs .nav-tabs a > div {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .tab-cont b {
        font-size: 18px;
    }
    
    .custom-tabs .nav-tabs a .tab-cont p {
        font-size: 15px !important;
    }
}