/* ========================================
   Price Details Page Specific Styles
   ======================================== */

/* Support Overview Section */
.support-overview {
    background: var(--bg-light);
    padding: 4rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.overview-card {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.overview-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.overview-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.recommend-badge-small {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    z-index: 2;
}

.overview-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overview-content {
    padding: 2rem;
}

.overview-content h3 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.overview-content h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.overview-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.overview-desc {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.overview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.overview-link:hover {
    gap: 0.75rem;
    opacity: 0.8;
}

/* Details Hero */
.details-hero {
    background: white;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--primary-color);
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb i {
    font-size: 0.75rem;
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text-light);
}

.details-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.details-hero-desc {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Details Section */
.details-section {
    padding: 5rem 0;
    background: white;
}

.details-section.alt-bg {
    background: var(--bg-light);
}

.details-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.details-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.details-image img {
    width: 100%;
    height: auto;
    display: block;
}

.details-intro h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.details-intro h2 i {
    color: var(--primary-color);
}

.details-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.details-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

/* Plan Category */
.plan-category {
    margin-bottom: 4rem;
}

.plan-category:last-child {
    margin-bottom: 0;
}

.plan-category h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-category h3 i {
    color: var(--primary-color);
}

.category-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Detail Plans */
.detail-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-plan-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.detail-plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.detail-plan-card.recommended {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.recommend-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.detail-plan-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.detail-plan-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detail-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.plan-summary {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.detail-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.detail-features li:last-child {
    border-bottom: none;
}

.detail-features i {
    color: var(--success-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Visit Plans - Horizontal Layout */
.visit-plans {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-plan-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.visit-plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.visit-plan-card.recommended {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.visit-plan-card .recommend-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.visit-plan-image {
    width: 350px;
    height: 250px;
    overflow: hidden;
}

.visit-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visit-plan-content {
    padding: 2rem 2rem 2rem 0;
}

.visit-plan-content h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.visit-plan-content h4 i {
    color: var(--primary-color);
}

.visit-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.visit-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Support Examples */
.support-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s;
}

.example-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.example-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.example-icon i {
    font-size: 2rem;
    color: white;
}

.example-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.example-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* CTA Section Adjustments */
.btn-secondary {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-light) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-image {
        height: 180px;
    }

    .overview-content {
        padding: 1.5rem;
    }

    .overview-content h3 {
        font-size: 1.5rem;
    }

    .overview-price {
        font-size: 1rem;
    }

    .details-header {
        grid-template-columns: 1fr;
    }

    .details-hero-title {
        font-size: 1.75rem;
    }

    .details-intro h2 {
        font-size: 1.5rem;
    }

    .plan-category h3 {
        font-size: 1.5rem;
    }

    .detail-plans {
        grid-template-columns: 1fr;
    }

    .visit-plan-card {
        grid-template-columns: 1fr;
    }

    .visit-plan-image {
        width: 100%;
        height: 200px;
    }

    .visit-plan-content {
        padding: 2rem;
    }

    .visit-plan-content h4 {
        font-size: 1.5rem;
    }

    .visit-price {
        font-size: 1.75rem;
    }

    .support-examples {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .details-section {
        padding: 3rem 0;
    }

    .breadcrumb {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }

    .visit-plan-content h4 {
        font-size: 1.25rem;
    }

    .visit-price {
        font-size: 1.5rem;
    }

    .visit-desc {
        font-size: 0.9375rem;
    }

    .support-examples {
        grid-template-columns: 1fr;
    }

    .detail-price {
        font-size: 1.5rem;
    }
}