/* Ana sayfa özel stilleri */

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

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

/* Welcome Section - Ultra Modern */
.welcome-section {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(89, 193, 212, 0.08);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #59c1d4, #6dd4e8, #59c1d4);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.welcome-badge {
    display: inline-block;
    background: linear-gradient(135deg, #59c1d4 0%, #6dd4e8 100%);
    color: white;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(89, 193, 212, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.page-title {
    font-size: 23px;
    color: #2c3e50;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #59c1d4 0%, #6dd4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #59c1d4;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 12px rgba(89, 193, 212, 0.1);
}

.info-icon {
    color: #59c1d4;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.info-banner span {
    color: #1565c0;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}

/* Başlık stilleri */
.tab-cont b {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 800;
    font-family: Verdana, Geneva, sans-serif;
    text-align: center;
    display: block;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.tab-cont b::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #59c1d4, #6dd4e8);
    border-radius: 2px;
}

/* Seçim kutuları - Ultra Modern Service Cards */
.custom-tabs {
    margin-bottom: 30px;
}

.custom-tabs .nav-tabs {
    border: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-card {
    text-decoration: none;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    background: white;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(89, 193, 212, 0.05) 0%, rgba(109, 212, 232, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(89, 193, 212, 0.25);
    border-color: #59c1d4;
    border-radius: 12px;
}

.service-card > div {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%) !important;
    border: none !important;
    padding: 20px 18px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-icon-wrapper {
    margin: 0 auto 16px;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: all 0.3s ease;
}

.service-icon {
    width: 64px;
    height: 64px;
    color: #59c1d4 !important;
    stroke: #59c1d4 !important;
    object-fit: contain;
}

/* SVG icon için stroke-width */
svg.service-icon {
    stroke-width: 2 !important;
}

/* PNG icon için filter - SVG ile aynı renk #59c1d4 */
img.service-icon {
    filter: brightness(0) saturate(100%) invert(70%) sepia(51%) saturate(1015%) hue-rotate(154deg) brightness(95%) contrast(86%) !important;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: none;
}

.service-card:hover .service-icon {
    color: #59c1d4 !important;
    stroke: #59c1d4 !important;
}

/* Hover durumunda PNG icon için de aynı renk */
.service-card:hover img.service-icon {
    filter: brightness(0) saturate(100%) invert(70%) sepia(51%) saturate(1015%) hue-rotate(154deg) brightness(95%) contrast(86%) !important;
}

.service-title {
    font-size: 17px !important;
    color: #2c3e50 !important;
    margin: 8px 0 6px 0 !important;
    font-weight: 700 !important;
    font-family: 'Segoe UI', 'Arial', sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
}

.service-desc {
    font-size: 14px !important;
    color: #6c757d !important;
    margin: 5px 0 0 0 !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.service-card:hover .service-title {
    color: #59c1d4 !important;
    transform: translateX(5px);
}

.service-card:hover .service-desc {
    color: #495057 !important;
}

/* Animasyonlar */
.service-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop (PC) optimizasyonu */
@media (min-width: 769px) {
    /* Container'ı PC'de küçült */
    .container.mt20 {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Başlıkları PC'de küçült */
    .tab-cont b {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    /* Welcome section'ı PC'de küçült */
    .welcome-section {
        padding: 25px 20px;
    }
    
    /* Service card'ları PC'de küçült */
    .service-card > div {
        padding: 22px 18px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto 14px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        object-fit: contain;
    }
    
    .service-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .service-desc {
        font-size: 13px;
    }
    
    /* Info banner'ı PC'de küçült */
    .info-banner {
        padding: 13px 18px;
        font-size: 13px;
        margin: 20px 0;
    }
    
    .info-icon {
        width: 18px;
        height: 18px;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .custom-tabs .nav-tabs {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .page-subtitle {
        font-size: 12px;
    }
    
    .welcome-section {
        padding: 22px 15px;
    }
    
    .tab-cont b {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .service-card > div {
        padding: 20px 16px;
    }
    
    .service-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .service-icon {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }
    
    .service-title {
        font-size: 16px !important;
    }
    
    .service-desc {
        font-size: 13px !important;
    }
    
    .info-banner {
        padding: 10px 12px;
    }
    
    .info-banner span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 18px;
    }
    
    .page-subtitle {
        font-size: 11px;
    }
    
    .welcome-badge {
        font-size: 9px;
        padding: 4px 14px;
    }
    
    .tab-cont b {
        font-size: 17px;
    }
    
    .service-card > div {
        padding: 18px 14px;
    }
    
    .service-icon-wrapper {
        width: 58px;
        height: 58px;
    }
    
    .service-icon {
        width: 46px;
        height: 46px;
        object-fit: contain;
    }
    
    .service-title {
        font-size: 15px !important;
    }
    
    .service-desc {
        font-size: 12px !important;
    }
    
    .info-banner {
        padding: 9px 11px;
    }
    
    .info-banner span {
        font-size: 10px;
    }
}