        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-card {
            background: #1a1a3a;
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid #2e2e5e;
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-card i {
            font-size: 1.5rem;
            color: #64ffda;
            margin-bottom: 1rem;
        }

        .info-card h4 {
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .info-card p {
            color: #8892b0;
            font-size: 0.9rem;
        }

        .contact-form-card {
            background: #1a1a3a;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #2e2e5e;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccd6f6;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: #0f0f23;
            border: 1px solid #2e2e5e;
            border-radius: 8px;
            color: #fff;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #64ffda;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #64ffda 0%, #4facfe 100%);
            border: none;
            border-radius: 8px;
            color: #0a192f;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            opacity: 0.9;
        }

        .submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .status-msg {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            display: none;
        }

        .status-msg.success {
            display: block;
            background: rgba(100, 255, 218, 0.1);
            color: #64ffda;
            border: 1px solid #64ffda;
        }

        .status-msg.error {
            display: block;
            background: rgba(255, 107, 107, 0.1);
            color: #ff6b6b;
            border: 1px solid #ff6b6b;
        }

        /* <!-- Smooth Cursor Trail --> */

        .cursor-trail-container {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 999999;
        }

        .trail-dot {
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, #64ffda 0%, #00b4d8 100%);
            box-shadow:
                0 0 15px rgba(100, 255, 218, 0.8),
                0 0 30px rgba(100, 255, 218, 0.4);
            transform: translate(-50%, -50%);
            will-change: transform, opacity;
            mix-blend-mode: screen;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .trail-dot:first-child {
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #64ffda 0%, #00b4d8 100%);
            box-shadow:
                0 0 20px rgba(100, 255, 218, 0.9),
                0 0 40px rgba(100, 255, 218, 0.6);
            z-index: 2;
        }

        .cursor-clicking {
            transform: translate(-50%, -50%) scale(1.5);
            background: linear-gradient(135deg, #ff6b9d 0%, #ffcc00 100%) !important;
            box-shadow:
                0 0 25px rgba(255, 107, 157, 0.9),
                0 0 50px rgba(255, 107, 157, 0.6) !important;
        }

        .cursor-hovering {
            transform: translate(-50%, -50%) scale(1.3);
            background: linear-gradient(135deg, #00b4d8 0%, #64ffda 100%) !important;
        }
        /* =========================
   DARK LIGHT MODE TOGGLE
========================= */

.theme-toggle {
    margin-left: 20px;
    font-size: 18px;
    cursor: pointer;
    background: linear-gradient(135deg, #6366f1, #64ffda);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(15deg) scale(1.1);
}

/* =========================
   LIGHT MODE STYLES
========================= */

body.light-mode {
    background: #f8fafc;
    color: #111827;
}

body.light-mode .header,
body.light-mode .footer {
    background: #ffffff;
}

body.light-mode .contact-form-card,
body.light-mode .info-card {
    background: #ffffff;
    color: #111827;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

body.light-mode input,
body.light-mode textarea {
    background: #f1f5f9;
    color: #111827;
    border: 1px solid #d1d5db;
}

body.light-mode .submit-btn {
    background: linear-gradient(135deg, #6366f1, #64ffda);
    color: #fff;
}
