@import '/assets/css/base.css';
@import '/assets/css/header.css';
@import '/assets/css/footer.css';

/* Pricing Page Specific Styles */
.pricing-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(210, 180, 140, 0.1) 0%, rgba(184, 131, 60, 0.08) 100%);
}

.pricing-hero__content {
    text-align: center;
}

.pricing-hero__content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-hero__lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Benefits */
.pricing-benefits {
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 3px solid #b8833c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Service Section */
.pricing-service {
    padding: 60px 0;
}

.pricing-service__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pricing-service__grid--reverse {
    direction: rtl;
}

.pricing-service__grid--reverse > * {
    direction: ltr;
}

.pricing-service__image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    width: 100%;
}

.pricing-service__content h2 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.pricing-service__intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Pricing Table */
.pricing-table {
    margin: 30px 0;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
    background: linear-gradient(135deg, #d2b48c 0%, #b8833c 100%);
    color: white;
}

.pricing-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #e8e4dd;
}

.pricing-table tbody tr:hover {
    background: #f9f7f4;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table strong {
    color: #b8833c;
    font-size: 1.1rem;
}

.pricing-service__note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 15px;
}

/* Packages Grid */
.packages {
    padding: 60px 0;
}

.packages__grid {
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.package-card--featured {
    border-color: #b8833c;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(184, 131, 60, 0.2);
}

.package-card--featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-card__badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #b8833c;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card__title {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    margin-top: 10px;
}

.package-card__price {
    background: #f9f7f4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.package-card__discount {
    display: inline-block;
    background: #b8833c;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-card__price p {
    font-size: 1rem;
    color: #666;
}

.package-card__price strong {
    color: #b8833c;
    font-size: 1.3rem;
}

.package-card__features {
    list-style: none;
    margin-bottom: 25px;
}

.package-card__features li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #f0ebe2;
    position: relative;
    padding-left: 25px;
}

.package-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8833c;
    font-weight: bold;
}

.package-card__features li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq__items {
    max-width: 700px;
    margin: 40px auto;
}

.faq__item {
    background: white;
    border: 1px solid #e8e4dd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq__question {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #f9f7f4;
    cursor: pointer;
    font-weight: 600;
    color: #2c2c2c;
    transition: background 0.3s ease;
}

.faq__question:hover {
    background: #f0ebe2;
}

.faq__item[open] .faq__question {
    background: #f0ebe2;
}

.faq__answer {
    padding: 20px;
    color: #666;
    line-height: 1.7;
}

.faq__answer p {
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #d2b48c 0%, #b8833c 100%);
    text-align: center;
    color: white;
}

.cta-section__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.cta-section__text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-service__grid,
    .pricing-service__grid--reverse {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .pricing-service__grid > *,
    .pricing-service__grid--reverse > * {
        direction: ltr;
    }

    .pricing-hero__content h1 {
        font-size: 2rem;
    }

    .packages__grid {
        grid-template-columns: 1fr !important;
    }

    .package-card,
    .package-card--featured {
        transform: none;
    }

    .package-card--featured:hover {
        transform: translateY(-8px);
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px;
    }

    .cta-section__title {
        font-size: 1.8rem;
    }

    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 40px 0;
    }

    .pricing-hero__content h1 {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .pricing-table {
        font-size: 0.75rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 8px;
    }

    .package-card {
        padding: 20px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section__actions {
        flex-direction: column;
    }
}

section {
    padding: 60px 0;
}