nav-bar {
    width: 90vw;
    max-width: 1100px;
    height: 80px;
    top: 30px;
    padding: 0 10px;
    position: absolute;
    z-index: 99996;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--glass-bg-dark);
    border-radius: 25px;
    background-image: linear-gradient(90deg, var(--glass-bg), var(--glass-bg-dark), var(--glass-bg));
    backdrop-filter: blur(2px);
    user-select: none;
}

nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#brand {
    height: 80px;
    width: 200px;
    display: flex;
    align-items: center;
}

#logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
}

#name {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-col);
}

.navBtns {
    height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-col);
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navBtns:hover {
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.navCTA {
    width: 120px;
    height: 36px;
    margin-left: 5%;
    margin-right: 14px;
    border-radius: 10px;
    color: var(--text-col);
    background-color: var(--main-color);
    box-shadow: var(--basic-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.navCTA:hover {
    filter: brightness(1.1);
    transform: scale(1.025);
}

#hamburgerMenuBtn {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 8px;
    cursor: pointer;
}

.line {
    width: 80%;
    height: 4px;
    border-radius: 2px;
    background-color: hsl(0, 0%, 100%);
    box-shadow: var(--basic-shadow);
    transition: all 0.3s ease;
}

#mobileMenu {
    width: 90vw;
    height: 300px;
    padding-top: 80px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 99995;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 25px;
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    user-select: none;
}

#mobileMenu.active {
    display: flex;
    opacity: 1;
}

#mobileMenu .navBtns,
#mobileMenu .navCTA {
    width: 80%;
    margin: 0;
}

#mobileMenuOverlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99994;
    display: none;
    background-color: hsla(0, 0%, 0%, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#mobileMenuOverlay.active {
    display: block;
    opacity: 1;
}

#title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    color: var(--text-col);
}

#subTitle {
    max-width: 80%;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    color: var(--text-col-muted);
}

#videoWrapper {
    width: 85vw;
    max-width: 1000px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#videoWrapper.fullscreen {
    width: 100vw;
    height: 100vh;
    justify-content: center;
}

#videoOverlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 0;
    background-color: hsla(0, 0%, 0%, 0.6);
}

#servicesVideo {
    width: 100%;
    max-width: 1200px;
    margin-block: 25px;
    border-radius: 25px;
    border: 1px solid var(--glass-bg-dark);
    box-shadow: 0 4px 4px hsla(0, 0%, 0%, 0.6), ;
    display: block;
    z-index: 1;
}

#servicesVideo.fullscreen {
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
}

.videoCatcher {
    position: absolute;
    top: 0;
    width: 30%;
    height: calc(100% - 50px);
    z-index: 3;
    cursor: pointer;
}

.videoCatcher.left {
    left: 0;
}

.videoCatcher.right {
    right: 0;
}

#mainPlayBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: var(--text-col);
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

#mainPlayPause {
    font-size: 48px;
    color: var(--text-col);
    pointer-events: none;
}

#videoControls {
    width: 100%;
    max-width: 1200px;
    height: 50px;
    position: absolute;
    bottom: 25px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--glass-bg);
    backdrop-filter: blur(4px);
    border-radius: 0 0 25px 25px;
    user-select: none;
    z-index: 10;
}

#videoControls.fullscreen {
    max-width: 100vw;
    border-radius: 0;
}

#rightOfControls,
#leftOfControls {
    display: flex;
    align-items: center;
    gap: 12px;
}

#rightOfControls {
    justify-content: flex-start;
}

#leftOfControls {
    justify-content: flex-end;
}

.roundBtn,
#playPauseBtn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: background 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.roundBtn:hover,
#playPauseBtn:hover {
    background: var(--glass-bg-dark);
}

#playPauseBtn i,
.roundBtn i {
    font-size: 16px;
    color: var(--text-col);
}

#videoTime {
    font-size: 14px;
    color: var(--text-col);
    white-space: nowrap;
}

#volumeBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

#muteIcon {
    font-size: 16px;
    color: var(--text-col);
    cursor: pointer;
}

#volumeSlider {
    width: 60px;
    height: 4px;
    cursor: pointer;
    appearance: none;
    background: var(--glass-bg-dark);
    border-radius: 2px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-col);
    cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-col);
    cursor: pointer;
    border: none;
}

#fullscreenBtn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-col);
    background-color: transparent;
    transition: background 0.3s ease;
    cursor: pointer;
    padding: 0;
}

#fullscreenBtn:hover {
    background: var(--glass-bg-dark);
}

#formHolder {
    width: 100vw;
    height: 600px;
    min-height: calc(100vh - 120px);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#formTitle {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    color: var(--text-col);
    margin-bottom: 10px;
}

#formTitle b {
    color: var(--text-col);
}

#formSubTitle {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: var(--text-col-muted);
    margin-bottom: 20px;
}

#contactForm {
    width: 85vw;
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transform: translateY(-80px);
}

#contactForm input,
#contactForm textarea {
    width: 80%;
    max-width: 600px;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid var(--glass-bg-dark);
    border-radius: 10px;
    box-shadow: var(--basic-shadow);
    color: var(--text-col);
    background-color: var(--glass-bg);
    backdrop-filter: blur(4px);
    transition-duration: 0.2s;
    outline: none;
    resize: none;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: var(--text-col-muted);
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 8px var(--main-color);
}

#submitBtn {
    width: 180px;
    height: 40px;
    padding: 0 8px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    color: var(--text-col);
    background-color: var(--main-color);
    box-shadow: var(--basic-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-message {
    width: 300px;
    height: 55px;
    position: fixed;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border: 1px solid var(--glass-bg-dark);
    border-radius: 15px;
    color: var(--text-col);
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes popup {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    20% {
        bottom: 30px;
        opacity: 1;
    }
    100% {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes popdown {
    0% {
        bottom: 30px;
        opacity: 1;
    }
    100% {
        bottom: -50px;
        opacity: 0;
    }
}

#footerBrand {
    width: 100vw;
    max-width: 1100px;
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(2px);
}

#footerLogo {
    width: 70px;
    height: 70px;
    cursor: pointer;
}

#footerText {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-col);
}