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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    color: #0a0a0a;
    line-height: 1.5;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo-loco {
    color: #0a0a0a;
}

.logo-cabs {
    color: #e8a70c;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0a0a0a;
}

main {
    padding-top: 64px;
}

.section-label {
    font-size: 14px;
    font-weight: bold;
    color: #737373;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.highlight {
    color: #e8a70c;
}

.hero {
    padding: 40px 16px 60px;
    background: #fff;
    text-align: center;
}

.hero-container {
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(180deg, #fdf0dc 0%, #fde3c2 100%);
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #e8a70c;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 28px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.green {
    background: rgba(34, 197, 94, 0.1);
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.1);
}

.feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-title {
    font-size: 14px;
    color: #0a0a0a;
}

.feature-subtitle {
    font-size: 12px;
    color: #737373;
}

.services {
    padding: 60px 16px;
    background: #fff;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(180deg, #fdf0dc 0%, #fde3c2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features h4 {
    font-size: 16px;
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.service-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #737373;
}

.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(180deg, #e8a70c 0%, #f89035 100%);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 167, 12, 0.3);
}

.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    color: #e8a70c;
    font-size: 16px;
    font-weight: bold;
    border: 1.5px solid #e8a70c;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-outline-orange:hover {
    background: rgba(232, 167, 12, 0.1);
}

.full-width {
    width: 100%;
}

.booking-options {
    padding: 60px 16px;
    background: #fff;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.booking-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
    text-align: left;
}

.booking-card.featured {
    background: linear-gradient(180deg, #fde3c2 0%, #fff 100%);
    border-color: #fde3c2;
}

.booking-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.booking-icon.gradient {
    background: linear-gradient(180deg, #e8a70c 0%, #f89035 100%);
}

.booking-icon.light {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.booking-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.booking-card > p {
    font-size: 16px;
    color: #737373;
    line-height: 1.5;
    margin-bottom: 24px;
}

.booking-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #737373;
}

.booking-note {
    font-size: 14px;
    color: #737373;
    text-align: center;
}

.booking-note a {
    color: #e8a70c;
    font-weight: bold;
    text-decoration: none;
}

.fleet {
    padding: 60px 16px;
    background: #fff;
}

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

.fleet-header {
    text-align: center;
    margin-bottom: 48px;
}

.fleet-header h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 16px;
}

.fleet-header p {
    font-size: 16px;
    color: #737373;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

.fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fleet-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.fleet-icon {
    margin-bottom: 16px;
}

.fleet-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.fleet-card > p {
    font-size: 14px;
    color: #737373;
    margin-bottom: 16px;
}

.fleet-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #737373;
}

.fleet-price {
    font-size: 18px;
    font-weight: bold;
    color: #e8a70c;
}

.footer-cta {
    padding: 64px 16px;
    background: #0a0a0a;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h2 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.footer-content > p {
    font-size: 16px;
    color: #a3a3a3;
    margin-bottom: 24px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #fff;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-white.rounded {
    border-radius: 50px;
}

.btn-white:hover {
    transform: translateY(-2px);
}

.download-link {
    color: #e8a70c;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: #262626;
    margin-bottom: 48px;
}

.footer-stats {
    display: flex;
    justify-content: space-between;
}

.footer-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.stat-text {
    display: block;
    font-size: 14px;
    color: #a3a3a3;
}

@media (min-width: 768px) {
    .navbar-content {
        padding: 16px 32px;
    }

    .hero {
        padding: 80px 32px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-features {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }

    .services {
        padding: 80px 32px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .service-buttons {
        flex-direction: row;
    }

    .booking-options {
        padding: 80px 32px;
    }

    .booking-cards {
        flex-direction: row;
    }

    .booking-card {
        flex: 1;
    }

    .fleet {
        padding: 80px 32px;
    }

    .fleet-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-cta {
        padding: 80px 32px;
    }

    .footer-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-stats {
        justify-content: center;
        gap: 64px;
    }
}

@media (min-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
