/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    height: 15vh;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.left img {
    width: 150px;
    height: auto;
    display: block;
}

/* Menu */
.right ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.right ul li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.right ul li a:hover {
    color: #e30a0a;
    border-bottom: 2px solid #e30a0a;
    font-weight: bold;
}


/* ================= BANNER ================= */
.container {
    margin-top: 80px;
}

.ban {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.ban img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ban h1 {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 60px;
}


/* ================= LAYOUT ================= */


.contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

/* ================= CONTACT LEFT ================= */
.contact-section {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon,
.icon1 {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon1 {
    width: 100px;
}

.icon i,
.icon1 i {
    font-size: 18px;
    color: #333;
}

.content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* MAP */
.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 20px;
    border-radius: 10px;
}

/* ================= FORM ================= */
form {
    flex: 2;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
}

.full-width {
    width: 100%;
    margin-bottom: 15px;
}

textarea {
    resize: none;
}

.btn-submit {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    margin-top: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-submit:hover {
    background: #0056b3;
}

/* ================= FOOTER ================= */
footer iframe {
    width: 100%;
    border: none;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    form {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .nav {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .right ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .ban {
        height: 220px;
    }

    .ban h1 {
        font-size: 32px;
    }

    .row {
        flex-direction: column;
    }

    form {
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .left img {
        width: 110px;
    }

    .ban h1 {
        font-size: 26px;
        margin-left: -40px;
        margin-top: -10px;
    }

    .btn-submit {
        width: 100%;
    }
}

.back-btn button {

    padding: 10px 20px;
    font-size: 18px;
    border: none;
    background-color: #0e0e0f;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-left:1120px;
    margin-bottom: 10PX;
    margin-top: 50PX;


}

.back-btn button:hover {
    background-color: red;
}