/* =============================================
   VIEW YOUR DEAL - ADDITIONAL SEO SECTIONS CSS
   ============================================= */


/* HOW IT WORKS SECTION */
.how-it-works-section {
    background: #ffffff;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 15px 0;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: #f9fafb;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e7eb;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.1);
    border-color: #5B47E0;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5B47E0 0%, #7c3aed 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(91, 71, 224, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #5B47E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
}

.step-icon i {
    font-size: 36px;
    color: #ffffff;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px 0;
}

.step-card p {
    font-size: 1em;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* About Program Section */
.about-program-section {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 30px 0;
    text-align: center;
}

.content-wrapper p {    
    line-height: 1.8;
    color: #4B5563;
    margin: 0 0 20px 0;
}

.content-wrapper a {
    color: #5B47E0;
    font-weight: 600;
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Categories Deep Dive */
.categories-deep-dive {
    background: #f9fafb;
    padding: 80px 0;
}

.categories-deep-dive h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 15px 0;
}

.section-intro {
    font-size: 1.1em;
    color: #6B7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.category-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.showcase-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    border-color: #5B47E0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.showcase-icon i {
    font-size: 28px;
    color: #ffffff;
}

.showcase-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px 0;
}

.showcase-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6B7280;
    margin: 0;
}

.showcase-item a {
    color: #5B47E0;
    font-weight: 600;
    text-decoration: none;
}

.showcase-item a:hover {
    text-decoration: underline;
}

/* Shopping Tips Section */
.shopping-tips-section {
    background: #ffffff;
    padding: 80px 0;
}

.shopping-tips-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 50px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tip-card {
    background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: #10B981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.tip-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.tip-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 15px 0 12px 0;
}

.tip-card p {    
    line-height: 1.7;
    color: #6B7280;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    background: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.comparison-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 15px 0;
}

.comparison-content {
    margin-top: 50px;
}

.comparison-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    color: #ffffff;
}

.comparison-highlight h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 25px 0;
    color: #ffffff;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.highlight-list i {
    color: #FFD93D;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.other-programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.program-comparison-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.program-comparison-card:hover {
    border-color: #5B47E0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.1);
}

.program-comparison-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.program-comparison-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0;
}

.program-comparison-card a {
    color: #5B47E0;
    font-weight: 600;
    text-decoration: none;
}

.program-comparison-card a:hover {
    text-decoration: underline;
}

.explore-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
}

.explore-cta h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.explore-cta p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.explore-cta a {    
    font-weight: 600;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large i {
    transition: transform 0.3s ease;
}

.cta-button-large:hover i {
    transform: translateX(5px);
}

/* Resources Section */
.resources-section {
    background: #f9fafb;
    padding: 80px 0;
}

.resources-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 50px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    border-color: #5B47E0;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(91, 71, 224, 0.15);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resource-icon i {
    font-size: 32px;
    color: #ffffff;
}

.resource-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px 0;
}

.resource-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
    margin: 0 0 20px 0;
}

.resource-card a {
    color: #5B47E0;
    font-weight: 600;
    text-decoration: none;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5B47E0;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 12px;
}

.resource-link i {
    transition: transform 0.3s ease;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0;
    color: #ffffff;
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.final-cta-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0 0 35px 0;
}

.cta-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: #10B981;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.cta-btn-primary:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .category-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .other-programs-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .how-it-works-section,
    .categories-section,
    .faq-section,
    .about-tory-section,
    .other-programs-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
       
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        padding: 40px 25px 30px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-cta {
        padding: 25px 30px;
    }
    
    .categories-cta p {
        font-size: 16px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 25px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 15px;
    }
    
    .about-tory-text h2 {
        font-size: 32px;
    }
    
    .about-tory-text p {
        font-size: 16px;
    }
    
    .tory-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tory-quote {
        font-size: 18px;
        padding: 20px 25px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
	
	.tips-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tip-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .content-wrapper h2,
    .categories-deep-dive h2,
    .shopping-tips-section h2 {
        font-size: 24px;
    }
    
    .content-wrapper p,
    .showcase-item p {
        
    }
    
    .showcase-item {
        padding: 20px;
    }
    
    .tip-card {
        padding: 25px 20px;
    }
    
    .comparison-highlight h3 {
        font-size: 22px;
    }
    
    .highlight-list li {
        font-size: 15px;
    }
    
    .program-comparison-card {
        padding: 25px 20px;
    }
    
    .explore-cta h3 {
        font-size: 24px;
    }
    
    .final-cta-content h2 {
        font-size: 28px;
    }
}


/* Load More  Styles */
.load-more-section {
    margin: 40px 0;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(to bottom, transparent, #f9fafb 50%);
}

.load-more-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.deals-counter {
    font-size: 16px;
    color: #6B7280;
    font-weight: 500;
}

.deals-counter span {
    color: #5B47E0;
    font-weight: 700;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #5B47E0 0%, #7C3AED 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 71, 224, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 71, 224, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.load-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

.load-more-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .load-more-section {
        margin: 30px 0;
        padding: 20px 15px;
    }
    
    .deals-counter {
        font-size: 14px;
    }
    
    .load-more-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}
