
     
        /* Footer Styles */
        .footer-section {
            background: #141313;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            grid-column: span 1;
        }

        .footer-brand .logo {
            width: 70px;
            height: auto;
            margin-bottom: 15px;
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .footer-brand .logo:hover {
            transform: scale(1.05);
        }

        .footer-brand h3 {
            color: var(--primary-orange);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .footer-brand p {
            color: var(--gray-text);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .footer-column h4 {
            color: var(--light-text);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s ease;
        }

        .footer-column:hover h4::after {
            width: 50px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-text);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            transform: translateX(8px);
        }

        .legal-section {
            margin-bottom: 30px;
            text-align: center;
        }

        .legal-section h4 {
            color: var(--light-text);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .legal-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        .legal-links a {
            color: var(--gray-text);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            padding: 5px 10px;
        }

        .legal-links a:hover {
            color: var(--primary-orange);
        }

        .legal-separator {
            color: var(--gray-text);
            font-size: 0.8rem;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: var(--gray-text);
            font-size: 0.95rem;
        }

        .contact-info .icon {
            margin-right: 12px;
            font-size: 1.2rem;
            width: 20px;
        }

        .contact-info a {
            color: var(--gray-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: var(--primary-orange);
        }

        .social-section {
            margin-top: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: var(--card-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-text);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--primary-orange);
            color: #000;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: var(--gray-text);
            font-size: 0.9rem;
        }

        .sitemap-link {
            color: var(--gray-text);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .sitemap-link:hover {
            color: var(--primary-orange);
        }

        /* Tablet Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-brand {
                grid-column: span 2;
                text-align: center;
                margin-bottom: 20px;
            }

            .footer-brand .logo {
                width: 90px;
            }

            .footer-brand h3 {
                font-size: 1.6rem;
            }
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .footer-section {
                padding: 50px 0 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: left;
            }

            .footer-brand {
                grid-column: span 1;
                text-align: center;
                padding-bottom: 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .footer-brand .logo {
                width: 85px;
            }

            .footer-brand h3 {
                font-size: 1.5rem;
            }

            .footer-column {
                padding: 20px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .footer-column:last-child {
                border-bottom: none;
            }

            .footer-column h4 {
                text-align: center;
                margin-bottom: 25px;
            }

            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links {
                text-align: center;
            }

            .contact-info {
                text-align: center;
            }

            .contact-info li {
                justify-content: center;
                margin-bottom: 18px;
            }

            .social-links {
                justify-content: center;
                margin-top: 20px;
            }

            .legal-section {
                text-align: center;
            }

            .legal-links {
                flex-direction: column;
                gap: 15px;
            }

            .legal-separator {
                display: none;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

        /* Small Mobile Design */
        @media (max-width: 480px) {
            .footer-container {
                padding: 0 15px;
            }

            .footer-section {
                padding: 40px 0 15px;
            }

            .footer-content {
                gap: 30px;
            }

            .footer-brand h3 {
                font-size: 1.4rem;
            }

            .footer-brand .logo {
                width: 75px;
            }

            .footer-brand p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            .footer-column {
                padding: 15px 0;
            }

            .footer-column h4 {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .footer-links a {
                font-size: 0.9rem;
                padding: 8px 0;
                display: block;
            }

            .contact-info li {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .legal-links a {
                padding: 10px 15px;
                font-size: 0.85rem;
            }

            .copyright,
            .sitemap-link {
                font-size: 0.85rem;
            }
        }

        /* Animation for footer reveal */
        .footer-section {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile step-by-step animation */
        @media (max-width: 768px) {
            .footer-brand {
                animation: slideInDown 0.6s ease-out;
            }

            .footer-column:nth-child(2) {
                animation: slideInLeft 0.7s ease-out 0.1s both;
            }

            .footer-column:nth-child(3) {
                animation: slideInLeft 0.7s ease-out 0.2s both;
            }

            .footer-column:nth-child(4) {
                animation: slideInLeft 0.7s ease-out 0.3s both;
            }

            .legal-section {
                animation: slideInUp 0.6s ease-out 0.4s both;
            }

            .footer-bottom {
                animation: slideInUp 0.6s ease-out 0.5s both;
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }