* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: #dcdcdc;
    font-family: 'Poppins', sans-serif; 
}

.container {
    width: 94vw;
    margin: 2vw auto;
    background: #fff;
    border: 0.3vw solid #000;
}


.header {
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2vw 2vw;
}

.logo {
    height: 5vw;
}

.tag {
    font-family: 'Poppins', sans-serif;
    font-size: 2vw;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 0.06vw #aaa;
}

.banner_section {
    position: relative;
    width: 100%;
    height: 88vh;
    overflow: hidden;
    border-bottom: 0.3vw solid #000;
}

.bg_video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.164);
}

.hero_text {
    position: absolute;
    bottom: 2vw;
    left: 2vw;
    z-index: 2;
}

.hero_text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3vw;
    font-weight: 800;
    color: #0e0e0e;
}

.hero_text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 0.08vw #000000;
    margin-top: 0.3vw;
}

.info_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3vw;
    background: #000;
}

.info_box {
    padding: 3vw;
}

.info_box.left {
    background: #f2f2f2;
    color: #000;
}

.info_box.right {
    background: #000;
    color: #fff;
    border: 0.3vw solid #fff;
}

.info_box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8vw;
    font-weight: 800;
    margin-bottom: 1vw;
}

.info_box p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2vw;
    margin-bottom: 0.8vw;
}

.service {
    margin-bottom: 1.2vw;
}

.service h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4vw;
    font-weight: 700;
    margin-bottom: 0.2vw;
}



.contact_section {
    background: #000;
    padding: 3vw 3vw;
    display: flex;
    justify-content: center;
}

.contact_container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.contact_title {
    font-family: 'Poppins', sans-serif;
    font-size: 3vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 0.1vw #fff;
    margin-bottom: 1vw;
}

.contact_sub {
    margin-bottom: 0.5vw;
}

.contact_sub.strong {
    font-size: 1.2vw;
    font-weight: 500;
}

.contact_sub.light {
    font-size: 1.2vw;
    color: #aaa;
    margin-bottom: 2vw;
}

.form_wrapper {
    background: #dcdcdc;
    padding: 2vw;
    border: 0.3vw solid #000;
    width: 100%;
    max-width: 700px;
    margin: 2vw auto;
}
.form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw 3vw;
}

.input_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input_item label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    color: transparent;
    color: #000000;
    margin-bottom: 0.5vw;
    text-align: center;
}

.input_item input {
    border: none;
    border-bottom: 1px solid #aaa;
    background: transparent;
    padding: 6px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9vw;
    outline: none;
    width: 80%;
    text-align: center;
}

.input_item textarea {
    border: none;
    border-bottom: 1px solid #aaa;
    background: transparent;
    padding: 6px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9vw;
    outline: none;
    width: 80%;
    text-align: left;
    resize: vertical;
    color: #000;
}

.input_item.full_width {
    grid-column: 1 / -1;
}

.message_box {
    text-align: center;
    margin: 1vw 0 0.5vw;
}

.message_box p.success {
    color: #2ecc71;
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
}

.message_box p.error {
    color: #e74c3c;
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
}

.button_container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn_submit {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1vw;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn_submit:hover {
    background: #fff;
    color: #000;
}



.business_info {
    margin-top: 2.5vw;
    text-align: center;
}

.business_label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75vw;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1.5vw;
    margin-bottom: 1vw;
}

.business_links {
    display: flex;
    justify-content: center;
    gap: 3vw;
    flex-wrap: wrap;
}

.business_link {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9vw;
    color: #ccc;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.25s ease;
}

.business_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.business_link:hover {
    color: #fff;
}

.business_link:hover::after {
    width: 100%;
}

.bi_icon {
    font-size: 1vw;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.business_link:hover .bi_icon {
    opacity: 1;
}


@media (max-width: 996px) {
    .header{
        padding:3vw;
    }

    .tag{
    font-size: 4vw;
    }

    .logo {
        height: 12vw;
    }

    .banner_section {
        height: 80vh;
    }

    .hero_text {
        bottom: 4vw;
        left: 4vw;
    }

    .hero_text h1 {
        font-size: 6vw;
    }

    .hero_text h2 {
        font-size: 6vw;
        -webkit-text-stroke: 0.15vw #000000;
    }

    .info_section {
        grid-template-columns: 1fr;
        gap: 0.3vw;
    }

    .info_box {
        padding: 6vw;
    }

    .info_box h3 {
        font-size: 6vw;
        margin-bottom: 3vw;

    }

    .info_box p {
        font-size: 3.6vw;
        margin-bottom: 2vw;

    }

    .service h4 {
        font-size: 3vw;
    }

    .service p {
        font-size: 3.6vw;
    }
    .contact_section{
        padding: 6vw;
    }
    .contact_title {
        font-size: 6vw;
        margin-bottom: 3vw;
    }

    .contact_sub.strong {
        font-size: 3.6vw;
        margin-bottom: 3vw;

    }

    .contact_sub.light {
        font-size: 3.6vw;
        margin-bottom: 3vw;

    }

    .form_grid {
        grid-template-columns: 1fr;
    }

    .input_item label {
        font-size: 3vw;
    }

    .input_item input,
    .input_item textarea {
        font-size: 3.6vw;
        width: 100%;
    }

    .message_box p.success,
    .message_box p.error {
        font-size: 3.6vw;
    }

    .btn_submit {
        font-size: 3vw;
        padding: 12px 30px;
    }

    .business_info {
        margin-top: 6vw;
    }

    .business_label {
        font-size: 3vw;
        padding-top: 4vw;
        margin-bottom: 3vw;
    }

    .business_links {
        flex-direction: column;
        align-items: center;
        gap: 3vw;
    }

    .business_link {
        font-size: 3.6vw;
        gap: 2vw;
    }

    .bi_icon {
        font-size: 3.6vw;
    }

}