

        /* FOOTER */
        .footer {
            background: var(--bg-footer);
            border-top: 1px solid var(--border-accent);
            margin-top: var(--space-xl);
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4a574, #e8c9a5, #d4a574);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--space-lg) var(--space-md);
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: var(--space-md);
            position: relative;
            z-index: 1;
        }

        /* BRAND SECTION */
        .footer-brand {
            padding-right: var(--space-md);
        }

        .footer-brand .logo {
            font-family: var(--font-heading);
            font-size: 2.4rem;
            font-weight: 600;
            line-height: 1.1;
            color: var(--text-dark);
            margin-bottom: var(--space-sm);
            display: inline-block;
        }

        .footer-brand .logo span {
            font-weight: 300;
            color: var(--bg-accent);
        }

        .tagline {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: var(--space-sm);
            max-width: 300px;
            line-height: 1.7;
        }

        .socials {
            display: flex;
            gap: var(--space-xs);
            margin-top: var(--space-sm);
        }

        .socials a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-dark);
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .socials a:hover {
            background: var(--bg-accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 165, 116, 0.2);
        }

        /* NEWSLETTER */
        .newsletter {
            margin-top: var(--space-sm);
        }

        .newsletter h4 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .newsletter-form {
            display: flex;
            max-width: 300px;
            margin-top: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border-light);
            border-right: none;
            border-radius: var(--radius-sm) 0 0 var(--radius-sm);
            font-family: var(--font-body);
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: var(--bg-accent);
        }

        .newsletter-btn {
            background: var(--bg-dark);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .newsletter-btn:hover {
            background: var(--bg-accent);
        }

        /* FOOTER COLUMNS */
        .footer-column h4 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: var(--space-sm);
            color: var(--text-dark);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--bg-accent);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 0;
        }

        .footer-column a:hover {
            color: var(--bg-accent);
            transform: translateX(5px);
        }

        .footer-column a::before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--bg-accent);
        }

        .footer-column a:hover::before {
            opacity: 1;
            left: -12px;
        }

        /* FOOTER BOTTOM */
        .footer-bottom {
            border-top: 1px solid var(--border-accent);
            padding: var(--space-sm) var(--space-md);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-sm);
            background: rgba(255, 255, 255, 0.7);
        }

        .copyright {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .footer-links {
            display: flex;
            gap: var(--space-md);
        }

        .footer-links a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--bg-accent);
        }



        /* PRIVACY BAR */
        .privacy-bar {
            background: var(--bg-dark);
            color: white;
            text-align: center;
            padding: 16px;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .privacy-text {
            flex: 1;
            text-align: center;
        }

        .privacy-buttons {
            display: flex;
            gap: 10px;
        }

        .privacy-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 15px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .privacy-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--bg-accent);
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-lg);
            }

            .footer-brand {
                grid-column: 1 / -1;
                text-align: center;
                padding-right: 0;
            }

            .tagline {
                margin: 0 auto var(--space-sm);
            }

            .socials {
                justify-content: center;
            }

            .newsletter-form {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: var(--space-md);
                padding: var(--space-md) var(--space-sm);
            }

            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-column a:hover::before {
                opacity: 0;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-links {
                justify-content: center;
            }

            .privacy-bar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .back-to-top {
                right: 20px;
                top: -20px;
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .newsletter-form {
                flex-direction: column;
                gap: 10px;
            }

            .newsletter-input,
            .newsletter-btn {
                width: 100%;
                border-radius: var(--radius-sm);
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .privacy-buttons {
                flex-direction: column;
                width: 100%;
            }

            .privacy-btn {
                width: 100%;
            }
        }

        /* DEMO CONTENT STYLING (to show footer in context) */
        .demo-content {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .demo-content h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .demo-content p {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 40px;
        }
