/* ========================================
   POST & PAGE STYLES
   ======================================== */

/* Content Area */
.content-area {
    padding: 60px 0;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-right: 3px solid var(--primary-color);
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumbs li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.breadcrumbs li a:hover {
    color: var(--primary-color);
}

.breadcrumbs li a .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.breadcrumbs li.separator {
    color: var(--border-color);
    font-weight: 300;
}

.breadcrumbs li.current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Shortcode Page - Clean layout for plugin shortcodes */
.shortcode-page {
    padding: 0;
}

.shortcode-page article {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.shortcode-page .entry-content {
    padding: 0;
    background: transparent;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

/* Article Styles */
article {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.entry-title {
    margin: 0 0 15px 0;
    color: var(--dark-color);
}

.entry-title a {
    color: var(--dark-color);
}

.entry-title a:hover {
    color: var(--primary-color);
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.entry-meta .dashicons {
    color: var(--primary-color);
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    line-height: 1.8;
    color: var(--text-color);
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-right: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.tags-links,
.cat-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-links a,
.cat-links a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-primary);
    border-radius: 16px;
    color: var(--text-color);
    font-size: 13px;
    transition: all 0.3s;
}

.tags-links a:hover,
.cat-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Pagination */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination .page-numbers,
.nav-links a,
.nav-links span {
    display: inline-block;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current,
.nav-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Sidebar */
.widget-area {
    padding-top: 0;
}

.widget {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.widget-title {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-color);
    transition: all 0.3s;
}

.widget ul li a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

/* No Content */
.no-content {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
}

.no-content h2 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.no-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   RESPONSIVE - POST & PAGE
   ======================================== */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    article {
        padding: 25px;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .breadcrumbs {
        padding: 12px 20px;
        margin-bottom: 20px;
    }
    
    .breadcrumbs ul {
        gap: 8px;
    }
    
    .breadcrumbs li {
        font-size: 13px;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(5deg, #ffffff 0%, #ffffff 50%, #ffecdb 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 122, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 202, 40, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(229, 57, 53, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.how-it-works-section .container {
    position: relative;
    z-index: 2;
}

.how-it-works-section .section-header h2,
.how-it-works-section .section-header p {
    color: var(--dark-color);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.how-it-works-section .section-header .dashicons {
    color: var(--primary-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: 3fr 0.5fr 3fr 0.5fr 3fr 0.5fr 3fr;
    gap: 15px;
    align-items: center;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.2);
    min-height: 280px;
}

.step-item:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 50px rgba(255, 122, 0, 0.35);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5EB 100%);
}

.step-number {
    position: absolute;
    top: -25px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7A00 0%, #E86B00 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(255, 122, 0, 0.6);
    border: 4px solid var(--white);
}

.step-icon {
    margin: 30px 0 20px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.3);
}

.step-item:hover .step-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.5);
}

.step-icon .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: var(--white);
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0 12px;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-item p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.step-arrow {
    text-align: center;
    color: var(--primary-color);
    padding: 0 5px;
}

.step-arrow .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.6;
    animation: arrowBounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 122, 0, 0.3));
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    border-right: 4px solid var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 120px;
    color: rgba(255, 122, 0, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.15);
    border-right-color: var(--secondary-color);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars .dashicons {
    color: var(--accent-color);
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar .dashicons {
    color: var(--white);
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.author-info h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
}

.author-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   STATISTICS COUNTER ANIMATION
   ======================================== */
.statistics-section .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
    display: block;
    transition: all 0.3s ease;
}

/* ========================================
   ENHANCED FEATURES GRID
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon .dashicons {
    color: var(--white);
    font-size: 40px;
    width: 40px;
    height: 40px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--dark-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESPONSIVE - NEW SECTIONS
   ======================================== */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .testimonials-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-section,
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-item,
    .testimonial-card,
    .feature-item {
        padding: 25px 20px;
    }
}

/* Background images for sections */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}
.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}
.hero-section .container,
.hero-section .hero-content {
    position: relative;
    z-index: 1;
}
.hero-section .hero-title,
.hero-section .hero-subtitle {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.statistics-section,
.why-choose-us {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.statistics-section::before,
.why-choose-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 0;
}
.statistics-section .container,
.why-choose-us .container {
    position: relative;
    z-index: 1;
}
.why-choose-us .section-header h2,
.why-choose-us .section-header p {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.statistics-section .stat-label,
.statistics-section .stat-number {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

