/* Header styles for guide pages */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-content .logo {
    display: flex;
    align-items: center;
}

.header-content .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.header-content .logo img {
    height: 50px;
    width: auto;
}

.header-content .logo span {
    font-weight: 900;
    font-size: 1.4rem;
    color: #532EAA;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .header-content .logo img {
        height: 40px;
    }
    .header-content .logo span {
        font-size: 1.1rem;
    }
}

/* Optimized Compact Footer CSS */
.site-footer {
    background: #0D142B;
    color: #fff;
    padding: 15px 0 10px;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-left {
    flex: 1;
    max-width: 800px;
}

/* Brand Checkmark Icon */
.footer-brand-icon {
    width: 24px;
    height: 24px;
    background: #532EAA;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(83, 46, 170, 0.2);
}

.footer-brand-icon i {
    color: #fff;
    font-size: 0.75rem;
}

.footer-left .tagline {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    color: #FFFFFF;
}

.legal-text {
    opacity: 0.6;
    font-size: 0.65rem;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #A0AEC0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-links .sep {
    color: rgba(255, 255, 255, 0.3);
}

/* Review Card Styling */
.footer-right {
    flex: 0 0 220px;
}

.reviews-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.stars {
    color: #FBBF24;
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.score-text {
    color: #4ADE80;
    font-weight: 700;
    font-size: 0.8rem;
}

.footer-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #718096;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 25px;
    }
    .footer-right {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Responsive - Compact */
@media (max-width: 768px) {
    .site-footer {
        padding: 15px 0 10px;
        margin-top: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 10px;
    }

    .footer-brand-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 8px;
    }

    .footer-brand-icon i {
        font-size: 0.75rem;
    }

    .footer-left .tagline {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .legal-text {
        font-size: 0.6rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-links a {
        font-size: 0.75rem;
    }

    .footer-right {
        flex: none;
        width: 100%;
        max-width: none;
    }

    .reviews-card {
        padding: 10px;
        border-radius: 10px;
    }

    .reviews-card h4 {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .stars {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .score-text {
        font-size: 0.75rem;
    }

    .footer-bottom {
        padding-top: 10px;
        font-size: 0.7rem;
    }
}

/* Sticky CTA / Floating Button */
.sticky-cta-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    animation: slideInUp 0.5s ease;
}

.sticky-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.sticky-cta-button i {
    font-size: 1.1rem;
}

/* Mobile Sticky CTA - Full width at bottom */
@media (max-width: 768px) {
    .sticky-cta-button {
        left: 15px;
        right: 15px;
        bottom: 15px;
        justify-content: center;
        padding: 18px 24px;
        font-size: 1.1rem;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
