/* 
 * SILO PAGE STYLES
 * ================
 * PAA Section + Internal Links + Key Takeaways
 */

/* KEY TAKEAWAYS */
.key-takeaways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.takeaway {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    transition: transform 0.3s ease;
}

.takeaway:hover {
    transform: translateY(-5px);
}

.takeaway .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.takeaway .value {
    display: block;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.takeaway .label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

/* HERO CTA BUTTONS */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-success {
    background: #25D366;
    color: white;
    border: none;
}

.btn-success:hover {
    background: #1faa52;
    transform: scale(1.05);
}

/* PRICING TABLES */
.price-table {
    margin: 30px 0;
}

.price-table th {
    background: #667eea;
    color: white;
    padding: 15px;
    font-weight: 600;
}

.price-table td {
    padding: 15px;
    vertical-align: middle;
}

.price-table .price-highlight {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
}

.comparison-table {
    margin: 30px 0;
}

.comparison-table th {
    background: #2c3e50;
    color: white;
    padding: 15px;
}

.comparison-table .badge {
    font-size: 11px;
    padding: 4px 8px;
}

/* PAA SECTION - MOTORLARA SOK! */
.paa-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.paa-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
    opacity: 0.3;
}

.paa-section .container {
    position: relative;
    z-index: 1;
}

.paa-section .section-title {
    font-size: 36px;
    margin-bottom: 50px;
}

.paa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.paa-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.paa-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.paa-card.current-page {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffd700;
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.paa-question {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.4;
}

.paa-answer {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
}

.paa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.paa-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.paa-current {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    border-radius: 8px;
    color: #4caf50;
    font-weight: 600;
}

/* INTERNAL LINKS */
.internal-links {
    background: #f8f9fa;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.link-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.link-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    transform: translateY(-3px);
}

.link-card.hub-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.link-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.link-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.link-desc {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.link-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* BREADCRUMB */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
    color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .key-takeaways {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .takeaway .icon {
        font-size: 30px;
    }
    
    .takeaway .value {
        font-size: 24px;
    }
    
    .paa-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .key-takeaways {
        grid-template-columns: 1fr;
    }
}
