/* ==========================================
   PACKAGE DETAIL SECTION
========================================== */

.package-detail {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-badge {
    display: inline-block;
    background: rgba(255, 107, 107, .15);
    color: var(--coral);
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.package-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.detail-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 20px;
}

.package-intro {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* ==========================================
   DETAIL GRID
========================================== */

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.detail-box {
    background: var(--light);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
}

.detail-box h3 {
    color: var(--navy);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.detail-box ul {
    list-style: none;
}

.detail-box li {
    padding: 12px 0;
    border-bottom: 1px solid #dfe5ec;
}

.detail-box li:last-child {
    border-bottom: none;
}

.detail-box strong {
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

/* ==========================================
   RESULTS SECTION
========================================== */

.results-section {
    margin-top: 50px;
}

.results-section h3 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 15px;
}

.results-section>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.result-card {
    background: white;
    border: 1px solid var(--border);
    border-top: 5px solid var(--coral);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: .3s ease;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.result-card h4 {
    color: var(--navy);
    margin-bottom: 10px;
}

/* ==========================================
   TIMELINE
========================================== */

.timeline-section {
    margin-top: 60px;
}

.timeline-section h3 {
    text-align: center;
    margin-bottom: 35px;
    color: var(--navy);
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.timeline-step {
    flex: 1;
    background: var(--light);
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    position: relative;
}

.timeline-step strong {
    display: block;
    color: var(--coral);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* ==========================================
   IDEAL FOR SECTION
========================================== */

.ideal-for,
.not-included {
    margin-top: 50px;
}

.ideal-for h3,
.not-included h3 {
    color: var(--navy);
    margin-bottom: 20px;
}

.ideal-for ul,
.not-included ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    list-style: none;
}

.ideal-for li {
    background: rgba(10, 37, 64, .05);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
}

.not-included li {
    background: rgba(255, 107, 107, .08);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

/* ==========================================
   PACKAGE CTA
========================================== */

.package-cta {
    margin-top: 60px;
    text-align: center;
    background: var(--navy);
    color: white;
    padding: 50px;
    border-radius: 16px;
}

.package-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.package-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    opacity: .9;
}

/* ==========================================
   COMPARISON TABLE
========================================== */

.comparison-table {
    padding: 80px 0;
}

.comparison-table h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 40px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.comparison-table th {
    background: var(--navy);
    color: white;
    padding: 18px;
    text-align: center;
}

.comparison-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #e8edf2;
}

.comparison-table tr:nth-child(even) {
    background: #f9fbfd;
}

/* ==========================================
   ROI SECTION
========================================== */

.roi-section {
    background: var(--light);
    padding: 80px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 80px 0;
}

.roi-section h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.roi-section>p {
    max-width: 800px;
    margin: 0 auto 40px;
}

.roi-example {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.roi-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.roi-box h3 {
    font-size: 2.5rem;
    color: var(--coral);
    margin-bottom: 10px;
}

/* ==========================================
   ANIMATIONS
========================================== */

.package-detail,
.result-card,
.roi-box,
.timeline-step {
    transition: all .3s ease;
}

.package-detail:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, .10);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .detail-grid,
    .results-grid,
    .roi-example {
        grid-template-columns: 1fr;
    }

    .timeline {
        flex-direction: column;
    }

    .ideal-for ul,
    .not-included ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .package-detail {
        padding: 30px;
    }

    .package-header h2 {
        font-size: 2rem;
    }

    .detail-price {
        font-size: 2.3rem;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 700px;
    }

    .ideal-for ul,
    .not-included ul {
        grid-template-columns: 1fr;
    }

    .package-cta {
        padding: 35px 25px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}