  .velvet-footer-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .velvet-footer {
            background: linear-gradient(135deg, #2a2520 0%, #1a1a1a 100%);
            color: #f7f5f3;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            position: relative;
            overflow: hidden;
        }

        .velvet-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(212, 196, 176, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 196, 176, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .velvet-footer-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px 40px;
        }

       .velvet-footer-main {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 2px;
   margin-bottom: 30px;
}

        .velvet-brand-section {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .velvet-brand-logo {
            font-family: 'Didot', serif;
            font-size: 2.2rem;
            font-weight: 400;
            letter-spacing: 2px;
            color: #f7f5f3;
            margin-bottom: 5px;
        }

        .velvet-brand-tagline {
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #d4c4b0;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .velvet-brand-description {
            font-size: 15px;
            line-height: 1.7;
            font-weight: 300;
            color: rgba(247, 245, 243, 0.8);
            max-width: 350px;
        }

        .velvet-footer-section {
            display: flex;
            flex-direction: column;
        }

        .velvet-footer-title {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #d4c4b0;
            margin-bottom: 25px;
            position: relative;
        }

        .velvet-footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: rgba(212, 196, 176, 0.4);
        }

        .velvet-footer-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .velvet-footer-link {
            color: rgba(247, 245, 243, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .velvet-footer-link:hover {
            color: #f7f5f3;
            transform: translateX(5px);
        }

        .velvet-footer-link::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            width: 0;
            height: 1px;
            background: #d4c4b0;
            transition: width 0.3s ease;
            transform: translateY(-50%);
        }

        .velvet-footer-link:hover::before {
            width: 10px;
        }

        .velvet-contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .velvet-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 300;
            color: rgba(247, 245, 243, 0.8);
        }

        .velvet-contact-icon {
            width: 16px;
            height: 16px;
            opacity: 0.6;
        }

        .velvet-social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .velvet-social-link {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 12px 0;
            color: rgba(247, 245, 243, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .velvet-social-link:hover {
            color: #f7f5f3;
            transform: translateX(5px);
        }

        .velvet-footer-bottom {
            border-top: 1px solid rgba(212, 196, 176, 0.2);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .velvet-copyright {
            font-size: 12px;
            font-weight: 300;
            color: rgba(247, 245, 243, 0.6);
            letter-spacing: 0.5px;
        }

        .velvet-footer-legal {
            display: flex;
            gap: 30px;
        }

        .velvet-legal-link {
            color: rgba(247, 245, 243, 0.6);
            text-decoration: none;
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .velvet-legal-link:hover {
            color: #d4c4b0;
        }

        .velvet-decorative-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4c4b0, transparent);
            opacity: 0.4;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .velvet-footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .velvet-footer-content {
                padding: 60px 30px 30px;
            }

            .velvet-brand-section {
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .velvet-footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .velvet-brand-section {
                align-items: center;
                text-align: center;
            }

            .velvet-footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

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

            .velvet-footer-content {
                padding: 50px 20px 30px;
            }

            .velvet-brand-logo {
                font-size: 1.8rem;
            }

            .velvet-social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .velvet-footer-legal {
                flex-direction: column;
                gap: 10px;
            }

            .velvet-brand-logo {
                font-size: 1.5rem;
            }
        }

        /* Subtle animations */
        .velvet-footer-section {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .velvet-footer-section:nth-child(1) { animation-delay: 0.1s; }
        .velvet-footer-section:nth-child(2) { animation-delay: 0.2s; }
        .velvet-footer-section:nth-child(3) { animation-delay: 0.3s; }
        .velvet-footer-section:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

