@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
}

.hero-text {
    max-width: 700px;
}

.hero-text h1 {
    color: white;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-text p {
    color: #e5e7eb;
    margin-top: 25px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: #062958;
    color: white;
}

.btn-primary:hover {
    background: #0b3d80;
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255,255,255,.1);
    color: white;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.2);
}

.bottom-fade {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to top,
        #000,
        transparent
    );
}

/* FLOATING CHAT */

.floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    background: #062958;
    color: white;
    cursor: pointer;
    font-size: 24px;
    z-index: 999;
}

.chat-window {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 380px;
    max-width: 95%;
    height: 550px;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,.2);
    border-radius: 15px;
    display: none;
    overflow: hidden;
    z-index: 998;
}

.chat-window.active {
    display: block;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

.footer {
    background: linear-gradient(
        to bottom,
        #062958,
        #041c3d
    );
    color: white;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 70px 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-wrap h2 {
    color: white;
    font-size: 24px;
    line-height: 1.3;
}

.footer-logo-wrap h2 span {
    display: block;
    color: #F01E00;
}

.footer-description {
    margin-top: 25px;
    color: #cfcfcf;
    line-height: 1.9;
    max-width: 700px;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.btn-primary {
    background: #F01E00;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #ff4f4f;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.3);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
}

.btn-secondary:hover {
    background: white;
    color: #062958;
}

.footer h3 {
    color: #F01E00;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a,
.footer-bottom-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #cfcfcf;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-decoration: none;

    transition: .3s;
}

.social-icons a:hover {
    background: #F01E00;
    color: #062958;
    transform: scale(1.1);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin: 50px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    color: #999;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

/* Tablet */

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* Mobile */

@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo-wrap h2 {
        font-size: 18px;
    }

}