/* Ürün Karşılaştırma Sayfası Stilleri */

/* Giriş Bölümü */
.comparison-intro {
    padding: 80px 0 40px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

/* Ürün Kartları */
.product-cards {
    padding: 40px 0 80px;
    background-color: var(--light-bg);
}

.product-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 1;
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.product-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.product-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-subtitle {
    color: var(--text-color-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.product-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.product-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

.product-price {
    margin-top: auto;
    margin-bottom: 25px;
}

.product-price span {
    display: block;
    color: var(--text-color-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.product-price p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.product-card .btn {
    width: 100%;
}

/* Karşılaştırma Tablosu */
.comparison-table {
    padding: 80px 0;
}

.table-container {
    margin-top: 50px;
    overflow-x: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

table.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

table.comparison-table th,
table.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

table.comparison-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

table.comparison-table th:first-child {
    border-top-left-radius: 10px;
    text-align: left;
}

table.comparison-table th:last-child {
    border-top-right-radius: 10px;
}

table.comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--primary-color);
}

table.comparison-table td i.fa-check {
    color: var(--secondary-color);
    font-size: 18px;
}

table.comparison-table td i.fa-minus {
    color: #ccc;
    font-size: 18px;
}

table.comparison-table tr:hover {
    background-color: #f9f9f9;
}

table.comparison-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

table.comparison-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

/* CTA Bölümü */
.cta {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: #fff;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card.featured {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .product-cards-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-card.featured {
        grid-column: span 1;
        transform: scale(1);
    }
    
    .product-card.featured:hover {
        transform: translateY(-10px);
    }
    
    table.comparison-table th,
    table.comparison-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .intro-content {
        font-size: 16px;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    table.comparison-table th,
    table.comparison-table td {
        padding: 10px;
        font-size: 13px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
} 