/* =========================================
   FİYATLAR SAYFASI STİLLERİ
   Mevcut site tasarımına uygun modern fiyat kartları
   ========================================= */

/* =========================================
   DİL MENÜSÜ (lng-container) - Fiyatlar sayfası için
   ========================================= */
.lng-container {
    width: 100%;
    background-color: #F0F0EB;
    padding: 1.5rem 0;
    border-bottom: 0.0625rem solid #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5%;
    display: flex;
    justify-content: center;
}

.lng-menu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.lng-item {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lng-item::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 0.125rem;
    background-color: #000000;
}

.lng-item:hover {
    color: #C95748;
}

.lng-item:hover::after {
    background-color: #C95748;
}

.lng-center-ring {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7.5rem;
    height: 7.5rem;
    margin: 0 1rem;
}

.lng-center-ring::before,
.lng-center-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 0.1rem solid rgba(255, 255, 255, 0.6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.lng-center-ring::before {
    width: 105%;
    height: 105%;
}

.lng-center-ring::after {
    width: 120%;
    height: 120%;
    opacity: 0.5;
}

.lng-active-circle {
    position: relative;
    z-index: 2;
    background-color: #FFFFFF;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lng-active-link {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    text-align: center;
    cursor: pointer;
}

.lng-active-link:hover {
    color: #C95748;
}

@media (max-width: 768px) {
    .lng-container {
        margin-top: 3%;
        padding: 1rem 0;
    }

    .lng-menu-wrapper {
        gap: 2rem;
    }

    .lng-item {
        font-size: 0.8rem;
    }

    .lng-center-ring {
        width: 6rem;
        height: 6rem;
        margin: 0 0.5rem;
    }

    .lng-active-circle {
        width: 5rem;
        height: 5rem;
    }

    .lng-active-link {
        font-size: 0.8rem;
    }
}

.pricing-section {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 5% 0;
    font-family: 'Montserrat', sans-serif;
}

.pricing-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-main-title {
    font-family: 'ChronicleDisplaySemibold', 'Times New Roman', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: #2D3E40;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #707070;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Kategori Seçimi */
.pricing-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.pricing-category-btn {
    padding: 0.875rem 2rem;
    background-color: #ffffff;
    border: 0.125rem solid #e0e0e0;
    color: #2D3E40;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pricing-category-btn:hover {
    border-color: #C95748;
    color: #C95748;
    transform: translateY(-2px);
}

.pricing-category-btn.active {
    background-color: #C95748;
    border-color: #C95748;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(201, 87, 72, 0.3);
}

/* Kategori Bölümleri */
.pricing-category-section {
    margin-bottom: 5rem;
}

.pricing-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #2D3E40;
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 0.125rem solid #e0e0e0;
}

.pricing-category-section:first-of-type .pricing-category-title {
    border-top: none;
    padding-top: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fiyat Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

/* Fiyat Kartları */
.pricing-card {
    background-color: #ffffff;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #C95748;
}

.pricing-card-featured {
    border: 0.125rem solid #C95748;
    box-shadow: 0 4px 16px rgba(201, 87, 72, 0.15);
    transform: scale(1.05);
}

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

/* Kart Header */
.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.pricing-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2D3E40;
    margin: 0;
}

/* Badge */
.pricing-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background-color: #2D3E40;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border-radius: 0.25rem;
}

.pricing-badge-featured {
    background-color: #C95748;
}

/* Fiyat */
.pricing-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.0625rem solid #e0e0e0;
}

.pricing-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2D3E40;
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: #707070;
    font-weight: 400;
    margin-left: 0.5rem;
}

/* Açıklama */
.pricing-description {
    font-size: 1rem;
    color: #707070;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 3rem;
}

/* Özellikler Listesi */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #2D3E40;
    border-bottom: 0.0625rem solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #C95748;
    margin-right: 1rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Buton */
.pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 0.125rem solid #2D3E40;
    color: #2D3E40;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.pricing-button:hover {
    background-color: #2D3E40;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 62, 64, 0.2);
}

.pricing-button-featured {
    background-color: #C95748;
    border-color: #C95748;
    color: #ffffff;
}

.pricing-button-featured:hover {
    background-color: #b04435;
    border-color: #b04435;
    box-shadow: 0 4px 12px rgba(201, 87, 72, 0.3);
}

/* Ek Hizmetler */
.pricing-extras {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 0.125rem solid #e0e0e0;
}

.pricing-extras-title {
    font-family: 'ChronicleDisplaySemibold', 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #2D3E40;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-extra-card {
    background-color: #F8F8F2;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 0.0625rem solid #e0e0e0;
    transition: all 0.3s ease;
}

.pricing-extra-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #C95748;
}

.pricing-extra-icon {
    font-size: 2.5rem;
    color: #C95748;
    margin-bottom: 1rem;
}

.pricing-extra-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D3E40;
    margin-bottom: 0.75rem;
}

.pricing-extra-description {
    font-size: 0.95rem;
    color: #707070;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pricing-extra-link {
    display: inline-block;
    color: #C95748;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pricing-extra-link:hover {
    color: #b04435;
    transform: translateX(4px);
}

.pricing-extra-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3E40;
    margin-top: 0.5rem;
}

/* Notlar */
.pricing-notes {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #F8F8F2;
    border-radius: 0.5rem;
    border-left: 0.25rem solid #C95748;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #2D3E40;
    line-height: 1.6;
}

.pricing-note:last-child {
    margin-bottom: 0;
}

.pricing-note i {
    color: #C95748;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding-top: 6rem;
    }
    
    .pricing-container {
        padding: 0 1rem;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-categories {
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .pricing-category-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-extras-grid {
        grid-template-columns: 1fr;
    }

    .pricing-notes {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-main-title {
        font-size: 2.5rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-categories {
        gap: 0.5rem;
    }

    .pricing-category-btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card-title {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .pricing-badge {
        top: -0.75rem;
        right: -0.75rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.65rem;
    }
}
