@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.5) contrast(1.1);

}

.contact-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 5vw, 100px);
    width: 100%;
    padding: 160px clamp(40px, 6vw, 120px) 100px;
    box-sizing: border-box;
    min-height: 100vh;
}

/* LEFT */
.contact-left {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 700px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24.5px);
    border-radius: 20px;
    padding: clamp(32px, 3.5vw, 60px);
    box-sizing: border-box;
    justify-content: center;
}
.contact-title {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.8);
}

.contact-desc {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 26px;
    margin: 0;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-list li div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-family: 'Michroma', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.contact-info-value {
    font-family: 'Clash Display', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.4;
}

.contact-info-value:hover {
    color: #ffffff;
}

/* RIGHT: Form */
.contact-right {
    flex-shrink: 0;
    width: clamp(460px, 36vw, 640px);
}

.contact-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24.5px);
    border-radius: 20px;
    padding: 50px;
    box-sizing: border-box;
    min-height: 700px;
    justify-content: center;
}

.contact-form-title {
    font-family: 'Michroma', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.contact-form-subtitle {
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-form-row {
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form-group.full {
    width: 100%;
}

.contact-form-group input,
.contact-form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    height: 52px;
    transition: border 0.3s ease;
}

.contact-form-group textarea {
    height: 150px;
    resize: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #ffffff;
}

.contact-btn-send {
    width: 100%;
    height: 54px;
    background: #004882;
    font-family: 'Clash Display', sans-serif;
    font-size: 16px;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0px 4px 24px rgba(0, 72, 130, 0.5);
}

.contact-btn-send:hover {
    background: #003366;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-inner {
        flex-direction: column;
        padding: 120px 40px 80px;
        min-height: auto;
    }

    .contact-left {
        width: 100%;
        max-width: 100%;
        min-height: auto;
    }

    .contact-right {
        width: 100%;
    }

    .contact-form-wrap {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .contact-inner {
        padding: 100px 24px 60px;
        gap: 40px;
    }

    .contact-form-row {
        flex-direction: column;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .contact-left {
        width: 100%;
        padding: 32px;
        min-height: auto;
    }
}