@import url('navbar-responsive.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    z-index: 2;
}

.hero-content {
    position: relative;

    z-index: 3;

    text-align: center;

    color: white;
}

.hero-content h1 {
    font-size: 65px;
    font-weight: 700;

    margin-bottom: 15px;
}

.hero-content p {
    font-size: 25px;
}

.hero-content p span {
    font-weight: 700;
    text-decoration: underline;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    width: 100%;
    background: #e7ebed;

    position: relative;
    z-index: 100;
}

.navbar-container {
    width: 88%;
    max-width: 1500px;
    min-height: 330px;

    margin: auto;

    display: flex;
    align-items: flex-start;
}

.header-logo {
    width: 195px;

    margin-top: 35px;

    flex-shrink: 0;
}

.header-logo img {
    width: 100%;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;

    gap: 21px;

    margin-left: 70px;
    margin-top: 125px;

    white-space: nowrap;
}

.main-nav > a {
    color: #111;
    text-decoration: none;

    font-size: 21px;
    font-weight: 700;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: #b32020;
}


/* SERVICES */

.services-dropdown {
    position: relative;
}

.services-dropdown button {
    border: none;
    background: transparent;

    font-size: 21px;
    font-weight: 700;

    cursor: pointer;
}

#servicesButton {
    display: flex;
    align-items: center;
    gap: 8px;
}

#servicesButton i {
    font-size: 12px;
}

.services-menu {
    position: absolute;

    z-index: 9999;

    top: 35px;
    left: 0;

    width: 240px;

    background: white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

    border-radius: 8px;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition: .2s;
}

.services-menu.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.services-menu a {
    display: block;

    padding: 15px 18px;

    color: #111;
    text-decoration: none;

    font-size: 16px;
}

.services-menu a:hover {
    background: #b32020;
    color: white;
}





/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
    width: 100%;

    background: #f4f5f5;

    padding: 90px 8%;
}

.contact-container {
    max-width: 1350px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 80px;

    align-items: start;
}


/* LEFT */

.contact-details {
    padding-top: 15px;
}

.contact-title > span {
    display: inline-block;

    color: #e00000;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.contact-title h2 {
    font-size: 45px;

    line-height: 1.15;

    margin-bottom: 20px;

    color: #111;
}

.contact-title h2 strong {
    color: #e00000;
}

.contact-title p {
    color: #666;

    font-size: 17px;

    line-height: 1.8;

    max-width: 560px;

    margin-bottom: 40px;
}


/* CONTACT INFO */

.contact-info-box {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 30px;
}

.contact-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 50%;

    background: #111;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.contact-info-box h3 {
    font-size: 19px;

    margin-bottom: 7px;

    color: #111;
}

.contact-info-box p {
    color: #666;

    font-size: 16px;

    line-height: 1.6;
}

.contact-info-box a {
    color: #666;

    text-decoration: none;
}

.contact-info-box a:hover {
    color: #e00000;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-box {
    background: #ffffff;

    padding: 45px;

    border-radius: 5px;

    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
}

.contact-form-box h2 {
    font-size: 29px;

    margin-bottom: 30px;

    color: #111;
}

.form-row {
    display: flex;

    gap: 25px;

    margin-bottom: 22px;
}

.form-group {
    flex: 1;

    text-align: left;

    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    font-size: 15px;

    font-weight: 700;

    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid #d4d7d9;

    background: #fafafa;

    outline: none;

    padding: 15px 17px;

    font-size: 16px;

    font-family: Arial, Helvetica, sans-serif;

    transition: .2s;
}

.form-group input {
    height: 52px;
}

.form-group textarea {
    min-height: 135px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #111;

    background: #fff;
}


/* SERVICES */

.service-selection {
    text-align: left;

    margin: 5px 0 30px;
}

.service-selection h3 {
    font-size: 16px;

    margin-bottom: 15px;

    color: #333;
}

.service-selection label {
    display: block;

    margin-bottom: 12px;

    color: #666;

    font-size: 15px;

    cursor: pointer;
}

.service-selection input {
    margin-right: 8px;
}


/* BUTTON */

.send-button {
    width: 100%;

    min-height: 54px;

    border: none;

    border-radius: 30px;

    background: #000;

    color: #fff;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;
}

.send-button i {
    margin-left: 10px;
}

.send-button:hover {
    background: #e00000;

    transform: translateY(-2px);
}


/* =====================================================
   MAP
===================================================== */

.map-section {
    width: 100%;

    background: #fff;

    padding: 80px 8%;
}

.map-heading {
    max-width: 1350px;

    margin: 0 auto 30px;
}

.map-heading span {
    color: #e00000;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;
}

.map-heading h2 {
    font-size: 38px;

    margin-top: 10px;
}

.map-heading h2 strong {
    color: #e00000;
}

.map-container {
    max-width: 1350px;

    height: 500px;

    margin: auto;

    overflow: hidden;

    border-radius: 5px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.map-container iframe {
    width: 100%;

    height: 100%;

    display: block;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #293258;

    color: #ffffff;

    width: 100%;

    margin-top: 0;
}

.footer-container {
    max-width: 1200px;

    margin: auto;

    padding: 55px 30px 40px;

    display: grid;

    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;

    gap: 55px;
}

.footer-brand {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-logo {
    width: 180px;

    max-width: 100%;

    height: auto;

    margin-bottom: 25px;
}

.footer-column h3 {
    font-size: 21px;

    margin: 5px 0 25px;

    font-weight: 700;
}

.footer-column h3 i {
    color: #b85b3e;

    margin-right: 10px;
}

.footer-column > a {
    display: block;

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;

    font-weight: 600;

    margin-bottom: 16px;

    transition: .2s;
}

.footer-column > a:hover {
    color: #ff4b3e;

    padding-left: 5px;
}

.newsletter p {
    font-size: 17px;

    margin-bottom: 25px;
}

.newsletter form {
    width: 100%;
}

.newsletter input {
    width: 100%;

    height: 50px;

    border: none;

    outline: none;

    border-radius: 30px;

    padding: 0 20px;

    font-size: 16px;

    margin-bottom: 12px;
}

.newsletter button {
    width: 100%;

    height: 50px;

    border: none;

    border-radius: 30px;

    background: #e00000;

    color: #fff;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;
}

.social-icons {
    display: flex;

    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;

    background: #fff;

    color: #111;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 18px;

    transition: .3s;
}

.social-icons a:hover {
    background: #e00000;

    color: #fff;

    transform: translateY(-3px);
}

.footer-bottom {
    background: #000;

    color: #fff;

    text-align: center;

    padding: 18px 15px;

    font-size: 17px;

    font-weight: 500;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1000px) {

    .main-nav {
        gap: 12px;

        margin-left: 30px;
    }

    .main-nav > a,
    .services-dropdown button {
        font-size: 16px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-title h2 {
        font-size: 38px;
    }

}


@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }


    .navbar-container {
        width: 95%;

        min-height: auto;

        padding-bottom: 30px;

        flex-direction: column;

        align-items: center;
    }

    .header-logo {
        width: 170px;

        margin-top: 25px;
    }

    .main-nav {
        margin: 30px 0 0;

        flex-wrap: wrap;

        justify-content: center;

        white-space: normal;
    }




    .contact-page {
        padding: 55px 20px;
    }

    .contact-container {
        display: block;
    }

    .contact-details {
        margin-bottom: 45px;
    }

    .contact-title h2 {
        font-size: 32px;
    }

    .contact-form-box {
        padding: 28px 20px;
    }

    .form-row {
        flex-direction: column;

        gap: 0;
    }


    .map-section {
        padding: 55px 20px;
    }

    .map-heading h2 {
        font-size: 30px;
    }

    .map-container {
        height: 400px;
    }


    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 40px 25px;
    }

    .footer-brand {
        align-items: center;

        text-align: center;
    }

    .footer-logo {
        width: 230px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-bottom {
        font-size: 14px;
    }

}