        /* Enhanced Animation Keyframes */
        @keyframes slideInUp {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
        
        @keyframes buttonPulse {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            }
            50% {
                transform: scale(1.02);
                box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            }
        }
        
        /* Modern Notification Styles */
        .form-notification {
            font-weight: 500;
            text-align: center;
            border-radius: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1000;
            font-size: 13px;
            line-height: 1.4;
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 24px rgba(0,0,0,0.12);
        }
        
        .form-notification.show {
            animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .form-notification.success {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
            color: #ffffff;
            border: 1px solid rgba(34, 197, 94, 0.6);
        }
        
        .form-notification.error {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
            color: #ffffff;
            border: 1px solid rgba(239, 68, 68, 0.6);
        }
        
        /* Modern Email Form Styles */
        .modern-email-form input::placeholder {
            color: rgba(255,255,255,0.7);
            transition: color 0.2s ease;
        }
        
        .email-input-wrapper:hover {
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-1px);
        }
        
        .email-input-wrapper:focus-within {
            border-color: rgba(255,255,255,0.6) !important;
            box-shadow: 0 0 0 4px rgba(255,255,255,0.1) !important;
            transform: translateY(-2px);
        }
        
        .modern-email-form button:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #667eea 50%, #764ba2 100%) !important;
            transform: translateY(-50%) scale(1.05);
            animation: buttonPulse 0.6s ease;
        }
        
        .modern-email-form input:focus {
            color: rgba(255,255,255,0.95);
        }
        
        .modern-email-form input:focus::placeholder {
            color: rgba(255,255,255,0.5);
        }
        
        /* Modern WhatsApp Form Styles */
        .modern-whatsapp-form button:hover {
            background: rgba(255,255,255,0.35) !important;
            border-color: rgba(255,255,255,0.6) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
            animation: buttonPulse 0.6s ease;
        }
        
        .modern-whatsapp-form button:active {
            transform: translateY(-1px);
        }
        
        .phone-input-container:hover {
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(0,0,0,0.1);
        }
        
        .phone-input-container:focus-within {
            border-color: rgba(255,255,255,0.7) !important;
            box-shadow: 0 0 0 4px rgba(255,255,255,0.15) !important;
            transform: translateY(-2px) scale(1.01);
        }
        
        .phone-input-container select {
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .phone-input-container select:hover {
            background: rgba(0,0,0,0.08) !important;
        }
        
        .phone-input-container select:focus {
            outline: none;
            background: rgba(0,0,0,0.12) !important;
        }
        
        .phone-input-container input:focus {
            color: #1a202c;
        }
        
        .phone-input-container input::placeholder {
            color: rgba(45, 55, 72, 0.6);
            transition: color 0.2s ease;
        }
        
        .phone-input-container input:focus::placeholder {
            color: rgba(45, 55, 72, 0.4);
        }
        
        .whatsapp-form input:focus,
        .whatsapp-form select:focus {
            outline: none;
        }
        
        .whatsapp-form button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .alert-message {
            border-radius: 8px;
            font-family: 'Segoe UI', sans-serif;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 10;
        }
        
        .alert-message.show {
            display: block !important;
            opacity: 1;
            animation: slideIn 0.3s ease-out;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Modern Newsletter Section */
        .modern-newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        /* Enhanced Responsive Styles */
        @media (max-width: 768px) {
            .whatsapp-form .form-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .whatsapp-form .phone-input {
                min-width: 100%;
            }
            
            .whatsapp-form button {
                width: 100%;
                min-width: unset;
                padding: 14px 20px;
                font-size: 14px;
            }
            
            .modern-newsletter-section {
                text-align: center;
                padding: 25px 0;
            }
            
            .email-subscribe-form .input-group {
                flex-direction: column;
                gap: 12px;
                border-radius: 12px;
            }
            
            .alert-message {
                font-size: 12px;
                padding: 10px 14px;
                margin-bottom: 12px;
            }
        }
        
        @media (max-width: 480px) {
            .modern-newsletter-section h4 {
                font-size: 18px !important;
                margin-bottom: 10px !important;
            }
            
            .modern-newsletter-section p {
                font-size: 13px !important;
                margin-bottom: 15px !important;
            }
            
            .whatsapp-form select {
                min-width: 75px;
                font-size: 11px;
                padding: 10px 6px;
            }
            
            .whatsapp-form input {
                font-size: 13px;
                padding: 10px 12px;
            }
            
            .whatsapp-form {
                padding: 15px !important;
            }
            
            .email-subscribe-form .input-group {
                border-radius: 20px !important;
            }
            
            .quick-email-subscribe h6 {
                font-size: 13px !important;
            }
        }
        
        /* Clean WhatsApp Form Styles */
        .clean-whatsapp-section {
            margin-top: 20px;
            overflow: visible;
            position: relative;
        }
        
        .clean-whatsapp-form {
            position: relative;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(15px);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            overflow: visible;
        }
        
        .form-container {
            position: relative;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 8px;
            align-items: center;
            background: rgba(255,255,255,0.95);
            border-radius: 25px;
            padding: 4px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: visible;
        }
        
        .country-code-wrapper {
            min-width: 80px;
        }
        
        .country-code-input {
            width: 100%;
            border: none;
            outline: none;
            background: rgba(0,0,0,0.04);
            border-radius: 15px;
            padding: 12px 14px;
            font-size: 14px;
            color: #2d3748;
            font-weight: 600;
            text-align: center;
            transition: all 0.2s ease;
        }
        
        .country-code-input:focus {
            background: rgba(0,0,0,0.06);
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
        }
        
        .country-code-input::placeholder {
            color: #9ca3af;
        }
        
        .phone-input-wrapper {
            flex: 1;
        }
        
        .phone-input {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            padding: 12px 16px;
            font-size: 14px;
            color: #2d3748;
            font-weight: 500;
        }
        
        .phone-input::placeholder {
            color: #9ca3af;
        }
        
        .submit-button {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .submit-button:hover {
            background: linear-gradient(135deg, #20ba5a 0%, #0e7a6d 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        
        .submit-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
        }
        
        .submit-button i {
            font-size: 16px;
        }
        
        .form-footer {
            text-align: center;
            margin-top: 16px;
        }
        
        .form-footer small {
            color: rgba(255,255,255,0.85);
            font-size: 11px;
            line-height: 1.4;
        }
        
        .notification-message {
            margin-bottom: 15px;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .form-container {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 12px;
            }
            
            .country-code-wrapper {
                width: 100%;
            }
            
            .country-code-input {
                width: 100%;
                text-align: center;
            }
            
            .submit-button {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .clean-whatsapp-form {
                padding: 18px;
            }
            
            .form-container {
                gap: 10px;
                padding: 8px;
            }
            
            .country-code-input {
                font-size: 12px;
                padding: 10px 12px;
            }
            
            .phone-input {
                font-size: 13px;
                padding: 10px 12px;
            }
            
            .submit-button {
                font-size: 12px;
                padding: 12px 16px;
            }
        }
