:root {
    --primary: #f9b62c;
    /* Gold/Amber from mockup */
    --secondary: #25D366;
    --accent: #f9b62c;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #f4f4f4;
    --white: #ffffff;
    --gray: #1a1a1a;
    --text: #e0e0e0;
    --text-muted: rgba(255, 255, 255, 0.6);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--darker);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
header {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 45px;
    width: auto;
}

.logo span {
    color: var(--accent);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta {
    background: var(--primary);
    padding: 8px 15px;
    border-radius: 5px;
}

/* Hero Overhaul */
.hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo img {
    max-height: 120px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features i {
    color: var(--primary);
    width: 16px;
}

/* Header Adjustments for Redesign */
header .logo {
    display: none;
    /* Hide in stickies if centered in hero */
}

header.scrolled .logo {
    display: flex;
}

/* Buttons */
.btn {
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.btn i {
    width: 20px;
}

.btn-primary {
    background: var(--primary);
    color: var(--darker);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--darker);
}

/* SEO Text */
.seo-text {
    padding: 60px 0;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.seo-text strong {
    color: var(--white);
}

/* Services */
.services {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

/* Fleet Section */
.fleet {
    padding: 80px 0;
}

.fleet-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.fleet-card {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.fleet-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent 70%);
}

.fleet-card .card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.vehicle-tag {
    display: inline-block;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--primary);
}

.fleet-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.vehicle-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.vehicle-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.vehicle-features i {
    color: var(--primary);
    width: 16px;
}

.fleet-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .fleet-cards {
        grid-template-columns: 1fr;
    }

    .fleet-card {
        height: 350px;
        padding: 25px;
    }

    .fleet-card h3 {
        font-size: 1.5rem;
    }
}

/* Transport Options */
.transport-options {
    padding: 60px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.option-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-item .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    justify-content: center;
}

.option-item .icon i {
    width: 40px;
    height: 40px;
}

.option-item h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.option-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Routes 4x4 Horizontal Card */
.route-horizontal-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    border: 1px solid var(--glass-border);
}

.route-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.route-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
}

.route-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.badge {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--glass-border);
}

.badge.highlighted {
    background: #1a1a1a;
    border-color: var(--primary);
}

.route-destinations {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
}

.dest-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dest-item i {
    color: var(--primary);
    width: 20px;
}

.dest-item span {
    font-size: 1rem;
}

@media (max-width: 900px) {
    .route-horizontal-card {
        height: auto;
        padding: 30px;
    }

    .route-header {
        flex-direction: column;
        gap: 20px;
    }

    .route-meta {
        align-items: flex-start;
    }

    .route-destinations {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }
}

/* Services Grid Redesign */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.services-intro p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s ease;
}

.service-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.2) 100%);
    transition: background 0.5s;
}

.service-card .card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.service-card i {
    color: var(--primary);
    width: 14px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 40%, rgba(0, 0, 0, 0.4) 100%);
}

.service-card.highlighted {
    background-color: var(--primary);
    border: none;
}

.service-card.highlighted .card-overlay {
    background: linear-gradient(to top, var(--primary) 0%, rgba(249, 182, 44, 0.4) 100%);
}

.service-card.highlighted h3 {
    color: var(--darker);
    font-weight: 800;
}

.card-badge {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    display: grid;
    gap: 10px;
}

.card-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--darker);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Booking Redesign */
.booking {
    padding: 100px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.booking-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.booking-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--primary);
    width: 18px;
}

.booking-form-wrapper {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.booking-form {
    display: grid;
    gap: 1px;
    /* Divider effect */
}

.booking-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.booking-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.booking-form input:focus {
    border-bottom-color: var(--primary);
}

.btn-full {
    width: 100%;
    margin-top: 30px;
    justify-content: center;
}

@media (max-width: 900px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-info h2 {
        font-size: 2rem;
    }
}

/* Footer Redesign */
footer {
    padding: 80px 0 40px;
    background: #050505;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    margin-bottom: 20px;
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links ul {
    display: grid;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.web-credit {
    margin-top: 15px;
    font-size: 0.75rem;
    opacity: 0.6;
}

.web-credit a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.web-credit a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Final CTA Section */
.cta-final {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(249, 182, 44, 0.05) 0%, transparent 70%);
}

.cta-final h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
    color: var(--white);
}

.btn-pulse {
    background: var(--primary);
    color: var(--darker);
    font-size: 1.2rem;
    padding: 20px 50px;
    box-shadow: 0 0 0 0 rgba(249, 182, 44, 0.7);
    animation: pulse-yellow 2s infinite;
}

.btn-pulse:hover {
    background: var(--white);
    transform: scale(1.05) translateY(-5px);
    animation: none;
}

@keyframes pulse-yellow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 182, 44, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(249, 182, 44, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 182, 44, 0);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        gap: 15px;
    }

    .cta-final {
        padding: 60px 0;
    }
}