:root {
    --primary: #c7ff24; /* Lime green accent */
    --primary-dark: #b0e51f;
    --dark: #121212;
    --light-bg: #f5f5f5;
    --gray-text: #666666;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px; /* Smaller base font for mobile */
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: var(--white);
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light-bg);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.5rem; /* Compact for mobile */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    display: inline;
    color: var(--gray-text);
}

.hero h1 .highlight {
    color: var(--dark);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 4px;
}

.hero-desc {
    color: var(--gray-text);
    font-size: 1rem;
    margin: 0 auto 30px;
    max-width: 100%;
}

.hero-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-primary-pill {
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 100px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    width: 100%; /* Full width on mobile */
    justify-content: center;
}

.hero-image-container {
    background-color: var(--light-bg);
    border-radius: 30px;
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 85%;
    transform: rotate(-5deg);
}

/* Fleet Section */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    text-transform: lowercase;
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.fleet-grid {
    display: grid;
    columns: 2;
    grid-template-columns: 1fr; /* 1 column mobile */
    gap: 20px;
}

.fleet-card {
    background: var(--white);
    border-radius: 24px;
    padding: 12px;
    border: 1px solid #f0f0f0;
}

.fleet-img-wrapper {
    background: var(--light-bg);
    border-radius: 18px;
    height: 220px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.fleet-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-info h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Why Us Section */
.why-us {
    padding: 60px 0;
}

.why-card {
    background: var(--primary);
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.why-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Admin Section */
.admin-section {
    background: var(--light-bg);
    border-radius: 30px;
    padding: 30px 15px;
    margin: 60px 0;
}

/* Tablets and Up */
@media (min-width: 768px) {
    body { font-size: 16px; }
    
    .hero { padding: 140px 0 80px; }
    .hero h1 { font-size: 3.5rem; }
    .hero-content { text-align: left; }
    .btn-primary-pill { width: auto; }
    
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-img-wrapper { height: 260px; }
    
    .why-card { padding: 50px; }
    .why-card h2 { font-size: 2.5rem; }
}

/* Desktops and Up */
@media (min-width: 992px) {
    .navbar { padding: 25px 0; background: transparent; backdrop-filter: none; }
    .navbar.scrolled { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 15px 0; }
    
    .hero { padding: 180px 0 120px; }
    .hero h1 { font-size: 4.5rem; letter-spacing: -2px; }
    .hero h1 span { display: block; }
    .hero-content { padding-right: 50px; }
    .hero-desc { max-width: 400px; margin: 0 0 40px; }
    
    .hero-image-container { height: 600px; }
    
    .fleet-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .fleet-card { padding: 15px; border-radius: 30px; border: none; }
    .fleet-img-wrapper { height: 300px; border-radius: 20px; }
    
    .section-title { font-size: 2.5rem; }
    
    .why-us { padding: 100px 0; }
    .why-card { margin-top: 0; padding: 60px; height: 100%; }
    .why-card h2 { font-size: 3rem; }
    
    .admin-section { padding: 60px; border-radius: 50px; }
}

/* Modals */
.modal-content { border-radius: 20px; border: none; padding: 15px; }
@media (min-width: 992px) { .modal-content { border-radius: 30px; padding: 20px; } }

.form-control { border-radius: 12px; padding: 10px 18px; background: var(--light-bg); border: 1px solid transparent; }
.form-control:focus { background: var(--white); border-color: var(--primary); box-shadow: none; }
