/* assets/css/style.css */
:root {
    --navy: #0a1929;
    --dark-navy: #06101f;
    --blue: #1a73e8;
    --orange: #ff6b35;
    --orange-dark: #e55a2b;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.bg-navy {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--orange);
}

.dropdown-menu {
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--orange);
    padding-left: 2rem;
}

/* Buttons */
.btn-orange {
    background: var(--orange);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-orange:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-white {
    background: white;
    color: var(--orange);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--light-gray);
    color: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    border-radius: 50px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--orange);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a365d 50%, #2c5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,107,53,0.1) 100%);
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.min-vh-75 {
    min-height: 75vh;
}

/* Quick Booking */
.quick-booking-card {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

/* Cards */
.service-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--orange);
}

.vehicle-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vehicle-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.placeholder-image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-muted);
}

.text-orange {
    color: var(--orange) !important;
}

/* B2B Section */
.bg-white-10 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Process Section */
.process-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.process-arrow {
    position: absolute;
    top: 35px;
    right: -15px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark-navy);
}

.footer a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--orange) !important;
}

.footer .social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer .social-links a:hover {
    color: var(--orange) !important;
}

.footer h5 {
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .min-vh-75 {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .quick-booking-card {
        margin-top: 0;
        margin-bottom: 2rem;
    }
    
    .process-arrow {
        display: none;
    }
}