/*
Theme Name: Vicopoint Galaxis Child
Theme URI: https://vicopoint.com
Template: galaxis
Description: Custom child theme for Vicopoint - Earn money while buying data and airtime
Author: Vicopoint
Version: 1.0
*/

/* Brand Colors */
:root {
    --vp-primary: #FF6B35;
    --vp-secondary: #1A2A6C;
    --vp-accent: #FFD700;
    --vp-white: #ffffff;
    --vp-gray: #f5f5f7;
    --vp-text: #333333;
    --vp-text-light: #666666;
}

/* Global Styles */
.vp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.vp-section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--vp-secondary);
}

.vp-section-subtitle {
    text-align: center;
    color: var(--vp-text-light);
    margin-bottom: 3rem;
}

/* Buttons */
.vp-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.vp-btn-primary {
    background: var(--vp-primary);
    color: var(--vp-white);
}

.vp-btn-primary:hover {
    background: #e55a2b;
    color: var(--vp-white);
}

.vp-btn-secondary {
    background: transparent;
    color: var(--vp-white);
    border: 2px solid var(--vp-white);
}

.vp-btn-secondary:hover {
    background: var(--vp-white);
    color: var(--vp-secondary);
}

/* Hero Section */
.vp-hero {
    background: var(--vp-secondary);
    padding: 80px 20px;
    text-align: center;
    width: 100%;
}

.vp-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--vp-primary);
}

.vp-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--vp-white);
    line-height: 1.6;
}

/* Services Grid */
.vp-services {
    padding: 60px 0;
    background: var(--vp-gray);
}

.vp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vp-service-card {
    background: var(--vp-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.vp-service-card:hover {
    transform: translateY(-5px);
}

.vp-service-icon {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--vp-primary);
}

/* API Reseller */
.vp-api-reseller {
    background: linear-gradient(135deg, var(--vp-primary), #e55a2b);
    padding: 60px 0;
    text-align: center;
    color: var(--vp-white);
}

.vp-api-reseller h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vp-api-reseller p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* How It Works */
.vp-how-it-works {
    padding: 60px 0;
}

.vp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vp-step {
    text-align: center;
    padding: 20px;
}

.vp-step-number {
    width: 60px;
    height: 60px;
    background: var(--vp-primary);
    color: var(--vp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Pricing Cards */
.vp-pricing {
    padding: 60px 0;
    background: var(--vp-gray);
}

.vp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.vp-pricing-card {
    background: var(--vp-white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.vp-pricing-card.vp-featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.vp-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vp-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.vp-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--vp-primary);
    margin-bottom: 20px;
}

.vp-pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.vp-pricing-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Earning Potential */
.vp-earning-section {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, var(--vp-secondary) 0%, #0f1a4a 100%);
}

.vp-earning-potential {
    text-align: center;
}

.vp-earning-potential h3 {
    font-size: 1.8rem;
    color: var(--vp-white);
    margin-bottom: 2rem;
}

.vp-earning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.vp-earning-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.vp-earning-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.vp-earning-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vp-primary);
    display: block;
    margin-bottom: 15px;
}

.vp-earning-card p {
    color: var(--vp-white);
    font-size: 1rem;
}

/* Video Tutorials */
.vp-videos {
    padding: 60px 0;
    background: var(--vp-gray);
}

.vp-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.vp-video-card {
    background: var(--vp-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.vp-video-card:hover {
    transform: translateY(-5px);
}

.vp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.vp-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vp-video-info {
    padding: 20px;
}

.vp-video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--vp-secondary);
}

/* Blog Section */
.vp-blog {
    padding: 60px 0;
}

.vp-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.vp-view-all {
    color: var(--vp-primary);
    text-decoration: none;
    font-weight: 600;
}

.vp-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vp-blog-card {
    background: var(--vp-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.vp-blog-card:hover {
    transform: translateY(-5px);
}

.vp-blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vp-blog-content {
    padding: 20px;
}

.vp-read-more {
    color: var(--vp-primary);
    text-decoration: none;
    font-weight: 600;
}

/* Blog Post Hero */
.vp-post-hero {
    background: var(--vp-secondary);
    padding: 60px 0 40px;
    text-align: center;
}

.vp-post-hero h1 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
}

.vp-post-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.vp-post-body {
    background: white;
    padding: 40px;
    border-radius: 16px;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .vp-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vp-hero-title {
        font-size: 1.8rem;
    }
    
    .vp-hero p {
        font-size: 1rem;
    }
    
    .vp-btn {
        display: block;
        width: 90%;
        margin: 10px auto;
    }
    
    .vp-section-title {
        font-size: 1.5rem;
    }
    
    .vp-pricing-card.vp-featured {
        transform: scale(1);
    }
    
    .vp-services-grid,
    .vp-steps,
    .vp-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .vp-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .vp-post-hero h1 {
        font-size: 1.6rem;
    }
    
    .vp-post-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .vp-post-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .vp-hero-title {
        font-size: 1.5rem;
    }
}




/* Testimonials Section */
.vp-testimonials {
    padding: 60px 0;
    background: var(--vp-white);
}

.vp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vp-testimonial-card {
    background: var(--vp-gray);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.vp-testimonial-card:hover {
    transform: translateY(-5px);
}

.vp-testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--vp-text);
}

.vp-testimonial-author {
    font-weight: bold;
    color: var(--vp-primary);
    margin-bottom: 8px;
}

.vp-testimonial-rating {
    color: #FFD700;
    letter-spacing: 2px;
}



/* ===== FAQ SECTION - FIXED WITH PROPER HEIGHT ===== */
.vp-faq {
    padding: 60px 0;
    background: var(--vp-gray);
}

.vp-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vp-faq-item {
    background: var(--vp-white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.vp-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.vp-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--vp-secondary);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--vp-white);
    margin: 0;
}

.vp-faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.vp-faq-question span:first-child {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vp-faq-question i:first-child {
    color: var(--vp-primary);
}

.vp-faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--vp-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vp-faq-toggle i {
    transition: transform 0.3s ease;
    color: var(--vp-primary);
    font-size: 0.8rem;
}

.vp-faq-item.active .vp-faq-toggle {
    background: var(--vp-primary);
}

.vp-faq-item.active .vp-faq-toggle i {
    color: white;
}

/* FIXED: Answer container with auto height */
.vp-faq-answer {
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    color: var(--vp-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.vp-faq-item.active .vp-faq-answer {
    max-height: 300px; /* Large enough for most answers */
    padding: 0 20px 20px;
    border-top: 1px solid var(--vp-gray);
}

/* Scrollbar styling for long answers */
.vp-faq-answer::-webkit-scrollbar {
    width: 4px;
}

.vp-faq-answer::-webkit-scrollbar-track {
    background: var(--vp-gray);
    border-radius: 4px;
}

.vp-faq-answer::-webkit-scrollbar-thumb {
    background: var(--vp-primary);
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vp-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vp-faq-question {
        font-size: 0.9rem;
        padding: 16px;
    }
    
    .vp-faq-answer {
        font-size: 0.85rem;
    }
    
    .vp-faq-item.active .vp-faq-answer {
        max-height: 400px; /* Larger on mobile for longer answers */
    }
}



/* Newsletter Section */
.vp-newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--vp-secondary), #0f1a4a);
    color: white;
    text-align: center;
}

.vp-newsletter-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.vp-newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.vp-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
    flex-wrap: wrap;
}

.vp-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.vp-newsletter-form button {
    background: var(--vp-primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}

/* Mobile Responsive Additions */
@media (max-width: 768px) {
    .vp-testimonials-grid,
    .vp-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .vp-newsletter-form {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .vp-newsletter-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .vp-testimonial-card {
        padding: 20px;
    }
    
    .vp-faq-item {
        padding: 18px;
    }
}


/* Icon styles */
.vp-service-icon i {
    font-size: 2.5rem;
    color: var(--vp-primary);
}

.vp-step i {
    display: block;
}

.vp-pricing-card ul li i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.vp-testimonial-rating i {
    margin: 0 2px;
}

.vp-faq-question i {
    margin-right: 10px;
}

.vp-read-more i,
.vp-view-all i {
    transition: transform 0.3s;
}

.vp-read-more:hover i,
.vp-view-all:hover i {
    transform: translateX(5px);
}

.vp-btn i {
    margin-right: 8px;
}




/* ===== PAGE HERO SECTION ===== */
.vp-page-hero {
    background: linear-gradient(135deg, var(--vp-secondary) 0%, #0f1a4a 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.vp-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.vp-page-hero h1 {
    font-size: 2.2rem;
    color: var(--vp-white);
    margin-bottom: 15px;
}

.vp-page-hero h1 i {
    color: var(--vp-primary);
    margin-right: 10px;
}

/* Breadcrumbs */
.vp-breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.vp-breadcrumbs a {
    color: var(--vp-primary);
    text-decoration: none;
}

.vp-breadcrumbs a:hover {
    text-decoration: underline;
}

.vp-breadcrumbs .current-item {
    color: var(--vp-white);
}

/* Page Content */
.vp-page-article {
    padding: 50px 0;
    background: #f9f9f9;
}

.vp-page-body {
    background: var(--vp-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.vp-page-body h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--vp-secondary);
}

.vp-page-body h3 {
    font-size: 1.4rem;
    margin: 25px 0 10px;
    color: var(--vp-secondary);
}

.vp-page-body p {
    margin-bottom: 1.2em;
}

/* Mobile Responsive for Page Hero */
@media (max-width: 768px) {
    .vp-page-hero {
        padding: 40px 0 30px;
    }
    
    .vp-page-hero h1 {
        font-size: 1.6rem;
    }
    
    .vp-page-body {
        padding: 20px;
    }
}








/* Blog Post Title Links */
.vp-blog-title-link {
    color: var(--vp-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.vp-blog-title-link:hover {
    color: var(--vp-primary);
    transform: translateX(3px);
}

/* Blog Image Link */
.vp-blog-image-link {
    display: block;
    text-decoration: none;
}

.vp-blog-image-link:hover .vp-blog-image img {
    transform: scale(1.05);
}

.vp-blog-image {
    overflow: hidden;
}

.vp-blog-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Read More Button - ensure it stays looking good */
.vp-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--vp-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.vp-read-more:hover {
    gap: 10px;
    color: #e55a2b;
}

/* Blog Card hover effect */
.vp-blog-card {
    background: var(--vp-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.vp-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}




/* ===== CUSTOM FOOTER ===== */
.vp-footer {
    background: var(--vp-secondary);
    color: var(--vp-white);
    padding: 60px 0 20px;
    margin-top: 0;
}

.vp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.vp-footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.vp-footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--vp-primary);
}

.vp-footer-col h3 i {
    color: var(--vp-primary);
    margin-right: 8px;
}

.vp-footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.vp-footer-col ul {
    list-style: none;
    padding: 0;
}

.vp-footer-col ul li {
    margin-bottom: 10px;
}

.vp-footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.vp-footer-col ul li a:hover {
    color: var(--vp-primary);
    padding-left: 5px;
}

.vp-footer-col ul li i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--vp-primary);
}

/* Social Links */
.vp-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.vp-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--vp-white);
    transition: all 0.3s;
}

.vp-social-links a:hover {
    background: var(--vp-primary);
    transform: translateY(-3px);
}

/* Contact Info */
.vp-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.vp-contact-info li i {
    width: 25px;
    margin-right: 10px;
}

/* Footer Newsletter */
.vp-footer-newsletter {
    margin-top: 20px;
}

.vp-footer-newsletter h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--vp-primary);
}

.vp-footer-form {
    display: flex;
    gap: 8px;
}

.vp-footer-form input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--vp-white);
}

.vp-footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vp-footer-form button {
    background: var(--vp-primary);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--vp-white);
    cursor: pointer;
    transition: all 0.3s;
}

.vp-footer-form button:hover {
    background: #e55a2b;
}

/* Footer Bottom */
.vp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vp-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.vp-footer-links {
    display: flex;
    gap: 20px;
}

.vp-footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.vp-footer-links a:hover {
    color: var(--vp-primary);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .vp-footer {
        padding: 40px 0 20px;
    }
    
    .vp-footer-grid {
        gap: 30px;
    }
    
    .vp-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .vp-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vp-footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vp-footer-col {
        text-align: center;
    }
    
    .vp-social-links {
        justify-content: center;
    }
    
    .vp-contact-info li {
        justify-content: center;
    }
}




/* ===== MODERN BLOG POST DESIGN ===== */
.vp-post-article {
    padding: 0 0 60px;
    background: var(--vp-gray);
}

.vp-post-wrapper {
    max-width: 900px;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
}

/* Featured Image */
.vp-post-featured-image {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vp-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reading Progress Bar */
.vp-reading-progress {
    height: 4px;
    background: rgba(0,0,0,0.05);
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.vp-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--vp-primary);
    transition: width 0.3s;
}

/* Post Body Container */
.vp-post-body {
    background: var(--vp-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Intro Paragraph */
.vp-post-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--vp-text);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--vp-gray);
}

.vp-post-intro p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Table of Contents */
.vp-toc-wrapper {
    background: linear-gradient(135deg, var(--vp-gray) 0%, #ffffff 100%);
    border-radius: 16px;
    margin: 0 0 40px;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.vp-toc-header {
    padding: 18px 25px;
    background: var(--vp-secondary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.vp-toc-header:hover {
    background: #0f1a4a;
}

.vp-toc-header i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.vp-toc-toggle i {
    transition: transform 0.3s;
}

.vp-toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
}

.vp-toc-content.open {
    max-height: 500px;
    padding: 20px 25px;
}

.vp-toc-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vp-toc-content li {
    margin-bottom: 12px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.vp-toc-content li:hover {
    border-left-color: var(--vp-primary);
    padding-left: 5px;
}

.vp-toc-content a {
    color: var(--vp-text);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    transition: color 0.3s;
}

.vp-toc-content a:hover {
    color: var(--vp-primary);
}

.vp-toc-showmore {
    border-left: none !important;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.vp-toc-more-btn {
    background: none;
    border: none;
    color: var(--vp-primary);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.vp-toc-more-btn i {
    transition: transform 0.3s;
}

.vp-toc-more-btn:hover i {
    transform: translateY(3px);
}

/* Main Content Styling */
.vp-post-main-content {
    margin-top: 20px;
}

/* Heading Styles with Animation */
.vp-post-main-content h2 {
    font-size: 1.8rem;
    margin: 50px 0 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--vp-gray) 0%, #ffffff 100%);
    border-left: 4px solid var(--vp-primary);
    border-radius: 0 12px 12px 0;
    color: var(--vp-secondary);
    transition: all 0.3s;
    scroll-margin-top: 80px;
}

.vp-post-main-content h2:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #e8e8e8 0%, var(--vp-gray) 100%);
}

.vp-post-main-content h3 {
    font-size: 1.4rem;
    margin: 35px 0 15px;
    padding: 10px 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    color: var(--vp-secondary);
    scroll-margin-top: 80px;
    transition: all 0.3s;
}

.vp-post-main-content h3:hover {
    background: rgba(255, 107, 53, 0.1);
    padding-left: 20px;
}

.vp-post-main-content h4 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
    color: var(--vp-primary);
    scroll-margin-top: 80px;
}

/* Paragraphs */
.vp-post-main-content p {
    margin-bottom: 1.5em;
    line-height: 1.8;
    color: var(--vp-text);
}

/* Links */
.vp-post-main-content a {
    color: var(--vp-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.vp-post-main-content a:hover {
    border-bottom-color: var(--vp-primary);
}

/* Lists */
.vp-post-main-content ul,
.vp-post-main-content ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.vp-post-main-content li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

/* Blockquotes */
.vp-post-main-content blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    background: linear-gradient(135deg, var(--vp-gray) 0%, #ffffff 100%);
    border-left: 4px solid var(--vp-primary);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    position: relative;
}

.vp-post-main-content blockquote:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: 15px;
    top: -10px;
    opacity: 0.2;
    font-family: serif;
}

/* Images */
.vp-post-main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 1.5em 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Tables */
.vp-post-main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.vp-post-main-content th,
.vp-post-main-content td {
    padding: 12px;
    border: 1px solid var(--vp-gray);
    text-align: left;
}

.vp-post-main-content th {
    background: var(--vp-secondary);
    color: white;
}

/* Post Tags */
.vp-post-tags-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    margin: 30px 0;
    border-top: 1px solid var(--vp-gray);
    border-bottom: 1px solid var(--vp-gray);
}

.vp-post-tags-bottom i {
    color: var(--vp-primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.vp-post-tags-bottom a {
    background: var(--vp-gray);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--vp-text);
    transition: all 0.3s;
}

.vp-post-tags-bottom a:hover {
    background: var(--vp-primary);
    color: white;
}

/* Author Box */
.vp-author-box {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, var(--vp-gray) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
}

.vp-author-avatar img {
    border-radius: 50%;
    border: 3px solid var(--vp-primary);
}

.vp-author-info h4 {
    margin: 0 0 10px;
    color: var(--vp-secondary);
    font-size: 1.2rem;
}

.vp-author-info p {
    margin: 0 0 15px;
    font-size: 0.95rem;
    color: var(--vp-text-light);
    line-height: 1.6;
}

.vp-author-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.vp-author-share span {
    font-size: 0.85rem;
    color: var(--vp-text-light);
}

.vp-author-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    color: var(--vp-text);
    transition: all 0.3s;
}

.vp-author-share a:hover {
    background: var(--vp-primary);
    color: white;
    transform: translateY(-2px);
}

/* Post Navigation */
.vp-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 2px solid var(--vp-gray);
    border-bottom: 2px solid var(--vp-gray);
}

.vp-nav-prev,
.vp-nav-next {
    flex: 1;
}

.vp-nav-label {
    display: block;
    font-size: 0.8rem;
    color: var(--vp-text-light);
    margin-bottom: 8px;
}

.vp-nav-prev a,
.vp-nav-next a {
    font-weight: 600;
    color: var(--vp-secondary);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.vp-nav-prev a:hover,
.vp-nav-next a:hover {
    color: var(--vp-primary);
}

.vp-nav-next {
    text-align: right;
}

/* Related Posts */
.vp-related-posts {
    margin: 40px 0;
}

.vp-related-posts h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--vp-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vp-related-posts h3 i {
    color: var(--vp-primary);
}

.vp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.vp-related-card {
    background: var(--vp-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.vp-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vp-related-card a {
    text-decoration: none;
    color: inherit;
}

.vp-related-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.vp-related-card h4 {
    padding: 15px 15px 5px;
    font-size: 0.95rem;
    color: var(--vp-secondary);
}

.vp-related-card span {
    display: block;
    padding: 0 15px 15px;
    font-size: 0.75rem;
    color: var(--vp-text-light);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .vp-post-wrapper {
        margin: -20px 15px 0;
    }
    
    .vp-post-body {
        padding: 20px;
    }
    
    .vp-post-intro {
        font-size: 1rem;
    }
    
    .vp-post-main-content h2 {
        font-size: 1.4rem;
        padding: 12px 15px;
    }
    
    .vp-post-main-content h3 {
        font-size: 1.2rem;
    }
    
    .vp-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .vp-author-share {
        justify-content: center;
    }
    
    .vp-post-navigation {
        flex-direction: column;
    }
    
    .vp-nav-prev,
    .vp-nav-next {
        text-align: center;
    }
    
    .vp-related-grid {
        grid-template-columns: 1fr;
    }
    
    .vp-toc-content.open {
        padding: 15px;
    }
}


/* ===== ABOUT US PAGE ===== */
.vp-about-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.vp-about-story {
    margin-bottom: 40px;
}

.vp-about-story h2 {
    font-size: 1.8rem;
    color: var(--vp-secondary);
    margin-bottom: 20px;
}

.vp-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.vp-mission, .vp-vision {
    background: linear-gradient(135deg, var(--vp-gray) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.vp-mission:hover, .vp-vision:hover {
    transform: translateY(-5px);
}

.vp-mission i, .vp-vision i {
    font-size: 2.5rem;
    color: var(--vp-primary);
    margin-bottom: 15px;
}

.vp-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.vp-value-card {
    text-align: center;
    padding: 25px;
    background: var(--vp-gray);
    border-radius: 16px;
    transition: all 0.3s;
}

.vp-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vp-value-card i {
    font-size: 2rem;
    color: var(--vp-primary);
    margin-bottom: 15px;
}

.vp-about-sidebar {
    position: sticky;
    top: 100px;
}

.vp-stats-box {
    background: var(--vp-secondary);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.vp-stat-item {
    margin: 20px 0;
}

.vp-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--vp-primary);
}

.vp-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.vp-cta-sidebar {
    background: var(--vp-gray);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.vp-cta-sidebar i {
    font-size: 2.5rem;
    color: var(--vp-primary);
    margin-bottom: 15px;
}

/* ===== SERVICES PAGE ===== */
.vp-services-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.vp-services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.vp-service-detailed-card {
    display: flex;
    gap: 30px;
    background: var(--vp-white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.vp-service-detailed-card:hover {
    transform: translateX(10px);
}

.vp-service-icon-large i {
    font-size: 3rem;
    color: var(--vp-primary);
}

.vp-service-info h3 {
    margin-bottom: 15px;
    color: var(--vp-secondary);
}

.vp-service-info ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.vp-service-info ul li {
    margin-bottom: 8px;
}

.vp-service-info ul li i {
    color: var(--vp-primary);
    margin-right: 10px;
}

.vp-service-cta {
    text-align: center;
    background: var(--vp-gray);
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
}

.vp-service-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* ===== PRIVACY POLICY PAGE ===== */
.vp-legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.vp-last-updated {
    background: var(--vp-gray);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--vp-text-light);
}

.vp-policy-section {
    margin-bottom: 40px;
}

.vp-policy-section h2 {
    font-size: 1.5rem;
    color: var(--vp-secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--vp-primary);
    display: inline-block;
}

.vp-policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.vp-policy-section ul {
    margin: 15px 0 15px 25px;
}

.vp-policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.vp-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.vp-contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.vp-contact-card {
    background: var(--vp-gray);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.vp-contact-card:hover {
    transform: translateY(-5px);
}

.vp-contact-card i {
    font-size: 2rem;
    color: var(--vp-primary);
    margin-bottom: 15px;
}

.vp-contact-card h3 {
    margin-bottom: 10px;
    color: var(--vp-secondary);
}

.vp-contact-card a {
    color: var(--vp-text);
    text-decoration: none;
}

.vp-contact-card a:hover {
    color: var(--vp-primary);
}

.vp-contact-form {
    background: var(--vp-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.vp-contact-form h2 {
    margin-bottom: 25px;
    color: var(--vp-secondary);
}

.vp-form-group {
    margin-bottom: 20px;
}

.vp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.vp-form-group label span {
    color: red;
}

.vp-form-group input,
.vp-form-group select,
.vp-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s;
}

.vp-form-group input:focus,
.vp-form-group select:focus,
.vp-form-group textarea:focus {
    outline: none;
    border-color: var(--vp-primary);
}

.vp-social-connect {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--vp-gray);
}

.vp-social-connect h3 {
    margin-bottom: 25px;
}

.vp-social-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.vp-social-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vp-gray);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--vp-text);
    transition: all 0.3s;
}

.vp-social-grid a:hover {
    background: var(--vp-primary);
    color: white;
    transform: translateY(-3px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    .vp-about-grid,
    .vp-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vp-about-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .vp-mission-vision,
    .vp-contact-info {
        grid-template-columns: 1fr;
    }
    
    .vp-service-detailed-card {
        flex-direction: column;
        text-align: center;
    }
    
    .vp-service-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vp-contact-form {
        padding: 25px;
    }
    
    .vp-values-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== BLOG ARCHIVE PAGE ===== */
.vp-archive-section {
    padding: 60px 0;
    background: var(--vp-gray);
}

.vp-archive-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.vp-archive-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vp-archive-post {
    background: var(--vp-white);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s;
}

.vp-archive-post:hover {
    transform: translateY(-3px);
}

.vp-archive-image {
    flex-shrink: 0;
    width: 250px;
}

.vp-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-archive-content {
    padding: 25px;
    flex: 1;
}

.vp-archive-category {
    margin-bottom: 10px;
}

.vp-archive-category a {
    background: var(--vp-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--vp-primary);
}

.vp-archive-content h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.vp-archive-content h2 a {
    color: var(--vp-secondary);
    text-decoration: none;
}

.vp-archive-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--vp-text-light);
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vp-archive-meta i {
    margin-right: 5px;
}

.vp-pagination {
    margin-top: 40px;
    text-align: center;
}

.vp-pagination .page-numbers {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    background: var(--vp-white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--vp-text);
}

.vp-pagination .current {
    background: var(--vp-primary);
    color: white;
}

/* Sidebar Widgets */
.vp-archive-sidebar {
    position: sticky;
    top: 100px;
}

.vp-sidebar-widget {
    background: var(--vp-white);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.vp-sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--vp-primary);
    display: inline-block;
}

.vp-search-form {
    display: flex;
    gap: 5px;
}

.vp-search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.vp-search-form button {
    background: var(--vp-primary);
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.vp-category-list,
.vp-recent-list {
    list-style: none;
    padding: 0;
}

.vp-category-list li,
.vp-recent-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--vp-gray);
}

.vp-category-list a,
.vp-recent-list a {
    text-decoration: none;
    color: var(--vp-text);
}

.vp-category-list a:hover,
.vp-recent-list a:hover {
    color: var(--vp-primary);
}

.vp-recent-list span {
    display: block;
    font-size: 0.7rem;
    color: var(--vp-text-light);
    margin-top: 3px;
}

.vp-tag-cloud a {
    display: inline-block;
    background: var(--vp-gray);
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--vp-text);
    margin: 0 5px 8px 0;
    font-size: 12px !important;
}

.vp-tag-cloud a:hover {
    background: var(--vp-primary);
    color: white;
}

.vp-sidebar-cta {
    background: linear-gradient(135deg, var(--vp-secondary), #0f1a4a);
    color: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
}

.vp-sidebar-cta i {
    font-size: 2rem;
    color: var(--vp-primary);
    margin-bottom: 10px;
}

/* ===== FAQ PAGE ===== */
.vp-faq-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.vp-faq-cat {
    background: var(--vp-white);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.vp-faq-cat.active,
.vp-faq-cat:hover {
    background: var(--vp-primary);
    color: white;
}

.vp-faq-group {
    background: var(--vp-white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.vp-faq-item {
    border-bottom: 1px solid var(--vp-gray);
}

.vp-faq-question {
    padding: 18px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.vp-faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.vp-faq-question:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    transition: transform 0.3s;
}

.vp-faq-item.open .vp-faq-question:after {
    transform: rotate(180deg);
}

.vp-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--vp-text-light);
    line-height: 1.6;
}

.vp-faq-item.open .vp-faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.vp-faq-contact {
    text-align: center;
    background: var(--vp-gray);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.vp-faq-contact i {
    font-size: 2.5rem;
    color: var(--vp-primary);
    margin-bottom: 15px;
}

.vp-faq-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    .vp-archive-layout {
        grid-template-columns: 1fr;
    }
    
    .vp-archive-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .vp-archive-post {
        flex-direction: column;
    }
    
    .vp-archive-image {
        width: 100%;
        height: 200px;
    }
    
    .vp-archive-meta {
        gap: 10px;
    }
    
    .vp-faq-categories {
        gap: 10px;
    }
    
    .vp-faq-cat {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}


/* ===== CUSTOM COMMENTS SECTION ===== */
.vp-comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--vp-gray);
}

.vp-comments-header h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--vp-secondary);
}

.vp-comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.vp-comment-item {
    display: flex;
    gap: 20px;
    background: var(--vp-gray);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.vp-comment-avatar img {
    border-radius: 50%;
    border: 2px solid var(--vp-primary);
}

.vp-comment-content {
    flex: 1;
}

.vp-comment-author {
    font-weight: 600;
    color: var(--vp-secondary);
    margin-bottom: 8px;
}

.vp-comment-date {
    font-size: 0.75rem;
    font-weight: normal;
    color: var(--vp-text-light);
    margin-left: 10px;
}

.vp-comment-author-badge {
    background: var(--vp-primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 10px;
}

.vp-comment-text {
    color: var(--vp-text);
    line-height: 1.6;
    margin-bottom: 10px;
}

.vp-comment-reply a {
    font-size: 0.8rem;
    color: var(--vp-primary);
    text-decoration: none;
}

.vp-comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

/* Comment Form */
.vp-comment-field {
    margin-bottom: 20px;
}

.vp-comment-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.vp-comment-field label span {
    color: red;
}

.vp-comment-field input,
.vp-comment-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s;
}

.vp-comment-field input:focus,
.vp-comment-field textarea:focus {
    outline: none;
    border-color: var(--vp-primary);
}

/* Category list with counts */
.vp-category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vp-category-list li span {
    color: var(--vp-text-light);
    font-size: 0.8rem;
}

/* Archive widget */
.vp-category-list .post-count {
    color: var(--vp-text-light);
    font-size: 0.75rem;
}

/* Mobile Comments */
@media (max-width: 768px) {
    .vp-comment-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .vp-comment-author {
        text-align: center;
    }
    
    .vp-comment-reply {
        text-align: center;
    }
}






/* ===== HERO BUTTONS - SOLID ORANGE WITH WHITE TEXT ===== */
.vp-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Register Button - Solid Orange */
.vp-btn-register {
    background: #FF6B35;
    color: #FFFFFF !important;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    cursor: pointer;
}

.vp-btn-register i {
    color: #FFFFFF;
    font-size: 1.1rem;
}

.vp-btn-register:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: #FFFFFF !important;
}

/* Login Button - Solid Orange (Same as Register) */
.vp-btn-login {
    background: #FF6B35;
    color: #FFFFFF !important;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    cursor: pointer;
}

.vp-btn-login i {
    color: #FFFFFF;
    font-size: 1.1rem;
}

.vp-btn-login:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: #FFFFFF !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vp-hero-buttons {
        gap: 15px;
    }
    
    .vp-btn-register,
    .vp-btn-login {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .vp-btn-register i,
    .vp-btn-login i {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .vp-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .vp-btn-register,
    .vp-btn-login {
        width: 80%;
        justify-content: center;
    }
}




/* ===== HOW IT WORKS - NEW STYLES ===== */
.vp-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.vp-step-card {
    background: var(--vp-white);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.vp-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.vp-step-card .vp-step-number {
    width: 45px;
    height: 45px;
    background: var(--vp-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.vp-step-card i {
    font-size: 2rem;
    color: var(--vp-primary);
    margin-bottom: 15px;
}

.vp-step-card h3 {
    font-size: 1.2rem;
    color: var(--vp-secondary);
    margin-bottom: 10px;
}

.vp-step-card p {
    color: var(--vp-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.vp-how-it-works-footer {
    text-align: center;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== DEDICATED HOW IT WORKS PAGE ===== */
.vp-summary-box {
    background: linear-gradient(135deg, var(--vp-secondary), #0f1a4a);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    color: white;
}

.vp-summary-box h3 {
    text-align: center;
    margin-bottom: 20px;
}

.vp-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.vp-summary-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--vp-primary);
}

.vp-breakdown-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--vp-gray);
}

.vp-breakdown-section h2 {
    font-size: 1.6rem;
    color: var(--vp-secondary);
    margin-bottom: 20px;
}

.vp-breakdown-section h2 i {
    color: var(--vp-primary);
    margin-right: 10px;
}

.vp-plan-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.vp-plan-compare-card {
    background: var(--vp-gray);
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s;
}

.vp-plan-compare-card:hover {
    transform: translateY(-5px);
}

.vp-featured-compare {
    background: linear-gradient(135deg, var(--vp-secondary), #0f1a4a);
    color: white;
}

.vp-featured-compare h3,
.vp-featured-compare .vp-plan-price {
    color: white;
}

.vp-plan-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--vp-primary);
    margin: 15px 0;
}

.vp-plan-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.vp-plan-compare-card li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vp-plan-compare-card li i {
    color: var(--vp-primary);
}

.vp-plan-require {
    font-size: 0.8rem;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.vp-earnings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.vp-earnings-table th,
.vp-earnings-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--vp-gray);
}

.vp-earnings-table th {
    background: var(--vp-secondary);
    color: white;
}

.vp-milestone-table {
    background: var(--vp-gray);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

.vp-milestone-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.vp-milestone-row:last-child {
    border-bottom: none;
}

.vp-milestone-pv {
    font-weight: bold;
    color: var(--vp-secondary);
}

.vp-milestone-bonus {
    font-weight: bold;
    color: var(--vp-primary);
}

.vp-withdraw-list {
    list-style: none;
    padding: 0;
}

.vp-withdraw-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vp-withdraw-list li i {
    font-size: 1.2rem;
    color: var(--vp-primary);
}

.vp-breakdown-cta {
    text-align: center;
    background: var(--vp-gray);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.vp-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .vp-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vp-plan-comparison,
    .vp-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .vp-milestone-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .vp-milestone-arrow {
        transform: rotate(90deg);
    }
}




/* ===== UPDATED PRICING SECTION ===== */
.vp-price-duration {
    font-size: 0.75rem;
    color: var(--vp-text-light);
    margin-bottom: 20px;
}

.vp-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.vp-feature {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vp-text);
}

.vp-feature i {
    color: var(--vp-primary);
    width: 18px;
}

.vp-feature-muted {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
}

.vp-feature-muted i {
    color: #ccc;
    width: 18px;
}

.vp-plan-requirements {
    background: var(--vp-gray);
    border-radius: 10px;
    padding: 12px;
    margin: 15px 0;
    font-size: 0.7rem;
    text-align: center;
}

.vp-plan-requirements strong {
    display: block;
    margin-bottom: 5px;
    color: var(--vp-secondary);
}

.vp-plan-requirements span {
    color: var(--vp-text-light);
}

.vp-pricing-note {
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid var(--vp-primary);
    padding: 15px 20px;
    margin-top: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.vp-pricing-note i {
    color: var(--vp-primary);
    font-size: 1.2rem;
}

.vp-pricing-note p {
    margin: 0;
    color: var(--vp-text-light);
}

/* Updated Earning Comparison */
.vp-earning-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.vp-earning-compare {
    background: var(--vp-white);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s;
}

.vp-earning-compare:hover {
    transform: translateY(-5px);
}

.vp-earning-featured {
    background: linear-gradient(135deg, var(--vp-secondary), #0f1a4a);
    color: white;
    transform: scale(1.02);
}

.vp-earning-featured h4,
.vp-earning-featured .vp-earning-total {
    color: white;
}

.vp-earning-total {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--vp-primary);
    margin: 10px 0;
}

.vp-milestone-reminder {
    background: linear-gradient(135deg, var(--vp-gray), white);
    border-radius: 16px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.vp-milestone-reminder i {
    font-size: 2rem;
    color: var(--vp-primary);
}

.vp-milestone-reminder p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: var(--vp-text-light);
}

@media (max-width: 768px) {
    .vp-earning-comparison {
        grid-template-columns: 1fr;
    }
    
    .vp-earning-featured {
        transform: scale(1);
    }
    
    .vp-pricing-note {
        flex-direction: column;
        text-align: center;
    }
}





/* ===== TEXT VISIBILITY FIXES ===== */

/* Hero and Page Hero Text */
.vp-hero p,
.vp-page-hero p,
.vp-page-hero-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Earning Potential Section - Fix white text on dark blue */
.vp-earning-section {
    background: linear-gradient(135deg, var(--vp-secondary) 0%, #0f1a4a 100%);
}

.vp-earning-potential h3 {
    color: white !important;
}

.vp-earning-potential h3 i {
    color: var(--vp-primary);
}

.vp-earning-comparison h4,
.vp-earning-compare .vp-earning-total,
.vp-earning-compare p,
.vp-earning-compare small {
    color: var(--vp-text) !important;
}

.vp-earning-featured h4,
.vp-earning-featured .vp-earning-total,
.vp-earning-featured p,
.vp-earning-featured small {
    color: white !important;
}

.vp-milestone-reminder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.vp-milestone-reminder strong,
.vp-milestone-reminder p {
    color: white !important;
}

.vp-milestone-reminder i {
    color: var(--vp-primary);
}

/* Page Content Text - Privacy Policy, About Us, etc. */
.vp-page-body,
.vp-legal-content,
.vp-policy-section,
.vp-about-main,
.vp-services-detailed,
.vp-contact-info,
.vp-contact-form,
.vp-faq-container {
    color: var(--vp-text) !important;
}

.vp-page-body p,
.vp-legal-content p,
.vp-policy-section p,
.vp-about-main p,
.vp-services-detailed p,
.vp-faq-answer {
    color: var(--vp-text) !important;
}

.vp-page-body h2,
.vp-legal-content h2,
.vp-policy-section h2,
.vp-about-main h2,
.vp-services-detailed h2 {
    color: var(--vp-secondary) !important;
}

/* Fix for text on light backgrounds that might be white */
.vp-services .vp-service-card p,
.vp-how-it-works .vp-step p,
.vp-blog .vp-blog-card p,
.vp-testimonials .vp-testimonial-text {
    color: var(--vp-text) !important;
}

/* Footer text - ensure visibility */
.vp-footer,
.vp-footer p,
.vp-footer li,
.vp-footer a,
.vp-footer span {
    color: rgba(255, 255, 255, 0.8) !important;
}

.vp-footer a:hover {
    color: var(--vp-primary) !important;
}

.vp-footer h3,
.vp-footer h4 {
    color: white !important;
}

/* FAQ section on front page */
.vp-faq-question {
    color: var(--vp-secondary) !important;
}

.vp-faq-answer {
    color: var(--vp-text) !important;
}