/* Additional styles for contact form */
        .form-message {
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            display: none;
        }
        
        .form-message.success {
            background: rgba(76, 175, 80, 0.1);
            border-left: 4px solid #4CAF50;
            color: #4CAF50;
        }
        
        .form-message.error {
            background: rgba(244, 67, 54, 0.1);
            border-left: 4px solid #F44336;
            color: #F44336;
        }
        
        .field-error {
            color: #F44336;
            font-size: 0.85rem;
            margin-top: 5px;
            display: block;
        }
        
        .character-count {
            font-size: 0.8rem;
            color: #999;
            text-align: right;
            margin-top: 5px;
        }
        
        .character-count.near-limit {
            color: #FF9800;
        }
        
        .character-count.over-limit {
            color: #F44336;
        }
        
        .form-validation {
            margin: 15px 0;
        }
        
        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 15px 0;
        }
        
        .terms-checkbox input[type="checkbox"] {
            margin-top: 3px;
        }
        
        .terms-checkbox label {
            font-size: 0.9rem;
            color: #CCCCCC;
            line-height: 1.4;
        }
        
        .terms-checkbox label a {
            color: #FFD700;
            text-decoration: underline;
        }
        
        .terms-checkbox label a:hover {
            text-decoration: none;
        }
        
        .btn-loading {
            position: relative;
            color: transparent !important;
        }
        
        .btn-loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin-top: -10px;
            margin-left: -10px;
            border: 2px solid rgba(0, 0, 0, 0.3);
            border-top-color: #000;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Security CAPTCHA Styles */
        .security-fields {
            background: rgba(255, 243, 205, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: 5px;
            padding: 15px;
            margin: 20px 0;
        }
        
        .honeypot-field {
            position: absolute;
            left: -9999px;
            opacity: 0;
            height: 0;
            width: 0;
        }
        
        /* Enhanced Honeypot Field - VISIBLE TO BOTS, HIDDEN TO HUMANS */
        .bot-trap-field {
            position: absolute !important;
            top: -9999px !important;
            left: -9999px !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: 0 !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            border: 0 !important;
            background: transparent !important;
        }
        
        .bot-trap-field:focus {
            outline: none !important;
        }
        
        .captcha-container {
            background: rgba(10, 25, 47, 0.7);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 5px;
            padding: 15px;
            margin: 15px 0;
        }
        
        .captcha-question {
            font-size: 1rem;
            color: #FFD700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .captcha-question i {
            font-size: 1.2rem;
        }
        
        .captcha-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 10px 0;
        }
        
        .captcha-option {
            flex: 1;
            min-width: 120px;
        }
        
        .captcha-option input[type="radio"] {
            display: none;
        }
        
        .captcha-option label {
            display: block;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: #CCCCCC;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .captcha-option input[type="radio"]:checked + label {
            background: rgba(255, 215, 0, 0.2);
            border-color: #FFD700;
            color: #FFD700;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
        }
        
        .captcha-option label:hover {
            background: rgba(255, 215, 0, 0.1);
        }
        
        .time-trap {
            display: none;
        }
        
        .form-security-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid rgba(76, 175, 80, 0.3);
            border-radius: 4px;
            color: #4CAF50;
            margin-top: 15px;
            font-size: 0.9rem;
        }
        
        .form-security-badge i {
            font-size: 1.2rem;
        }

        /* ========== ENHANCED AI ASSISTANT ========== */
        .ai-assistant-container {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 9999;
        }

        .ai-assistant-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #0A192F;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .ai-assistant-btn:hover {
            transform: scale(1.1) rotate(10deg);
        }

        .ai-assistant-btn.pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3); }
            50% { box-shadow: 0 5px 30px rgba(255, 215, 0, 0.6); }
            100% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3); }
        }

        /* LARGER AI CHAT WINDOW */
        .ai-chat-window {
            position: absolute;
            bottom: 80px;
            left: 0;
            width: 480px; /* Increased from 380px */
            max-height: 650px; /* Increased from 500px */
            background: #1A1A1A;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            transform: scale(0.5);
            opacity: 0;
            visibility: hidden;
            transform-origin: bottom left;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .ai-chat-window.open {
            transform: scale(1);
            opacity: 1;
            visibility: visible;
        }

        .ai-chat-header {
            padding: 20px;
            background: linear-gradient(135deg, #081428 0%, #0A192F 100%);
            color: #FFD700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }

        .ai-chat-header h3 {
            margin: 0;
            font-size: 1.2rem; /* Slightly larger */
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ai-chat-header h3 i {
            font-size: 1.3rem; /* Slightly larger */
        }

        .ai-status {
            font-size: 0.8rem; /* Slightly larger */
            color: #4CAF50;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 5px;
        }

        .ai-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #4CAF50;
            border-radius: 50%;
            display: inline-block;
        }

        .close-chat {
            background: none;
            border: none;
            color: #CCCCCC;
            cursor: pointer;
            font-size: 1.2rem;
            transition: color 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-chat:hover {
            color: #FFD700;
            background: rgba(255, 215, 0, 0.1);
        }

        .ai-chat-messages {
            height: 450px; /* Increased from 350px */
            padding: 20px;
            overflow-y: auto;
            background: #0A192F;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 215, 0, 0.3) transparent;
        }

        .ai-chat-messages::-webkit-scrollbar {
            width: 8px; /* Slightly wider */
        }

        .ai-chat-messages::-webkit-scrollbar-track {
            background: transparent;
        }

        .ai-chat-messages::-webkit-scrollbar-thumb {
            background: rgba(255, 215, 0, 0.3);
            border-radius: 4px;
        }

        .ai-message, .user-message {
            margin-bottom: 15px;
            padding: 15px 18px; /* Slightly more padding */
            border-radius: 18px;
            max-width: 90%; /* Increased from 85% */
            font-size: 0.95rem; /* Slightly larger */
            line-height: 1.5;
            word-wrap: break-word;
            animation: fadeInMessage 0.3s ease;
        }

        @keyframes fadeInMessage {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .ai-message {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.2);
            color: #FFFFFF;
            border-top-left-radius: 5px;
            margin-right: auto;
        }

        .user-message {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #FFFFFF;
            border-top-right-radius: 5px;
            margin-left: auto;
        }

        .typing-indicator {
            display: none;
            padding: 15px 18px; /* Slightly more padding */
            border-radius: 18px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.2);
            color: #999;
            font-size: 0.95rem; /* Slightly larger */
            width: fit-content;
            animation: fadeInMessage 0.3s ease;
        }

        .typing-indicator.show {
            display: block;
        }

        .typing-indicator i {
            animation: bounce 1.4s infinite;
        }

        .typing-indicator i:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-indicator i:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes bounce {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-5px); }
        }

        .ai-chat-input {
            display: flex;
            padding: 15px;
            background: #081428;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ai-user-input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            outline: none;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.95rem; /* Slightly larger */
            transition: all 0.3s ease;
        }

        .ai-user-input:focus {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
        }

        .ai-send-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #0A192F;
            border: none;
            margin-left: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ai-send-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }

        .ai-send-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .quick-actions {
            padding: 15px; /* More padding */
            background: rgba(8, 20, 40, 0.5);
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 10px; /* Slightly larger gap */
        }

        .quick-action-btn {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.2);
            color: #FFD700;
            padding: 8px 15px; /* More padding */
            border-radius: 15px;
            font-size: 0.8rem; /* Slightly larger */
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .quick-action-btn:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-1px);
        }

        .service-card-message {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .service-card-message h4 {
            color: #FFD700;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .service-card-message p {
            color: #CCCCCC;
            font-size: 0.85rem;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .service-card-message .service-features {
            list-style: none;
            padding: 0;
            margin: 10px 0;
        }

        .service-card-message .service-features li {
            color: #999;
            font-size: 0.8rem;
            padding: 3px 0;
            padding-left: 15px;
            position: relative;
        }

        .service-card-message .service-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #FFD700;
        }

        .service-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .service-link {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #0A192F;
            padding: 6px 12px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
        }

        /* NEW: Trust Bar Styles */
        .trust-bar {
            background: linear-gradient(90deg, #081428 0%, #0A192F 50%, #081428 100%);
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            position: sticky;
            top: 70px;
            z-index: 100;
        }

        .trust-bar .container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .trust-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
            padding: 10px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
        }

        .trust-item .icon {
            font-size: 24px;
            display: block;
            margin-bottom: 5px;
            color: #FFD700;
        }

        .trust-item small {
            font-size: 0.75em;
            line-height: 1.3;
            color: #CCCCCC;
        }

        .trust-item strong {
            color: #FFD700;
            font-size: 1.1em;
        }

        /* NEW: Stats Bar */
        .stats-bar {
            background: rgba(10, 25, 47, 0.9);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 10px;
            padding: 30px 20px;
            margin: 30px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .stat-item h3 {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 5px;
        }

        .stat-item p {
            color: #CCCCCC;
            font-size: 0.9rem;
        }

        /* NEW: Footer Accreditations (Text-based) */
        .footer-accreditations {
            margin: 20px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .accreditation-badge {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 8px;
            padding: 10px 15px;
            text-align: center;
            min-width: 120px;
        }

        .accreditation-badge i {
            font-size: 24px;
            color: #FFD700;
            margin-bottom: 5px;
        }

        .accreditation-badge small {
            display: block;
            color: #CCCCCC;
            font-size: 0.75rem;
        }

        /* NEW: Last Updated */
        .last-updated {
            margin-top: 10px;
            color: #999;
        }

        .last-updated span {
            color: #CCCCCC;
            font-weight: 600;
        }

        /* NEW: Security Notice */
        .security-notice {
            background: rgba(255, 243, 205, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: 5px;
            padding: 10px;
            margin: 20px 0;
            font-size: 0.85rem;
            color: #FFD700;
        }

        .security-notice a {
            color: #FFD700;
            text-decoration: underline;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .ai-chat-window {
                width: 90vw;
                max-width: 400px; /* Increased for mobile */
            }
            
            .ai-chat-messages {
                height: 350px; /* Adjusted for mobile */
            }
            
            .trust-bar .container {
                flex-direction: column;
                gap: 10px;
            }
            
            .trust-item {
                min-width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 8px;
            }
            
            .footer-accreditations {
                gap: 15px;
            }
            
            .accreditation-badge {
                min-width: 100px;
                padding: 8px 10px;
            }
            
            .captcha-options {
                flex-direction: column;
            }
            
            .captcha-option {
                min-width: 100%;
            }
            
            /* Mobile optimizations for form */
            .terms-checkbox {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .form-group input,
            .form-group textarea,
            .form-group select {
                font-size: 16px !important; /* Prevents zoom on iOS */
            }
        }
        
        /* Desktop optimizations */
        @media (min-width: 1200px) {
            .ai-chat-window {
                width: 520px; /* Even larger on big screens */
            }
            
            .ai-chat-messages {
                height: 500px;
            }
        }