/* ============================================
   Commerzy - Price Page Styles
   ============================================ */

/* ========== PRICE HERO ========== */
.price-hero {
    background: linear-gradient(135deg, #8cd45f 0%, #0091ac 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.price-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.price-hero p {
    font-size: 28px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.95;
}

/* ========== PACKAGE SECTION ========== */
.package-section {
    padding: 80px 0;
}

.package-section:nth-child(even) {
    background: #f8f9fa;
}

.package-section.package-alt {
    background: #f1f4de !important;;
}

.package-section:not(.package-alt) + .package-section:not(.package-alt) {
    background: #fff;
}

.package-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.package-row > * {
    flex: 1;
}

.package-image img {
    max-width: 100%;
    height: auto;
}

.package-content h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 400;
}

.package-desc {
    font-size: 17px;
    color: #777777;
    line-height: 1.7;
    margin-bottom: 25px;
}

.package-features h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 30px;
}

.package-features ul li {
    position: relative;
    list-style: disc;
    color: #777777;
    line-height: 1.6;
}

/* Price Buttons */
.price-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.price-btn {
    flex: 1;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.price-btn:hover {
    transform: translateY(-3px);
}

.price-btn img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Customize Button */
.customize-btn {
    display: inline-block;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.customize-btn:hover {
    transform: scale(1.05);
}

.customize-btn img {
    height: auto;
}

.package-note {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* ========== CALCULATOR SECTION ========== */
.calculator-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.calculator-wrapper {
    margin: 0 -10px;
}

.calculator-wrapper iframe {
    width: 100%;
    height: 1000px;
    border: none;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    color: #777777;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #99cd3c;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #777777;
}

.faq-item.active .faq-question {
    color: #99cd3c;
    background: #fff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #99cd3c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #777777;
    line-height: 1.7;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .price-hero {
        padding: 80px 0;
    }

    .price-hero h1 {
        font-size: 38px;
    }

    .price-hero p {
        font-size: 22px;
    }

    .package-row {
        flex-direction: column;
        gap: 40px;
    }

    .package-section:nth-child(even) .package-row {
        flex-direction: column;
    }

    .package-image {
        order: -1;
    }

    .package-section:nth-child(even) .package-image {
        order: -1;
    }

    .package-content h2 {
        font-size: 30px;
    }

    .price-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .price-hero {
        padding: 60px 0;
    }

    .price-hero h1 {
        font-size: 32px;
    }

    .price-hero p {
        font-size: 18px;
    }

    .package-section {
        padding: 50px 0;
    }

    .package-content h2 {
        font-size: 26px;
    }

    .package-desc {
        font-size: 16px;
    }

    .faq-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .calculator-wrapper iframe {
        height: 800px;
    }
}

@media (max-width: 576px) {
    .price-hero {
        padding: 50px 0;
    }

    .price-hero h1 {
        font-size: 28px;
    }

    .price-hero p {
        font-size: 16px;
    }

    .package-content h2 {
        font-size: 22px;
    }

    .price-buttons {
        flex-direction: column;
    }

    .price-btn img {
        max-width: 250px;
    }

    .customize-btn img {
        max-width: 160px;
    }

    .faq-title {
        font-size: 18px;
    }

    .calculator-wrapper iframe {
        height: 600px;
    }
}
