/* ================= RESET ================= */

body,
html {

    margin: 0;
    padding: 0;

    font-family: Arial, sans-serif;

    overflow-x: hidden;

}

* {
    box-sizing: border-box;
}

/* ================= NAVIGATION ================= */

.nav {

    position: absolute;

    width: 100%;

    top: 0;
    left: 0;

    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    padding: 20px 40px;

    z-index: 1000;

}

/* LOGO */

.nav-logo {

    height: 85px;

}

/* MENU */

.nav-links {

    display: flex;

    justify-content: center;

    gap: 25px;

}

.nav-links a {

    color: white;

    text-decoration: none;

    font-weight: 500;

    transition: 0.3s;

}

.nav-links a:hover {

    opacity: 0.8;

}

/* HAMBURGER */

.menu-toggle {

    display: none;

    font-size: 34px;

    color: white;

    cursor: pointer;

}

/* ================= HERO ================= */

.hero {

    position: relative;

    height: 100vh;

    overflow: hidden;

}

/* VIDEO */

.hero-video {

    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;

}

/* OVERLAY */

.hero-overlay {

    position: absolute;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);

}

/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

    color: white;

    text-align: center;

    top: 50%;

    transform: translateY(-50%);

    padding: 0 20px;

}

.hero-content h1 {

    font-size: 58px;

    margin-bottom: 15px;

}

.hero-content p {

    font-size: 20px;

}

/* ================= INNER HERO ================= */

.inner-hero {

    position: relative;

    height: 320px;

    overflow: hidden;

}

/* BACKGROUND IMAGE */

.inner-hero-bg {

    position: absolute;

    width: 100%;
    height: 100%;

    background: url('/assets/images/hero.jpg') center center/cover no-repeat;

}

/* OVERLAY */

.inner-hero::after {

    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.45);

}

/* TITLE */

.inner-hero-content {

    position: relative;

    z-index: 2;

    text-align: center;

    color: white;

    top: 55%;

    transform: translateY(-50%);

}

.inner-hero-content h1 {

    font-size: 52px;

    margin: 0;

}

/* ================= CONTENT ================= */

.content-section {

    padding: 70px 20px;

    background: #F8F5F2;

}

.content-container {

    max-width: 950px;

    margin: auto;

}

.content-container h1,
.content-container h2,
.content-container h3 {

    color: #111;

}

.content-container p {

    line-height: 1.7;

    color: #333;

}

/* ================= CONTENT IMAGES ================= */

.content-container img {

    max-width: 100%;

    height: auto;

    display: block;

    margin: 25px auto;

    border-radius: 8px;

}

/* ================= CONTENT VIDEOS ================= */

.content-container video {

    width: 100%;

    max-width: 900px;

    display: block;

    margin: 30px auto;

    border-radius: 10px;

}

/* ================= INQUIRY FORM ================= */

.inquiry-box {

    background: white;

    padding: 35px;

    margin-top: 50px;

    border-radius: 10px;

    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

}

.inquiry-box h2 {

    text-align: center;

    margin-bottom: 20px;

    color: #2E6F95;

}

/* INPUTS */

.inquiry-box input,
.inquiry-box textarea {

    width: 100%;

    padding: 14px;

    margin: 10px 0;

    border: 1px solid #ddd;

    border-radius: 6px;

    font-size: 15px;

}

/* TEXTAREA */

.inquiry-box textarea {

    height: 140px;

    resize: vertical;

}

/* BUTTON */

.inquiry-box button {

    width: 100%;

    padding: 14px;

    background: #2E6F95;

    color: white;

    border: none;

    border-radius: 6px;

    cursor: pointer;

    transition: 0.3s;

}

.inquiry-box button:hover {

    background: #1f4e6e;

}

/* ================= SUBMENU ================= */

.menu-item {

    position: relative;

}

/* SUBMENU BOX */

.submenu {

    position: absolute;

    top: 100%;
    left: 0;

    background: white;

    min-width: 200px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: 0.25s ease;

    z-index: 2000;

    border-radius: 6px;

    overflow: hidden;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

}

/* SHOW ON HOVER */

.menu-item:hover .submenu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

/* SUBMENU LINKS */

.submenu a {

    display: block;

    padding: 12px 15px;

    color: #222;

    text-decoration: none;

}

.submenu a:hover {

    background: #f5f5f5;

}

/* ================= FLOATING MESSENGER ================= */

.floating-messenger {

    position: fixed;

    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background: #0084FF;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    text-decoration: none;

    z-index: 99999;

    box-shadow: 0 4px 12px rgba(0,0,0,0.3);

    transition: 0.3s;

}

.floating-messenger:hover {

    transform: scale(1.1);

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    /* NAV */

    .nav {

        grid-template-columns: 1fr auto;

        padding: 15px 20px;

    }

    /* LOGO */

    .nav-logo {

        height: 70px;

    }

    /* HAMBURGER */

    .menu-toggle {

        display: block;

        z-index: 9999;

    }

    /* SLIDE MENU */

    .nav-links {

        position: fixed;

        top: 0;
        right: -100%;

        width: 280px;
        height: 100vh;

        background: rgba(15,25,35,0.98);

        flex-direction: column;

        align-items: flex-start;

        padding: 110px 30px;

        transition: 0.3s ease;

        z-index: 9998;

    }

    /* OPEN MENU */

    .nav-links.active {

        right: 0;

        display: flex;

    }

    /* LINKS */

    .nav-links a {

        color: white;

        font-size: 20px;

        width: 100%;

        padding: 12px 0;

    }

    /* SUBMENU */

    .submenu {

        position: static;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;

        background: transparent;

        box-shadow: none;

        min-width: 100%;

        padding-left: 15px;

    }

    .submenu.show {

        display: block;

    }

    .submenu a {

        color: #ccc;

        font-size: 16px;

        padding: 10px 0;

    }

    /* HERO */

    .hero-content h1 {

        font-size: 36px;

    }

    .hero-content p {

        font-size: 16px;

    }

    /* INNER HERO */

    .inner-hero {

        height: 250px;

    }

    .inner-hero-content {

        top: 65%;

    }

    .inner-hero-content h1 {

        font-size: 38px;

        padding: 0 20px;

    }

    /* CONTENT */

    .content-section {

        padding: 50px 20px;

    }

    .content-container {

        padding: 0 5px;

    }

    /* FORM */

    .inquiry-box {

        padding: 25px;

    }

    /* FLOATING MESSENGER */

    .floating-messenger {

        width: 55px;
        height: 55px;

        font-size: 24px;

        bottom: 15px;
        right: 15px;

    }

}