/* ===================== */
/* HERO SECTION         */
/* ===================== */

.hero-pricing {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    padding: 20px;
}

.hero-pricing-content h1 {
    font-size: 48px;
    color: #f5c542;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-pricing-content p {
    font-size: 18px;
    color: #d0d0d0;
}

/* ===================== */
/* PRICING CONTENT      */
/* ===================== */

.pricing-content {
    padding: 60px 20px;
    background: #ffffff;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===================== */
/* CATEGORY TABS        */
/* ===================== */

.category-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 30px;
    background: #f9f7f3;
    color: #67047a;
    border: 2px solid #f5c542;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #f5c542;
    color: #2b0f2f;
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    color: #f5c542;
    border-color: #f5c542;
}

/* ===================== */
/* TAB CONTENT          */
/* ===================== */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== */
/* PRICE CATEGORY       */
/* ===================== */

.price-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 24px;
    color: #67047a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f5c542;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    font-size: 28px;
}

/* ===================== */
/* PRICE TABLE          */
/* ===================== */

.price-table {
    background: #ffffff;
    border: 2px solid #f5c542;
    border-radius: 15px;
    overflow: hidden;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    transition: background 0.3s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: #f9f7f3;
}

.price-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-left h4 {
    font-size: 16px;
    color: #67047a;
    margin: 0;
    font-weight: bold;
}

.price-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.price-time {
    font-size: 13px;
    color: #f5c542;
    font-weight: 600;
}

.price-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.price-amount {
    font-size: 20px;
    font-weight: bold;
    color: #f5c542;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.1), rgba(61, 20, 69, 0.05));
    padding: 12px 20px;
    border-radius: 10px;
    text-align: right;
}

/* ===================== */
/* CTA SECTION          */
/* ===================== */

.cta-section {
    padding: 60px 20px;
    background: #ffffff;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fffbf0;
    border: 3px solid #f5c542;
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
}

.cta-content {
    color: #333333;
}

.cta-content h3 {
    font-size: 36px;
    color: #67047a;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.cta-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-primary {
    background: #f5c542;
    color: #2b0f2f;
}

.cta-button-primary:hover {
    background: #ffd86b;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(245, 197, 66, 0.3);
}

.cta-button-primary i {
    font-size: 18px;
}

.cta-button-secondary {
    background: transparent;
    color: #f5c542;
    border: 2px solid #f5c542;
}

.cta-button-secondary:hover {
    background: #f5c542;
    color: #2b0f2f;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(245, 197, 66, 0.3);
}

.cta-button-secondary i {
    font-size: 18px;
}

/* ===================== */
/* RESPONSIVE           */
/* ===================== */

@media (max-width: 768px) {

    .pricing-content {
        padding: 40px 15px;
    }

    .hero-pricing-content h1 {
        font-size: 36px;
    }

    .hero-pricing-content p {
        font-size: 16px;
    }

    .category-tabs {
        gap: 10px;
    }

    .tab-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .category-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .price-left h4 {
        font-size: 15px;
    }

    .price-desc {
        font-size: 13px;
    }

    .price-right {
        justify-content: flex-start;
    }

    .price-amount {
        font-size: 18px;
        padding: 10px 15px;
    }

    .price-category {
        margin-bottom: 35px;
    }

    /* CTA Responsive */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-container {
        padding: 45px 30px;
        border-radius: 25px;
    }

    .cta-content h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
    }

}

@media (max-width: 480px) {

    .pricing-content {
        padding: 30px 10px;
    }

    .hero-pricing {
        height: 40vh;
    }

    .hero-pricing-content h1 {
        font-size: 26px;
    }

    .hero-pricing-content p {
        font-size: 14px;
    }

    .category-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .tab-button {
        padding: 8px 16px;
        font-size: 12px;
        flex: 1;
        min-width: 80px;
    }

    .category-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .category-icon {
        font-size: 24px;
    }

    .price-table {
        border-radius: 10px;
    }

    .price-row {
        padding: 15px;
        gap: 10px;
    }

    .price-left h4 {
        font-size: 14px;
    }

    .price-desc {
        font-size: 12px;
    }

    .price-time {
        font-size: 12px;
    }

    .price-amount {
        font-size: 16px;
        padding: 8px 12px;
    }

    .price-category {
        margin-bottom: 25px;
    }

    /* CTA Responsive Mobile */
    .cta-section {
        padding: 40px 15px;
    }

    .cta-container {
        padding: 35px 20px;
        border-radius: 20px;
        border: 2.5px solid #f5c542;
    }

    .cta-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
    }
}

.gombi {
    padding: 14px 40px;
    background: #f5c542;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #2b0f2f;
}

.gombi:hover {
    background: #ffd86b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}
