/* ============================================================
   Voice of Wishes — packages.css
   ============================================================ */

/* ── Lucide icons ── */
.lucide-pkg {
    width: 48px;
    height: 48px;
    display: block;
    color: #C2934A;
}
.lucide-inline {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.lucide-gold { color: #C2934A; }

/* Package card */
.pkg-card {
    background: white;
    border: 1.5px solid rgba(194, 147, 74, 0.20);
    border-radius: 28px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(194, 147, 74, 0.12);
}
.pkg-card.featured {
    border: 2px solid rgba(194, 147, 74, 0.55);
    box-shadow: 0 16px 60px rgba(194, 147, 74, 0.18);
    background: rgba(250,248,245,0.95);
}
.pkg-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(194, 147, 74, 0.22);
}

/* Popular ribbon */
.pkg-ribbon {
    position: absolute;
    top: 1.5rem;
    right: -0.25rem;
    background: var(--vow-gold);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 3px 0 0 3px;
    box-shadow: -2px 2px 6px rgba(194,147,74,0.30);
}
.pkg-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    border-left: 4px solid rgba(150,100,30,0.6);
    border-bottom: 4px solid transparent;
}

/* Feature list */
.pkg-feature-list { list-style: none; padding: 0; margin: 1.5rem 0; flex: 1; }
.pkg-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #F5F5F5;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: #444;
}
.pkg-feature:last-child { border-bottom: none; }
.pkg-feature .fa-check { color: var(--vow-gold); font-size: 0.75rem; flex-shrink: 0; margin-top: 3px; }
.pkg-feature .fa-xmark { color: #D0D0D0; font-size: 0.75rem; flex-shrink: 0; margin-top: 3px; }
.pkg-feature.excluded { color: #C0C0C0; }

/* Duration badge */
.pkg-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(194, 147, 74, 0.10);
    color: var(--vow-gold);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
}

/* Comparison table */
.compare-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid #EBEBEB; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare-table th {
    background: var(--vow-navy);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 1rem 1.25rem;
    text-align: center;
}
.compare-table th:first-child { text-align: left; border-radius: 16px 0 0 0; }
.compare-table th:last-child { border-radius: 0 16px 0 0; }
.compare-table td {
    padding: 0.9rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #F5F5F5;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: #555;
}
.compare-table td:first-child { text-align: left; font-weight: 500; color: #1a1a1a; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #FAFAF9; }
.compare-table .featured-col { background: rgba(194,147,74,0.06) !important; }
.compare-check { color: var(--vow-gold); }
.compare-no { color: #D8D8D8; }

/* FAQ */
.faq-list { list-style: none; padding: 0; }
.faq-item { border-bottom: 1px solid #EBEBEB; }
.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 1.35rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #1a1a1a;
    transition: color 0.2s;
    gap: 1rem;
}
.faq-trigger:hover { color: var(--vow-gold); }
.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--vow-gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner {
    padding-bottom: 1.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.85;
}
