:root {
    --dark: #0b0d12;
    --dark-light: #151922;
    --primary: #ffb703;
    --white: #ffffff;
    --gray: #a4a7ae;
    --light-bg: #f5f6f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: "Outfit", sans-serif;
}

a {
    text-decoration: none;
}

.container {
    width: min(1150px, 90%);
    margin: auto;
}


/* NAVBAR */

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: black;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 22px;
    border-radius: 10px;
}

.logo span {
    display: block;
    font-weight: 800;
    font-size: 18px;
}

.logo small {
    font-size: 9px;
    color: var(--gray);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: white;
    font-size: 14px;
}

.nav-button {
    background: var(--primary);
    color: black !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
}

.menu-btn {
    display: none;
    font-size: 25px;
    background: transparent;
    border: none;
    color: white;
}


/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;

    background-image:
    url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=2000&q=80");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        90deg,
        rgba(5,7,10,.95),
        rgba(5,7,10,.65),
        rgba(5,7,10,.2)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 720px;
    color: white;
}

.hero-tag,
.section-tag {
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(50px, 8vw, 92px);
    line-height: 0.95;
    margin-bottom: 25px;
}

.hero h1 span,
h2 span {
    color: var(--primary);
}

.hero-description {
    max-width: 620px;
    line-height: 1.8;
    color: #d0d2d6;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    padding: 16px 25px;
    border-radius: 7px;
    display: inline-block;
    font-weight: 700;
}

.primary-btn {
    background: var(--primary);
    color: black;
    border: none;
    cursor: pointer;
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,.4);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 20px;
}

.hero-stats span {
    color: var(--gray);
    font-size: 12px;
}


/* SECTIONS */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.about-content h2,
.why h2,
.reservation-info h2,
.contact h2 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.section-heading p:last-child {
    color: #666;
    line-height: 1.7;
}


/* ABOUT */

.about {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
}

.about-content > p:not(.section-tag) {
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature {
    font-weight: 600;
}

.feature span {
    color: var(--primary);
    margin-right: 8px;
}


/* SERVICES */

.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.service-number {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 35px;
}

.service-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card a {
    color: black;
    font-weight: 700;
}


/* FLEET */

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fleet-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
}

.fleet-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.fleet-content {
    padding: 28px;
}

.fleet-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.fleet-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.fleet-content a {
    color: var(--dark);
    font-weight: 700;
}


/* WHY */

.why {
    background: var(--dark);
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.why-description {
    color: #b4b6bc;
    line-height: 1.8;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.why-item > span {
    color: var(--primary);
    font-weight: 800;
}

.why-item h3 {
    margin-bottom: 8px;
}

.why-item p {
    color: #a8abb2;
}


/* RESERVATION */

.reservation-section {
    background: var(--primary);
    padding: 100px 0;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: start;
}

.reservation-info p:not(.section-tag) {
    line-height: 1.8;
    color: #3b3b3b;
}

.reservation-contact {
    margin-top: 40px;
}

.reservation-contact div {
    margin-bottom: 25px;
}

.reservation-contact strong,
.reservation-contact span {
    display: block;
}

.reservation-contact strong {
    margin-bottom: 5px;
}

.reservation-contact span {
    color: #333;
}

.reservation-form {
    background: white;
    padding: 40px;
    border-radius: 18px;
}

.reservation-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-family: inherit;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
}

.form-btn {
    width: 100%;
    font-size: 15px;
}


/* CONTACT */

.contact {
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-grid > div > p {
    color: #666;
    line-height: 1.8;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.contact-card div {
    margin-bottom: 28px;
}

.contact-card small {
    display: block;
    font-weight: 700;
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
}

.contact-card p {
    color: #333 !important;
}

.contact-card a {
    color: black;
    font-weight: 700;
}


/* FOOTER */

footer {
    background: var(--dark);
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content h3 {
    font-size: 28px;
}

.footer-content p {
    color: #92959c;
    font-size: 13px;
}


/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #25d366;
    color: white;

    display: grid;
    place-items: center;

    font-size: 28px;

    z-index: 999;

    box-shadow:
        0 10px 30px rgba(0,0,0,.2);
}


/* MOBILE */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .why-grid,
    .reservation-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 30px;
        background: var(--dark);
    }

    .menu-btn {
        display: block;
    }

    .hero {
        min-height: 850px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section {
        padding: 80px 0;
    }

}