/* ============================================================
   PRICING PAGE STYLES
============================================================ */

/* -----------------------------
   Pricing Hero
----------------------------- */
.pricing-hero {
    text-align: center;
    margin: 50px 20px 30px;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 10px;
}

.pricing-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #333;
}

/* -----------------------------
   Pricing Cards Layout
----------------------------- */
.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 20px 60px;
}

/* -----------------------------
   Pricing Card
----------------------------- */
.pricing-card {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Highlighted Plan */
.pricing-card.popular {
    border: 2px solid #1B5E20;
    position: relative;
}

.pricing-card h2 {
    font-size: 1.8rem;
    color: #1B5E20;
    margin-bottom: 10px;
}

/* Price */
.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #FFB300;
    margin: 15px 0 20px;
}

/* Features List */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    font-size: 0.95rem;
    color: #333;
}

.pricing-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 0.9rem;
}

/* CTA Button */
.pricing-card .cta-btn {
    margin-top: auto;
    display: inline-block;
    background-color: #1B5E20;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.pricing-card .cta-btn:hover {
    background-color: #4CAF50;
    transform: translateY(-2px);
}

/* -----------------------------
   FAQ Section
----------------------------- */
.pricing-faq {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.pricing-faq h2 {
    text-align: center;
    color: #1B5E20;
    margin-bottom: 30px;
}

/* FAQ Item */
.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #E8F5E9;
    color: #1B5E20;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #C8E6C9;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* -----------------------------
   Responsive
----------------------------- */
@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }
}
