/* 
 * Zero-Click SEO Page Specific Styles
 */

.zero-click-seo .hero-section {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.zero-click-seo h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.zero-click-seo .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box {
    background-color: #163680;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    color: white;
}

.stat-box.highlight {
    background-color: #0e9c65;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero badges */
.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.badge.featured {
    background: #0e9c65;
    position: relative;
}

.badge.pulse::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 156, 101, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(14, 156, 101, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(14, 156, 101, 0);
    }
}

/* Definition Section */
.definition-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.definition-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.definition-text {
    flex: 1;
}

.definition-image {
    flex: 1;
    text-align: center;
}

.highlighted-text {
    font-size: 1.5rem;
    color: #4e73df;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 30px;
}

.key-points {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.key-points .point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.key-points i {
    font-size: 1.5rem;
    color: #4e73df;
}

.key-points h4 {
    font-weight: 600;
    margin: 0;
}

/* Problem Section */
.problem-section {
    background-color: #f8f9fc;
    padding: 80px 0;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.challenge-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
    font-size: 2.5rem;
    color: #4e73df;
    margin-bottom: 20px;
}

.challenge-item h3 {
    color: #2e59d9;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background-color: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pillar-item {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pillar-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #4e73df;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.pillar-item h3 {
    color: #2e59d9;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.pillar-benefits {
    margin-top: 20px;
    padding-left: 20px;
}

.pillar-benefits li {
    margin-bottom: 8px;
    color: #5a5c69;
}

/* Results Section */
.results-section {
    background-color: #f8f9fc;
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.result-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-card .industry {
    background: #2e59d9;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.result-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    border-bottom: 1px solid #e3e6f0;
}

.result-stats .stat {
    text-align: center;
}

.result-stats .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2e59d9;
    display: block;
}

.result-stats .label {
    font-size: 0.9rem;
    color: #5a5c69;
}

.result-quote {
    padding: 20px;
}

.result-quote p {
    font-style: italic;
    margin-bottom: 15px;
}

.quote-author {
    font-weight: 600;
    color: #2e59d9;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: white;
}

.process-timeline {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #4e73df;
    z-index: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 75px;
    position: relative;
}

.marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4e73df;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(46, 89, 217, 0.3);
}

.timeline-content {
    flex: 1;
    padding-left: 20px;
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2e59d9;
}

.timeline-duration {
    display: inline-block;
    background: #e3e6f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Industry Chart */
.industry-chart-container, 
.timeline-chart-container {
    margin: 60px 0;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fc;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.faq-question {
    margin: 0;
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    color: #2e59d9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer div {
    padding: 0 20px 20px;
    color: #5a5c69;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* Traffic Loss Visualization */
.traffic-loss-visualization {
    background-color: #f8f9fc;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-overlay {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 1 200px;
}

.stat-card.highlight {
    background-color: #0e9c65;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
}

.stat-card.highlight .stat-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .definition-content {
        flex-direction: column;
    }
    
    .definition-image {
        order: -1;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .zero-click-seo h1 {
        font-size: 2.5rem;
    }
    
    .zero-click-seo .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .results-grid,
    .pillars-grid,
    .challenge-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .highlighted-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-stats,
    .result-stats,
    .stat-overlay {
        flex-direction: column;
    }
    
    .timeline-chart-container,
    .industry-chart-container {
        padding: 15px;
    }
    
    .hero-cta .btn,
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
    
    .zero-click-seo h1 {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .marker {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
