:root {
    --accent: #8b5cf6;
    --dark-void: #020617;
    --card-bg: rgba(15, 23, 42, 0.8);
}

.contact-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'Segoe UI', Roboto, sans-serif;
}
.desc{
   font-size: 12px;
   margin-bottom: 20px;
}

/* Background Blobs */
.glow-bg-elements .blob-1 {
    position: absolute; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    top: -150px; left: -150px; z-index: 0;
}
.glow-bg-elements .blob-2 {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    bottom: -200px; right: -150px; z-index: 0;
}

.contact-card-v2 {
    width: 100%;
    max-width: 1050px;
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    position: relative;
    z-index: 1;
}

.card-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; }

/* Side Info Area */
.side-info {
    background: rgba(139, 92, 246, 0.03);
    padding: 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-header { display: flex; gap: 8px; margin-bottom: 35px; align-items: center; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.terminal-title { font-family: 'Courier New', monospace; font-size: 11px; color: #64748b; margin-left: 10px; letter-spacing: 1px; }

.info-content h3 { font-size: 26px; margin-bottom: 10px; font-weight: 800; letter-spacing: -0.5px; }

.contact-list { display: flex; flex-direction: column; gap: 18px; }
.item { display: flex; gap: 15px; align-items: center; transition: 0.3s; }
.item:hover { transform: translateX(5px); }

.icon-box {
    width: 38px; height: 38px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; font-size: 16px; border: 1px solid rgba(255,255,255,0.05);
}

.item-text small { color: var(--accent); font-family: monospace; font-weight: bold; font-size: 10px; display: block; margin-bottom: 1px; }
.item-text p, .item-text a { font-size: 13.5px; color: #cbd5e1; text-decoration: none; }

/* Form Area & Alerts */
.side-form { padding: 50px; background: rgba(0,0,0,0.1); }
.form-title h2 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.form-title p { color: #64748b; font-size: 14px; margin-bottom: 30px; }

.messages-wrapper { margin-bottom: 25px; }
.cyber-alert {
    padding: 12px 18px; border-radius: 10px; font-size: 13px;
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
    border: 1px solid transparent; animation: slideDown 0.4s ease;
}
.cyber-alert.success { background: rgba(34, 197, 94, 0.1); color: #4ade80; border-color: rgba(34, 197, 94, 0.2); }
.cyber-alert.error { background: rgba(239, 68, 68, 0.1); color: #f87171; border-color: rgba(239, 68, 68, 0.2); }

@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Inputs */
.input-container { position: relative; margin-bottom: 25px; }
.input-container input, .input-container textarea {
    width: 100%; padding: 16px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    color: #fff; font-size: 14px; outline: none; transition: 0.3s;
}

.input-container label {
    position: absolute; left: 16px; top: 16px; color: #64748b;
    pointer-events: none; transition: 0.3s ease;
}

/* Floating Label Logic - Fixes padding and background */
.input-container input:focus ~ label, 
.input-container input:not(:placeholder-shown) ~ label,
.input-container textarea:focus ~ label, 
.input-container textarea:not(:placeholder-shown) ~ label {
    top: -10px; left: 12px; font-size: 11px; color: var(--accent); 
    font-weight: 800; background: #0f172a; padding: 0 8px; z-index: 1;
}

.input-container textarea { height: 110px; resize: none; }

/* Neon Button */
.neon-btn {
    width: 100%; padding: 18px; background: var(--accent);
    color: white; border: none; border-radius: 12px;
    font-weight: 800; font-size: 15px; cursor: pointer;
    transition: 0.3s ease; box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}
.neon-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4); }

/* Social */
.social-nav { display: flex; gap: 12px; margin-top: 35px; }
.social-btn { padding: 10px; background: rgba(255,255,255,0.05); border-radius: 12px; transition: 0.3s; }
.social-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.social-btn img { width: 28px; height: 28px; }

@media (max-width: 850px) {
    .card-grid { grid-template-columns: 1fr; }
    .side-info { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 30px; }
    .side-form { padding: 35px; }
}