 /* Contact Page Specific Styles */
    .contact-container {
        background: #1e293b;
        padding: 30px;
        border-radius: 12px;
        width: calc(100% - 48px);
        margin: 60px 24px;
        transition: all 0.3s ease;
        border: 1px solid rgba(59, 130, 246, 0.1);
        max-width: none;
    }
    
    .contact-container:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        border-color: rgba(59, 130, 246, 0.4);
        transform: translateY(-5px);
    }
    
    .contact-heading {
        background: linear-gradient(90deg, #9156ff, #518dff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-top: 10px;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
        font-size: 2.5rem;
        font-weight: bold;
        text-align: center;
    }
    
    .contact-heading:hover {
        transform: scale(1.05);
    }
    
    form label {
        display: block;
        margin: 12px 0 6px;
        font-weight: bold;
    }
    
    form input, form textarea {
        width: calc(100% - 4px);
        padding: 12px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 14px;
        box-sizing: border-box;
        background: #0f172a;
        color: white;
        transition: all 0.3s ease;
    }
    
    form input:focus, form textarea:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        transform: translateY(-2px);
    }
    
    form input:hover, form textarea:hover {
        border-color: #6b7280;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Input validation styles */
    .input-valid {
        border-color: #10b981 !important;
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
    }
    
    .input-invalid {
        border-color: #ef4444 !important;
        box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
    }
    
    .validation-message {
        font-size: 12px;
        margin-top: 4px;
        transition: all 0.3s ease;
    }
    
    .validation-message.valid {
        color: #10b981;
    }
    
    .validation-message.invalid {
        color: #ef4444;
    }
    
    form button {
        background: #8A3B12;
        color: white;
        padding: 18px;
        border: none;
        border-radius: 6px;
        width: 100%;
        font-weight: bold;
        font-size: 18px;
        margin-top: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    form button:hover:not(:disabled) {
        background: linear-gradient(135deg, #8A3B12, #a44519);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 25px rgba(138, 59, 18, 0.5);
    }
    
    form button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    form button:hover::before {
        left: 100%;
    }
    
    form button:disabled {
        background: #4b5563;
        cursor: not-allowed;
        transform: none;
        opacity: 0.7;
    }
    
    /* Captcha Styling */
    .captcha-container {
        position: relative;
        width: 100%;
        height: 60px;
        background-color: #1a202c;
        border-radius: 8px;
        margin-top: 20px;
        display: flex;
        align-items: center;
        padding: 0 10px;
        border: 2px dashed #4a5568;
        transition: all 0.3s ease;
    }
    
    .captcha-container:hover {
        border-color: #6b7280;
    }
    
    .captcha-container.solved {
        border-color: #10b981;
        background-color: #213038;
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    }
    
    .draggable-moon {
        position: absolute;
        cursor: grab;
        transition: all 0.3s ease;
        width: 40px;
        height: 40px;
        top: 50%;
        left: 2px;
        transform: translateY(-50%);
        font-size: 32px;
    }
    
    .draggable-moon:hover {
        transform: translateY(-50%) scale(1.1);
        filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    }
    
    .draggable-moon:active {
        cursor: grabbing;
        transform: translateY(-50%) scale(0.95);
    }
    
    .dropzone {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.5;
        transition: all 0.3s ease;
        font-size: 32px;
        border: 2px dashed #8b5cf6;
        border-radius: 50%;
    }
    
    .dropzone:hover {
        opacity: 0.8;
        transform: translateY(-50%) scale(1.1);
    }
    
    .dropzone-text {
        color: #9ca3af;
        font-size: 14px;
        font-weight: 500;
        position: absolute;
        left: 60px;
        pointer-events: none;
        transition: color 0.3s ease;
    }
    
    /* Message Box */
    .message-box {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px 25px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        min-width: 300px;
        text-align: center;
    }
    
    .message-box.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .message-box.success {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        border: 1px solid #10b981;
    }
    
    .message-box.error {
        background: linear-gradient(135deg, #ef4444, #dc2626);
        color: white;
        border: 1px solid #ef4444;
    }
    
    /* Honeypot field - hidden from users */
    .honeypot {
        position: absolute;
        left: -9999px;
        visibility: hidden;
    }
    
    /* Rate limiting indicator */
    .rate-limit-indicator {
        font-size: 12px;
        color: #9ca3af;
        margin-top: 5px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .rate-limit-indicator.show {
        opacity: 1;
    }
    
    /* Loading spinner */
    .spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .form-container {
        animation: fadeInUp 0.6s ease;
    }