/* BACKGROUND */
.contact-hero {
    background: linear-gradient(135deg, #08121c, #0c1b2a);
    padding: 100px 0;
    color: white;
}

/* LAYOUT */
.hero-wrap {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

/* LEFT */
.hero-left {
    max-width: 500px;
}

.hero-left h1 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-left p {
    color: #aab4c3;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 10px;
    color: #d1d9e6;
}


/* FORM CARD */
.form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    padding: 40px;
    border-radius: 14px;
    width: 525px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-card h3 {
    margin-bottom: 25px;
    font-weight: 500;
}

/* INPUT BOX */
.input-box {
    position: relative;
    margin-bottom: 22px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    outline: none;
}

.input-box textarea {
    resize: none;
    height: 100px;
}

/* FLOATING LABEL */
.input-box label {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
    pointer-events: none;
}

/* FLOAT EFFECT */
.input-box input:focus+label,
.input-box input:valid+label,
.input-box textarea:focus+label,
.input-box textarea:valid+label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    background: #0c1b2a;
    padding: 0 5px;
    color: white;
}

/* FILE INPUT */
.file-box input {
    opacity: 0;
    position: absolute;
}

.file-box label {
    position: static;
    display: block;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

.file-box label:hover {
    border-color: #f5b942;
    color: #f5b942;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: white;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 185, 66, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }

    .contact-hero {
        padding: 100px 0 40px 0;
    }

    .contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .contact-hero {
        padding: 100px 0 40px 0;
    }
    .hero-right{
        width: 100%;
    }
    .form-card{
        width: 100%;
        padding: 30px 15px;
    }
}