@charset "UTF-8";

.banner img {
    width: 100%;
    height: auto;
    display: block
}

.container {
    max-width: 98%;
    width: 100%;
    margin: 50px auto;
    padding: 0 15px;
    flex: 1
}

.page-title {
    text-align: center;
    margin-bottom: 45px
}

.page-title h1 {
    font-size: 34px;
    color: #111827;
    margin-bottom: 12px
}

.page-title p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}


.contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%
}

@media (min-width:768px) {
    .contact-wrap {
        flex-direction: row;
        gap: 35px
    }

    .contact-info {
        flex: 1.1
    }

    .contact-form {
        flex: 1.6
    }
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    width: 100%
}

.card h2 {
    font-size: 22px;
    color: #0066cc;
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f3f4f6
}

.info-item {
    font-size: 16px;
    margin-bottom: 24px;
    color: #374151
}

.info-item span {
    font-weight: 600;
    min-width: 85px;
    display: inline-block
}

.form-group {
    margin-bottom: 26px
}

.form-group label {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    color: #1f2937
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px
}

.form-group textarea {
    height: 200px;
    resize: none
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer
}



.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    padding: 22px 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    text-align: center;
    font-size: 16px;
    font-weight: 500
}

.popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1)
}

.popup.success {
    color: #065f46;
    border-left: 5px solid #10b981
}

.popup.error {
    color: #b91c1c;
    border-left: 5px solid #ef4444
}

@media (max-width:768px) {
    .popup {
        width: 90%
    }
}