        /* Professional Footer Styling */
        .professional-footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
            color: #ecf0f1;
            font-family: 'Poppins', sans-serif;
        }

        /* Newsletter Section */
        .footer-newsletter {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .newsletter-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .newsletter-content h3 {
            font-size: 24px;
            margin-bottom: 5px;
            color: #fff;
            font-weight: 600;
        }

        .newsletter-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            flex: 1;
            min-width: 300px;
            max-width: 400px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 5px;
            font-size: 14px;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
        }

        .newsletter-form button {
            padding: 12px 28px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }

        /* Main Footer Content */
        .footer-main {
            padding: 60px 20px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Brand Section */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .brand-logo {
            width: 60px;
            height: 60px;
            min-width: 60px;
            animation: floatLogo 3s ease-in-out infinite;
        }

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

        .logo-container h3 {
            font-size: 28px;
            font-weight: 700;
            margin: 0;
            color: #10b981;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(16, 185, 129, 0.1);
            border: 2px solid rgba(16, 185, 129, 0.3);
            border-radius: 50%;
            color: #10b981;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #10b981, #059669);
            transition: left 0.3s ease;
            z-index: 0;
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            color: #fff;
            transform: translateY(-6px) scale(1.15);
            border-color: #10b981;
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
        }

        .social-icon:hover::before {
            left: 0;
        }

        .social-icon:hover svg {
            transform: rotate(15deg) scale(1.1);
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: #10b981;
            transform: translateX(5px);
        }

        /* Contact Info */
        .contact-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .contact-info .icon {
            font-size: 16px;
            min-width: 20px;
        }

        .contact-info a {
            color: #10b981;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-info a:hover {
            color: #059669;
            text-decoration: underline;
        }

        /* Footer Bottom */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 30px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            text-align: center;
        }

        .footer-bottom-content p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
        }

        .footer-bottom-content a {
            color: #10b981;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-content a:hover {
            color: #059669;
            text-decoration: underline;
        }

        .heart {
            animation: heartbeat 1s infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
            }
        }

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

            .newsletter-container {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                max-width: 100%;
                flex-direction: column;
            }

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

            .contact-info p {
                justify-content: center;
            }

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

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .logo-container {
                justify-content: center;
                margin-bottom: 20px;
            }

            .brand-logo {
                width: 55px;
                height: 55px;
            }

            .logo-container h3 {
                font-size: 26px;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .brand-logo {
                width: 50px;
                height: 50px;
            }

            .logo-container h3 {
                font-size: 22px;
            }

            .footer-brand p {
                font-size: 13px;
            }

            .newsletter-content h3 {
                font-size: 20px;
            }

            .newsletter-content p {
                font-size: 12px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
            }

            .social-icon svg {
                width: 20px;
                height: 20px;
            }

            .footer-section h4 {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .footer-links li {
                margin-bottom: 10px;
            }

            .footer-links a {
                font-size: 13px;
            }

            .contact-info p {
                font-size: 12px;
                margin-bottom: 12px;
            }
        }
