﻿.seoQuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 14px 0 8px;
}

.seoQuickLink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    transition: all .18s ease;
}

    .seoQuickLink img {
        width: 24px;
        height: 24px;
        display: block;
        object-fit: contain;
        flex: 0 0 24px;
    }

    .seoQuickLink:hover {
        background: rgba(255,255,255,0.16);
        border-color: rgba(255,255,255,0.18);
        transform: translateY(-1px);
    }

    .seoQuickLink.active {
        background: #ffffff;
        color: #2a0050;
        border-color: #ffffff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    }

.mobileText {
    display: none;
}

/* DESKTOP */
@media (min-width: 769px) {
    .seoQuickLinkInternet {
        margin-left: auto;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .seoQuickLinks {
        gap: 10px;
        align-items: stretch;
    }

    .seoQuickLink {
        flex: 1 1 calc(33.333% - 7px);
        min-width: 0;
        justify-content: center;
       padding: 6px 5px;
        border-radius: 14px;
        font-size: 13px;
    /*    text-align: center;*/
    }

        .seoQuickLink span {
            display: block;
        }

        /* ilk 3 link yan yana */
        .seoQuickLink:not(.seoQuickLinkInternet) {
            order: 1;
        }

    /* internet altta sağda */
    .seoQuickLinkInternet {
        order: 2;
        margin-left: auto;
        flex: 0 1 auto;
        max-width: 290px;
        justify-content: flex-start;
        padding: 12px 14px;
    }

        .seoQuickLinkInternet .desktopText {
            display: none;
        }

        .seoQuickLinkInternet .mobileText {
            display: inline;
            text-align: left;
            font-size: 13px;
            line-height: 1.25;
        }
}


/* =========================================
   TV PAKETLERI PAGE - CARD LISTING
   mevcut seoQuickLinks yapısını bozmaz
========================================= */

.pkgListingSection {
    position: relative;
    padding: 10px 0 30px;
}

.pkgListingHead {
    margin: 0 0 18px;
}

.pkgListingTitle {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.pkgEmpty {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/* GRID */
.pkgGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

/* CARD */
.pkgCard {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    border-radius: 9px;
    background: #0b0b12;
    border: 1px solid rgba(255, 208, 0, 0.62);
    box-shadow: 0 16px 44px rgba(0,0,0,0.34);
    isolation: isolate;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

    .pkgCard:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.46);
        border-color: rgba(255, 208, 0, 0.95);
    }

.pkgCardBg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.03);
}

.pkgCardOverlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.34) 18%, rgba(0,0,0,0.78) 58%, rgba(0,0,0,0.96) 100%), radial-gradient(circle at 18% 18%, rgba(255,255,255,0.08), transparent 24%), linear-gradient(90deg, rgba(15,17,34,0.26) 0%, rgba(0,0,0,0.05) 46%, rgba(31,0,48,0.22) 100%);
    backdrop-filter: blur(1.8px);
}

/* TOP BADGES */
.pkgCardTop {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.pkgChip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .01em;
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.pkgChipLeft {
    background: rgba(33, 89, 45, 0.72);
    color: #fff;
}

.pkgChipRight {
    background: rgba(70, 57, 132, 0.78);
    color: #fff;
}

/* GROUP LOGO */
.pkgGroupLogo {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 3;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(8,8,14,0.34);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

    .pkgGroupLogo img {
        display: block;
        max-width: 56px;
        max-height: 56px;
        object-fit: contain;
    }

/* BODY */
.pkgCardBody {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    min-height: 690px;
    padding: 150px 22px 22px;
}

.pkgCardTitle {
    height: 50px;
    margin: 0 0 12px;
    color: #fff;
    font-size: 23px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 6px 20px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 1);
   /* text-shadow: 0 2px 10px rgba(0,0,0,0.44);*/
}

.pkgCardSub {
    height: 110px;
    margin: 0 0 18px;
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    line-height: 1.62;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 6px 20px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 1);
    /*   text-shadow: 0 2px 10px rgba(0,0,0,0.40);*/
    min-height: 74px;
}

/* PAYMENT BLOCK */
.pkgPaySummary {
    margin-top: auto;
    margin-bottom: 18px;
    padding: 16px 16px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    background: linear-gradient(180deg, rgb(36 7 62 / 41%) 0%, rgba(7, 7, 13, 0.97) 100%);
    /*linear-gradient(180deg, rgba(8,10,18,0.92) 0%, rgba(7,7,13,0.97) 100%);*/
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    min-height: 122px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pkgPayPrimary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.pkgPayLabel {
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    max-width: 44%;
}

.pkgPayPrice {
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-end;
    color: #fff;
    text-align: right;
    font-weight: 900;
}

.money {
    display: inline-flex;
    align-items: flex-end;
    line-height: 1;
}

.moneyMajor {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.moneySep {
    font-size: 20px;
    font-weight: 900;
    margin: 0 1px;
}

.moneyMinor {
    font-size: 17px;
    font-weight: 900;
    transform: translateY(-2px);
}

.moneyCur {
    font-size: 18px;
    font-weight: 900;
    margin-left: 2px;
    transform: translateY(-2px);
}

.moneySuffix {
    font-size: 12px;
    font-weight: 800;
    margin-left: 8px;
    opacity: 0.86;
    transform: translateY(-2px);
}

.pkgPayMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pkgPayMetaItem {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #f2f2f2;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

/* ACTION BUTTONS */
.pkgActions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.pkgBtn {
    min-height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    transition: all .2s ease;
}

    .pkgBtn:hover {
        transform: translateY(-1px);
    }

.pkgBtnPrimary {
    background: linear-gradient(180deg, #ffd400 0%, #f3c600 100%);
    color: #111;
    box-shadow: 0 10px 24px rgba(255,212,0,0.22);
}

    .pkgBtnPrimary:hover {
        box-shadow: 0 14px 28px rgba(255,212,0,0.28);
    }

.pkgBtnSecondary {
    background: linear-gradient(180deg, rgba(20,23,31,0.94) 0%, rgba(10,12,18,0.98) 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
}

/* DETAIL LINES */
.pkgFeatures {
    margin-top: 2px;
    display: grid;
    gap: 10px;
}

.pkgFeatureItem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.94);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.pkgFeatureDot {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: #ffd400;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    margin-top: 2px;
}

/* TABLET */
@media (max-width: 1200px) {
    .pkgGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .pkgCard,
    .pkgCardBody {
        min-height: 660px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .pkgListingSection {
        padding: 8px 0 24px;
    }

    .pkgListingTitle {
        font-size: 22px;
    }

    .pkgGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pkgCard {
        min-height: auto;
    }

    .pkgCardBody {
        min-height: auto;
        padding: 100px 16px 16px;
    }

    .pkgCardTitle {
        height:auto;
        font-size: 20px;
    }

    .pkgCardSub {
        height:auto;
        min-height: auto;
    }

    .pkgGroupLogo {
        width: 56px;
        height: 56px;
        top: 0px;
        right: 5px;
        border-radius: 14px;
    }

        .pkgGroupLogo img {
            max-width: 40px;
            max-height: 40px;
        }

    .pkgChip {
        min-height: 34px;
        padding: 0 12px;
        font-size: 12px;
    }

    .pkgPaySummary {
        min-height: auto;
        padding: 14px;
    }

    .pkgPayPrimary {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .pkgPayLabel {
        max-width: 100%;
    }

    .pkgPayPrice {
        text-align: left;
    }

    .moneyMajor {
        font-size: 25px;
    }

    .moneyMinor {
        font-size: 16px;
    }

    .moneyCur {
        font-size: 16px;
    }

    .pkgActions {
        grid-template-columns: 1fr;
    }

    .pkgBtn {
        min-height: 50px;
        font-size: 14px;
    }

    .pkgFeatureItem {
        font-size: 13px;
    }
}

.pkgPayDual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pkgPayDualItem {
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pkgPayDualLabel {
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.pkgPayDualPrice {
    color: #fff;
    font-weight: 900;
    line-height: 1;
}

.pkgPayDualSub {
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .pkgPayDual {
        grid-template-columns: 1fr;
    }
}