/* GLOBAL RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* GLOBAL */
body {
    font-family: Arial, sans-serif;
    background: #000000;
    color: #d4af37; /* Gold body text */
    text-align: left;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Layout container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gold gradient for titles */
.gold-gradient {
    background: linear-gradient(90deg, #b8860b, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(8px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Logo + brand */
.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 60px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #d4af37;
    opacity: 0.9;
}

/* NAVIGATION */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d4af37;
    text-decoration: none;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #f5d76e);
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.book-btn {
    border: 1px solid rgba(212, 175, 55, 0.7);
    padding: 7px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #d4af37;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    background: url("suv.jpg") no-repeat center/cover;
    display: flex;
    align-items: center;
    padding-top: 90px; /* space for fixed header */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1), transparent 40%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.85), #000000);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    text-align: left;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    max-width: 520px;
    color: #d4af37;
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.4);
}

/* BUTTONS */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #b8860b, #d4af37, #f5d76e);
    color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 1);
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.7);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.large-btn {
    min-width: 220px;
}

/* SECTIONS */
.section {
    padding: 90px 0;
}

.section-dark {
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.section-alt {
    background: #0b0b0b;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.section-highlight {
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 55%),
                #020202;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.section-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* GRID / CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), rgba(0, 0, 0, 0.95));
    border-radius: 14px;
    padding: 22px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.card-text {
    font-size: 0.95rem;
    opacity: 0.96;
}

/* FLEET SECTION */
.fleet-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 26px;
    align-items: center;
}

.fleet-list {
    list-style: none;
    padding-left: 0;
}

.fleet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.98rem;
}

.fleet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f5d76e;
}

/* Fleet image box using background SUV */
.fleet-image {
    display: flex;
    justify-content: center;
}

.fleet-photo {
    width: 100%;
    max-width: 380px;
    height: 220px;
    border-radius: 18px;
    background: url("suv.jpg") center/cover no-repeat;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 1);
    border: 1px solid rgba(212, 175, 55, 0.45);
}

/* BOOK SECTION */
.book-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

/* CONTACT SECTION */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
}

.contact-block p {
    margin-bottom: 6px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 18px 20px;
    background: #000;
    font-size: 0.85rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    color: #d4af37;
    opacity: 0.9;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp {
    position: fixed;
    bottom: 22px;
    right: 18px;
    background: #25D366;
    color: #ffffff;
    font-size: 26px;
    padding: 10px 14px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
    z-index: 30;
}

/* FADE-IN ANIMATION */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

.hero.fade-in {
    animation-delay: 0.1s;
}

.section-dark.fade-in,
.section-alt.fade-in,
.section-highlight.fade-in {
    animation-delay: 0.15s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fleet-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 0;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #000000;
        flex-direction: column;
        gap: 14px;
        padding: 16px 20px 18px;
        display: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

    .nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        text-align: left;
    }

    .hero-content {
        padding: 40px 0 70px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        max-width: none;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .brand-tagline {
        display: none;
    }

    .logo {
        height: 50px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section {
        padding: 70px 0;
    }
}
/* BOOKING FORM */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.85);
    padding: 25px 30px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 1);
}

.booking-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.booking-form label {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #f5d76e;
    letter-spacing: 0.05em;
}

.booking-form input,
.booking-form textarea {
    padding: 12px;
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    color: #d4af37;
    font-size: 1rem;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(212, 175, 55, 0.35);
}

.booking-form textarea {
    height: 110px;
    resize: vertical;
}
