/* Testler Sayfası Stilleri */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1ee9dd, #1ee9dd);
    padding: 100px 0 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Tests Section */
.tests-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Test Categories Grid */
.test-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.test-category-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.test-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1ee9dd, #1ee9dd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.test-category-card:hover::before {
    transform: scaleX(1);
}

.test-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.test-category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
}

.category-icon .material-icons {
    color: white;
    font-size: 36px;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.category-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.category-stats {
    margin-bottom: 30px;
}

.test-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.test-category-card:hover .test-count {
    background: linear-gradient(135deg, #1ee9dd, #1ee9dd);
    color: white;
    border-color: transparent;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1ee9dd, #1ee9dd);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn:hover {
    background: linear-gradient(135deg, #1ee9dd, #1ee9dd);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
}

.category-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.category-btn .material-icons {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.category-btn:hover .material-icons {
    transform: translateX(3px);
}

/* Test Features Section */
.test-features-section {
    padding: 80px 0;
    background: white;
}

.test-features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1ee9dd, #1ee9dd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon .material-icons {
    color: white;
    font-size: 28px;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Test Stats Section */
.test-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1ee9dd, #1ee9dd);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Test CTA Section */
.test-cta-section {
    padding: 80px 0;
    background: white;
}

.test-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.test-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.test-cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1ee9dd, #1ee9dd);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(64, 224, 208, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1ee9dd;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    border: 2px solid #1ee9dd;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #1ee9dd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
}

/* No Tests Message */
.no-tests {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-tests .material-icons {
    font-size: 80px;
    margin-bottom: 30px;
    opacity: 0.5;
    color: #1ee9dd;
}

.no-tests h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.no-tests p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .test-categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .test-category-card {
        padding: 30px 25px;
    }
    
    .category-content h3 {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .test-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .test-category-card {
        padding: 25px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon .material-icons {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .test-cta-content h2 {
        font-size: 1.8rem;
    }
}
