/* --- CONTACT SECTION (Above Footer) --- */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: #08080a; /* Slightly lighter than pure black */
    overflow: hidden;
}

/* Background Decoration */
.contact-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0, 194, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* LEFT SIDE: INFO */
.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.contact-info p {
    color: #a0a0a0;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: 0.3s;
}

.contact-method:hover {
    background: rgba(255,255,255,0.05);
    border-color: #00C2FF;
    transform: translateX(10px);
}

.method-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #FF2E63, #FF9933);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: white;
}

/* RIGHT SIDE: GLASS FORM */
.glass-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-left: 10px;
}

.glass-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
}

/* Focus Effect: Border Gradient */
.glass-input:focus {
    border-color: #00C2FF;
    box-shadow: 0 0 15px rgba(0, 194, 255, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FF2E63, #FF9933);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.4);
}

/* --- FOOTER STYLING --- */
.main-footer {
    background-color: #000000;
    padding: 80px 0 30px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Rainbow Top Border */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, #FF2E63, #FF9933, #00C2FF);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links li { margin-bottom: 15px; }

.footer-links a {
    color: #888;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i { font-size: 12px; color: #FF9933; }

/* Social Icons */
.social-flex { display: flex; gap: 15px; margin-top: 20px; }

.social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-btn:hover {
    background: #00C2FF;
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #555;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-links a { justify-content: center; }
    .social-flex { justify-content: center; }
    .contact-method { flex-direction: column; text-align: center; }
}