/* ==========================================================================
   CONTACT SECTION: MOODY TEAL GLOW
   ========================================================================== */

.contact-section {
    position: relative;
    padding: 12rem 5%;
    background: #000;
    overflow: hidden;
}

/* BACKGROUND TEAL GLOW */
.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 200, 200, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
    z-index: 2;
}

/* LEFT SIDE: INFO CONTENT */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: #fff;
    letter-spacing: 2px;
}

.contact-info h2 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    max-width: 450px;
    line-height: 1.6;
}

/* INFO CARDS */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 200, 200, 0.3);
    transform: translateX(10px);
}

.info-card-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: grid;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-text span {
    display: block;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-text h4 {
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: grid;
    place-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.info-card:hover .card-arrow {
    background: var(--color-primary);
    color: #000;
}

/* RIGHT SIDE: MINIMALIST FORM */
.contact-form-glass {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.form-field {
    margin-bottom: 2rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(0, 200, 200, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.form-field label {
    display: block;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

textarea {
    min-height: 200px;
    resize: none;
}

.submit-btn-glow {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 1.2rem;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn-glow:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 200, 200, 0.2);
}

/* RESPONSIVENESS */
@media (max-width: 1200px) {
    .contact-container {
        gap: 4rem;
    }

    .contact-info h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .contact-info {
        text-align: center;
        align-items: center;
    }

    .contact-info p {
        margin: 0 auto;
    }

    .info-cards {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 8rem 5%;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .contact-form-glass {
        padding: 2rem;
    }
}