/* SEO-optimized styles for guide pages */

.guide-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.guide-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.guide-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.route-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: #00D4FF;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.guide-section {
    padding: 3rem 0;
}

.guide-section h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.guide-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.price-alert-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.price-alert-card h3 {
    color: #0ea5e9;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-left: 4px solid #667eea;
}

.tip-card h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.faq-item {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #333;
    margin: 0;
}

.faq-answer {
    padding: 1.5rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

.breadcrumb-custom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb {
    background: none;
    margin: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: #00D4FF;
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #fff;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .guide-hero {
        padding: 2.5rem 0;
    }
    
    .guide-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .guide-hero .lead {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .route-stats {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .guide-section {
        padding: 2rem 0;
    }
    
    .guide-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .tip-card {
        padding: 1.25rem;
    }
    
    .tip-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .tip-card p {
        font-size: 0.95rem;
    }
    
    .price-alert-card {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .price-alert-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .breadcrumb-custom {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-custom .breadcrumb {
        font-size: 0.9rem;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .guide-hero {
        padding: 3.5rem 0;
    }
    
    .guide-hero h1 {
        font-size: 2.2rem;
    }
    
    .guide-hero .lead {
        font-size: 1.2rem;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .route-stats {
        padding: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.05rem;
    }
}