footer.footer {
            background: #fce4ec;
            color: #5a4a49;
            overflow: hidden;
            animation: fadeInUp 1.2s ease;
        }

        footer .container {
            max-width: 1200px;
        }

        footer h4, footer h5 {
            color: #a36c74;
            font-weight: 600;
            margin-bottom: 10px;

        }

        footer p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: #5a4a49;
            margin-bottom: 0;
        }

        footer ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        footer ul li {
            margin-bottom: 5px;
        }

        footer a {
            color: #5a4a49;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        footer a:hover {
            color: #a36c74;
            transform: translateY(-2px);
        }

        .footer-logo {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .social-icons a {
            font-size: 1.2rem;
            margin-right: 15px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            transform: scale(1.2);
            color: #a36c74;
        }

        .footer hr {
            border-color: #e2c2c9;
            opacity: 0.5;
        }

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

        /* Fix alignment and bottom spacing */
        .footer .row > div {
            margin-bottom: 0;
        }

        /* Mobile alignment fix */
        @media (max-width: 768px) {
            footer .row > div {
                text-align: center !important;
                margin-bottom: 20px;
            }
            .social-icons {
                justify-content: center !important;
            }
        }