/* SEO Price Tabs CSS */

.seo-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background: linear-gradient(135deg, #4877BD 0%, #3a5d9f 100%);
    padding: 15px;
    gap: 15px; /* Butonlar arası boşluk eklendi */
    justify-content: center;
    flex-wrap: wrap; /* Mobilde alt satıra geçebilsin */
}

.tab-button {
    flex: 0 1 auto; /* Esnek genişlik */
    min-width: 120px; /* Minimum genişlik */
    padding: 16px 32px;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    border-radius: 50px; /* Yuvarlak butonlar */
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    white-space: nowrap;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tab-button:hover {
    color: white;
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.tab-button.active {
    color: white;
    background: #F53D05;
    box-shadow: 0 4px 20px rgba(245,61,5,0.4);
    border-color: #F53D05;
    transform: scale(1.05);
}

/* Aktif buton için parlama efekti */
.tab-button.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.tabs-content {
    padding: 40px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel h2 {
    color: #4877BD;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.tab-panel > p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background: white;
    border: 2px solid #f1f3f4;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4877BD, #F53D05);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #4877BD;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card h4 {
    color: #4877BD;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.info-card a {
    color: #F53D05;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.info-card a:hover {
    border-color: #F53D05;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-tabs-container {
        margin: 10px;
        border-radius: 15px;
    }

    .tabs-header {
        padding: 20px 15px;
        gap: 12px;
    }

    .tab-button {
        flex: 1 1 calc(50% - 6px); /* İki sütunlu düzen */
        min-width: 140px;
        padding: 14px 24px;
        font-size: 15px;
    }

    .tab-button:last-child {
        flex: 1 1 100%; /* Son buton tam genişlik */
    }

    .tabs-content {
        padding: 25px 20px;
    }

    .tab-panel h2 {
        font-size: 24px;
    }

    .tab-panel > p {
        font-size: 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .tabs-header {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .tab-button {
        flex: 1 1 100%;
        width: 100%;
        min-width: unset;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 12px;
    }

    /* Mobilde tıklanabilirlik için görsel ipucu */
    .tab-button:not(.active) {
        background: rgba(255,255,255,0.15);
        border: 2px solid rgba(255,255,255,0.3);
    }

    .tab-button:active {
        transform: scale(0.98);
    }

    .tabs-content {
        padding: 20px 15px;
    }

    .tab-panel h2 {
        font-size: 22px;
    }

    .info-card {
        padding: 18px;
    }
}

/* Dokunmatik cihazlar için ek stiller */
@media (hover: none) {
    .tab-button {
        -webkit-tap-highlight-color: transparent;
    }
    
    .tab-button:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}