/*
 * FAQ Page Styles - Q-Bab Burger
 * Extracted from inline styles for better performance and caching
 */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        /* Hero Section */
        .faq-hero {
            margin-top: 80px;
            padding: 100px 40px 60px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            text-align: center;
        }

        .faq-hero h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: 4rem;
            color: #f9a825;
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .faq-hero p {
            font-size: 1.2rem;
            color: #ddd;
        }

        /* FAQ Content */
        .faq-content {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 40px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(249, 168, 37, 0.3);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: #f9a825;
            box-shadow: 0 5px 20px rgba(249, 168, 37, 0.2);
        }

        .faq-question {
            padding: 25px 30px;
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            color: #f9a825;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            letter-spacing: 1px;
        }

        .faq-question::after {
            content: '+';
            font-size: 2rem;
            transition: transform 0.3s;
        }

        .faq-question.active::after {
            content: '−';
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 30px;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 30px 25px;
        }

        .faq-answer p {
            color: #ccc;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* CTA Section */
        .faq-cta {
            text-align: center;
            padding: 80px 40px;
            background: #1a1a1a;
        }

        .faq-cta h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            color: #f9a825;
            margin-bottom: 2rem;
        }

        .faq-cta p {
            font-size: 1.2rem;
            color: #ddd;
            margin-bottom: 2rem;
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #f9a825;
            color: #000;
            text-decoration: none;
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            border-radius: 50px;
            transition: all 0.3s;
            letter-spacing: 1px;
        }

        .cta-btn:hover {
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(249, 168, 37, 0.4);
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #ffffff;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-left h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: #f9a825;
            margin-bottom: 15px;
        }

        .footer-middle h3,
        .footer-right h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.3rem;
            color: #f9a825;
            margin-bottom: 15px;
        }

        .footer-middle p,
        .footer-right p {
            color: #cccccc;
            line-height: 1.8;
        }

        .footer-right a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-right a:hover {
            color: #f9a825;
        }

        .footer-phone {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(249, 168, 37, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9a825;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #f9a825;
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-copyright {
            color: #cccccc;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #f9a825;
        }

        .footer-payment {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .payment-icon {
            height: 30px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .payment-icon:hover {
            opacity: 1;
        }

        /* Mobile Navbar Fixes */
        @media (max-width: 768px) {
            .top-navbar {
                padding: 15px 20px 15px 100px !important;
                min-height: 60px !important;
            }

            .top-navbar.scrolled {
                padding: 10px 20px 10px 100px !important;
                min-height: 50px !important;
            }

            .nav-menu {
                display: none !important;
            }

            .site-logo {
                left: 15px !important;
            }

            .site-logo img {
                height: 50px !important;
            }

            .faq-hero {
                padding: 60px 20px 40px;
            }

            .faq-hero h1 {
                font-size: 2.5rem;
            }

            .faq-content {
                padding: 0 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
