.footer-preview-wrapper {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #f4f4f4;
            /* Just to push the footer to the bottom in preview if content is short */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end; 
        }

        /* --- MODERN FOOTER CSS --- */

        .new-footer {
            background: linear-gradient(135deg, #0b2e10 0%, #1a5c20 100%); /* richer gradient */
            color: #e0e0e0;
            padding: 80px 20px 40px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }

        /* Decorative top border/glow */
        .new-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #25D366, #8ED957, #25D366);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            max-width: 1400px;
            margin: auto;
            position: relative;
            z-index: 1;
        }

        .footer-column h3 {
            color: #fff;
            margin-bottom: 24px;
            font-size: 1.25rem;
            font-weight: 600;
            position: relative;
            display: inline-block;
            margin-top: 0;
        }

        /* Underline effect for headers */
        .footer-column h3::after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: #25D366;
            margin-top: 8px;
            border-radius: 2px;
        }

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

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

        .footer-column a {
            color: #b0c4b1;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        /* Hover effect: Slide right and change color */
        .footer-column a:hover {
            color: #fff;
            transform: translateX(5px);
        }
        
        /* Add arrow hint on hover */
        .footer-column ul li a::before {
            content: '\f105'; /* FontAwesome angle-right */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            opacity: 0;
            margin-right: -10px;
            transition: all 0.3s ease;
            font-size: 0.8em;
            color: #25D366;
        }

        .footer-column ul li a:hover::before {
            opacity: 1;
            margin-right: 8px;
        }

        .footer-logo {
            max-width: 180px;
            margin-bottom: 20px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .footer-about {
            font-size: 0.95rem;
            color: #b0c4b1;
            line-height: 1.7;
            margin-top: 0;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.08);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px; /* Soft square modern look */
            font-size: 18px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .footer-social a:hover {
            background: #25D366;
            transform: translateY(-5px);
            color: #fff;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            border-color: transparent;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #b0c4b1;
            font-size: 0.95rem;
        }

        .contact-item i {
            color: #25D366;
            margin-right: 15px;
            font-size: 1.1rem;
            margin-top: 4px;
            min-width: 20px;
            text-align: center;
        }

        .footer-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            padding: 12px 28px;
            background: #25D366;
            border-radius: 50px;
            color: #fff !important;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            width: fit-content;
        }

        .footer-cta i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .footer-cta:hover {
            background: #20bd5a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            padding-left: 28px; /* Override general link hover */
        }
        
        .footer-cta:hover::before {
             display: none; /* Hide the arrow from general links */
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 60px;
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: #889e89;
        }
        
        .footer-bottom p {
            margin: 0;
        }