/* ======================================
   MODERN SOLUTION CARDS CSS
   Sayfa kartları için özel stil
   ====================================== */

/* Solution Page Container */
.solution-page {
    padding: 40px 0;
}

/* Solution Header */
.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.solution-header .subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-header .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* Solution Cards Container */
.solution-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

/* Individual Solution Card */
.solution-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Card Image */
.solution-card .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 4px solid #e91e63;
    transition: all 0.3s ease;
}

.solution-card:hover .card-img-top {
    border-bottom-color: #0066cc;
}

/* Card Body */
.solution-card .card-body {
    padding: 25px 20px;
    position: relative;
}

/* Category Label - Dinamik etiket */
.solution-card .card-body::before {
    content: attr(data-category-label);
    position: absolute;
    top: -15px;
    left: 20px;
    background: #e91e63;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Card Title */
.solution-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Responsive için Düzenlemeler */
@media (max-width: 768px) {
    .solution-header h1 {
        font-size: 28px;
    }

    .solution-header .subtitle {
        font-size: 16px;
    }

    .solution-card .card-img-top {
        height: 200px;
    }

    .solution-cards {
        gap: 20px;
    }
}

/* Col düzenleri için ek */
.solution-cards .col-md-4 {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

@media (max-width: 992px) {
    .solution-cards .col-md-4 {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .solution-cards .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* İş Sürekliliği İçin - Farklı renkler */
.page-content .solution-card:nth-child(3n+1) .card-body::before {
    background: #e91e63; /* Pembe */
}

.page-content .solution-card:nth-child(3n+2) .card-body::before {
    background: #0066cc; /* Mavi */
}

.page-content .solution-card:nth-child(3n+3) .card-body::before {
    background: #00bcd4; /* Turkuaz */
}

/* Kart alt çizgisi renkleri */
.page-content .solution-card:nth-child(3n+1) .card-img-top {
    border-bottom-color: #e91e63;
}

.page-content .solution-card:nth-child(3n+2) .card-img-top {
    border-bottom-color: #0066cc;
}

.page-content .solution-card:nth-child(3n+3) .card-img-top {
    border-bottom-color: #00bcd4;
}

/* Hover efekti için renk değişimi */
.page-content .solution-card:hover .card-img-top {
    border-bottom-width: 6px;
}
