.contact-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: white;
    background: linear-gradient(90deg, #0b2c6a, #1f79b8, #0b2c6a);
    overflow: hidden;
}

.glow-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, transparent, #7fdcff, transparent);
    box-shadow: 0 0 30px #4ecbff, 0 0 60px #4ecbff;
}

.glow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, transparent, #7fdcff, transparent);
    box-shadow: 0 0 30px #4ecbff, 0 0 60px #4ecbff;
}

.contact-content {
    position: relative;
    /* z-index: 2; */
}

.contact-content h2 {
    font-size: 50px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.input-glow {
    width: 220px;
    height: 40px;
    margin: -11px auto 18px;
    border-radius: 40px;
    background: linear-gradient(180deg, #ffffff, #cfd8ff);
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(120, 200, 255, 0.9),
        inset 0 3px 8px rgba(255, 255, 255, 0.9);
}

.contact-content p {
    max-width: 480px;
    margin: auto;
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
}

/* form area */
.contact-wrapper {
    padding: 80px 10%;
    color: white;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.contact-left,
.contact-right {
    width: 50%;
}

/* LEFT SIDE */
.contact-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-left p {
    color: #b9c1e3;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.icon {
   
    padding: 10px;
    border-radius: 8px;
    font-size: 35px;
    min-width: 40px;
    text-align: center;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #b9c1e3;
}

/* RIGHT SIDE */
.contact-right h1 {
    margin-bottom: 30px;
    font-size: 42px;
    line-height: 1.2;
}

form {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.form-row {
    display: flex;
    gap: 20px;
}

input,
textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #6b74a6;
    padding: 12px 5px;
    color: white;
    width: 100%;
    outline: none;
    font-size: 15px;
}

input::placeholder,
textarea::placeholder {
    color: #a9b3db;
}

textarea {
    height: 100px;
    resize: none;
}

button {
    width: 140px;
    padding: 12px;
    border: none;
    background: #ffffff;
    color: black;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

/* popup */
.popup-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0f172a;
    border: 1px solid #00eaff;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.6);
    border-radius: 8px;
    padding: 15px 25px;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
    max-width: calc(100% - 30px);
}

.popup-content p {
    color: #00eaff;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .contact-section {
        padding: 70px 20px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

    .contact-content p {
        font-size: 16px;
        max-width: 560px;
    }

    .contact-wrapper {
        padding: 60px 6%;
    }

    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left h1,
    .contact-right h1 {
        font-size: 38px;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-section {
        padding: 55px 15px;
    }

    .contact-content h2 {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .input-glow {
        width: 160px;
        height: 32px;
        margin: -6px auto 16px;
    }

    .contact-content p {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.6;
        padding: 0 6px;
    }

    .contact-wrapper {
        padding: 45px 15px;
    }

    .contact-container {
        gap: 40px;
    }

    .contact-left h1,
    .contact-right h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .contact-left p {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .info-box {
        padding: 14px;
        border-radius: 12px;
    }

    .info-box h4 {
        font-size: 16px;
    }

    .info-box p {
        font-size: 13px;
    }

    .form-row {
        flex-direction: column;
        gap: 24px;
    }

    form {
        gap: 24px;
    }

    input,
    textarea {
        font-size: 14px;
        padding: 10px 4px;
    }

    textarea {
        height: 90px;
    }

    button {
        width: 100%;
        max-width: 180px;
    }

    .popup-modal {
        top: 15px;
        right: 15px;
        left: 15px;
        padding: 14px 16px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .contact-content h2 {
        font-size: 24px;
    }

    .contact-left h1,
    .contact-right h1 {
        font-size: 24px;
    }

    .contact-content p,
    .contact-left p {
        font-size: 13px;
    }

    .icon {
        font-size: 40px;
        min-width: 36px;
        padding: 8px;
    }

    button {
        max-width: 100%;
    }
}