* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #031514;
    color: white;
}


/* HEADER */

.navbar {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 6%;
    background: #031010;
    border-bottom: 1px solid #12433f;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #00e6d0;
}

.logo small {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 3px;
}

.navbar nav {
    display: flex;
    gap: 35px;
    margin-left: 90px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 25px 0;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #00e6d0;
    border-bottom: 3px solid #00e6d0;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.search {
    width: 280px;
    height: 38px;
    border: 1px solid #17645d;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: white;
}

.search input::placeholder {
    color: #888;
}

.search i {
    color: #00e6d0;
}

.nav-right a {
    color: #00e6d0;
    font-size: 21px;
    text-decoration: none;
}


/* BANNER */

.contact-banner {
    height: 400px;

    background-image:
    linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.15)),
    url("../image/welcome-background.png");

    background-size: cover;
    background-position: center;

    position: relative;
}

.banner-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.small-title {
    color: #00e6d0;
    letter-spacing: 4px;
    font-size: 11px;
    margin-bottom: 15px;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.banner-content h1 span {
    color: #00e6d0;
}

.banner-content p:last-child {
    color: #ddd;
    line-height: 1.6;
}


/* CONTACT AREA */

.contact-area {
    width: 88%;
    margin: -90px auto 0;
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
}


/* CONTACT INFORMATION */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-box {
    min-height: 85px;
    padding: 18px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: #061e1c;
    border: 1px solid #12615a;
    border-radius: 8px;
}

.info-box i {
    color: #00e6d0;
    font-size: 25px;
    width: 35px;
    text-align: center;
}

.info-box h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.info-box p {
    font-size: 13px;
}

.info-box small {
    color: #aaa;
    font-size: 11px;
}

.green {
    color: #00e6d0;
    margin-bottom: 4px;
}


/* MESSAGE BOX */

.message-box {
    background: #061e1c;
    border: 1px solid #12615a;
    border-radius: 8px;
    padding: 25px;
}

.message-box h2 {
    font-size: 23px;
    margin-bottom: 5px;
}

.message-box > p {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 20px;
}

.message-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message-box input,
.message-box textarea {
    width: 100%;
    background: #031514;
    border: 1px solid #12615a;
    border-radius: 6px;
    padding: 13px;
    color: white;
    outline: none;
}

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

.message-box input:focus,
.message-box textarea:focus {
    border-color: #00e6d0;
}

.message-box button {
    width: 190px;
    margin: 5px auto 0;

    padding: 11px;

    border: 2px solid #00e6d0;
    border-radius: 25px;

    background: transparent;
    color: white;

    cursor: pointer;
}

.message-box button:hover {
    background: #00e6d0;
    color: #031514;
}


/* LOWER SECTION */

.lower-section {
    width: 88%;
    margin: 30px auto 50px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/* MAP */

.map {
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #12615a;
    position: relative;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* OUR OFFICE BOX */

.map-info {
    position: absolute;
    left: 12px;
    bottom: 15px;

    width: 280px;
    min-height: 65px;

    padding: 12px 15px;

    background: rgba(3, 21, 20, 0.95);
    border: 1px solid #12615a;
    border-radius: 7px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.map-info i {
    color: #00e6d0;
    font-size: 22px;
}

.map-info h3 {
    font-size: 12px;
    margin-bottom: 4px;
}

.map-info p {
    font-size: 11px;
    color: #00e6d0;
    margin-bottom: 3px;
}

.map-info small {
    color: #aaa;
    font-size: 10px;
}


/* FAQ */

.faq h2 {
    font-size: 25px;
    margin-bottom: 7px;
}

.faq h2 span {
    color: #00e6d0;
}

.faq > p {
    color: #999;
    font-size: 12px;
    margin-bottom: 15px;
}

.question {
    height: 40px;
    border: 1px solid #12615a;
    border-radius: 6px;

    margin-bottom: 7px;
    padding: 11px 14px;

    font-size: 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question span {
    color: #00e6d0;
    font-size: 18px;
}


/* FOOTER */

footer {
    min-height: 100px;

    padding: 25px 7%;

    background: #02100f;

    border-top: 1px solid #12433f;

    display: flex;
    align-items: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-logo span {
    color: #00e6d0;
}

.footer-logo small {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 5px;
}

.social {
    margin-left: auto;
    display: flex;
    gap: 20px;
}

.social i {
    font-size: 18px;
}

.footer-right {
    margin-left: 40px;
    padding-left: 30px;
    border-left: 1px solid #12615a;
    color: #bbb;
    font-size: 12px;
}

.copyright {
    padding: 12px 7%;

    background: #010908;

    color: #999;

    font-size: 12px;

    display: flex;
    justify-content: space-between;
}


/* MOBILE */

@media (max-width: 900px) {

    .navbar nav {
        display: none;
    }

    .search {
        display: none;
    }

    .contact-area,
    .lower-section {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .contact-banner {
        height: 350px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .contact-area {
        margin-top: -50px;
    }

    .map {
        height: 340px;
    }

    .map-info {
        width: 250px;
        bottom: 15px;
    }

    footer,
    .copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social {
        margin-left: 0;
    }

    .footer-right {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

}