/* =========================================
   👤 ABOUT PAGE STYLING
========================================= */
.about-main {
    padding-top: 140px;
    padding-bottom: 120px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left: Profile Side */
.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.role-tag {
    font-family: 'JetBrains Mono', monospace;
    color: #60a5fa;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.profile-bio {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.profile-bio p {
    margin-bottom: 16px;
}

.tech-arsenal h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.skill-pill:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: #00f2fe;
    color: #00f2fe;
    transform: translateY(-2px);
}

/* Right: Contact Form Side */
.contact-glass-card {
    background: rgba(9, 13, 22, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-glass-card h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-glass-card p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Floating Label Form Elements */
.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    position: relative;
}

.cyber-form input,
.cyber-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.cyber-form textarea {
    resize: none;
}

.cyber-form input:focus,
.cyber-form textarea:focus {
    border-color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.cyber-form label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
    transition: 0.3s;
}

/* The Floating Magic */
.cyber-form input:focus~label,
.cyber-form input:not(:placeholder-shown)~label,
.cyber-form textarea:focus~label,
.cyber-form textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    background: #0d121f;
    /* Matches background to hide line behind */
    padding: 0 6px;
    color: #00f2fe;
    font-weight: 600;
}

.submit-btn {
    background: transparent;
    color: #00f2fe;
    border: 1px solid #00f2fe;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #00f2fe;
    color: #050505;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 860px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .profile-header {
        text-align: center;
    }
}