/* Global Styles */
:root {
    --primary-color: #0092cd;
    --secondary-color: #eb7f05;
    --success-color: #198754;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --accent-color: #eb7f05;
    --gradient-primary: linear-gradient(135deg, #0092cd 0%, #eb7f05 100%);
    --gradient-secondary: linear-gradient(45deg, #eb7f05 0%, #0092cd 100%);
    --shadow-light: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-heavy: 0 15px 40px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Enhanced Navigation */
.navbar {
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    position: relative;
}

.navbar .container {
    position: relative;
}

.navbar-brand {
    width: auto;
    max-width: 200px;
}

.navbar h1 {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 38px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .navbar h1 {
        font-size: 1.25rem;
    }
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 146, 205, 0.25);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Common Navigation Styles (Both Mobile and Desktop) */
.navbar-collapse {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 2rem 0;
    transition: 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.navbar-collapse.show {
    right: 0;
}

.navbar-nav {
    flex-direction: column;
    gap: 1rem;
}

.nav-item {
    width: 100%;
    margin-right: 0;
}

.nav-link {
    color: #333 !important;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    padding-left: 10px;
    background: rgba(0, 146, 205, 0.1);
}

.navbar-toggler {
    z-index: 1001;
}

.menu-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.menu-close-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.menu-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Overlay when menu is open */
.navbar-collapse::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    z-index: -1;
}

.navbar-collapse.show::before {
    opacity: 1;
    visibility: visible;
}

/* Menu Toggle Button */
.menu-toggler {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 146, 205, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1031;
    margin-left: auto;
}

.menu-toggler:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.menu-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Enhanced Navigation Items */
.nav-link i {
    width: 24px;
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .menu-toggler {
        width: 40px;
        height: 40px;
    }
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

/* Desktop Menu Styles */
@media (min-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: var(--shadow-heavy);
        z-index: 1050;
        border-radius: 0;
        padding: 2rem 1.5rem;
        display: block !important;
        opacity: 1;
        transform: translateX(0);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .navbar-collapse.show {
        right: 0;
        transform: translateX(0);
        /* Debug styles */
        /* border: 2px solid #00ff00 !important; */
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    /* Ensure menu button is always visible on desktop */
    .menu-toggler {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-nav {
        padding: 0;
        margin-top: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-item {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-weight: 600;
        color: #212529;
        display: block;
        width: 100%;
        text-align: left;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .nav-link:hover {
        color: white !important;
        transform: translateX(10px);
        border-color: transparent;
    }
    
    .nav-link:hover::before {
        left: 0;
    }
    
    .nav-link i {
        width: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover i {
        transform: scale(1.2);
    }
    
    /* Add overlay when menu is open */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Close button styles */
    .menu-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--primary-color);
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1051;
    }
    
    .menu-close-btn:hover {
        background: var(--secondary-color);
        transform: scale(1.1);
    }
    
    /* Menu header styles */
    .menu-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgba(0, 146, 205, 0.1);
    }
    
    .menu-header h4 {
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .menu-header p {
        margin-bottom: 0;
        opacity: 0.8;
    }
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .navbar-collapse.show {
        right: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        color: #333 !important;
        padding: 0.5rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }
    
    .navbar-toggler {
        z-index: 1001;
    }
    
    .menu-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
    }
    
    .menu-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #f0f0f0;
    }
}

/* Navbar Styles */
.navbar-expand-lg .navbar-nav {
    flex-direction: column !important;
    width: 100%;
    padding: 1rem 0;
}

.navbar-expand-lg .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 1rem 1.5rem;
    color: #ffffff !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    background-color: rgba(0, 146, 205, 0.1);
    padding-left: 2rem;
    color: #f37c04 !important;
}

.navbar-expand-lg .navbar-nav .nav-link i {
    width: 24px;
    margin-right: 10px;
    transition: transform 0.3s ease;
    color:#f37c04;
}

.navbar-expand-lg .navbar-nav .nav-link:hover i {
    transform: translateX(5px);
    color: white;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    /* background-image: url('../img/banner_1.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background: linear-gradient(135deg, rgba(0, 146, 205, 0.9) 0%, rgba(243, 124, 4, 0.9) 100%);
}

.hero-overlay {
    position: relative;
    /* background: linear-gradient(135deg, rgba(0, 146, 205, 0.9) 0%, rgba(243, 124, 4, 0.9) 100%); */
    min-height: 100vh;
}

.hero-content {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem !important;
    transform: translateY(20px);
    animation: float 6s ease-in-out infinite;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: #f37c04;
    border-color: #f37c04;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0094cd;
    border-color: #0094cd;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem !important;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        background-attachment: scroll;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .truck-card {
        margin-bottom: 2rem;
    }
    
    .inquiry-form {
        padding: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .truck-image {
        height: 200px;
    }
    
    .inquiry-form {
        padding: 1.5rem;
    }
}

/* Enhanced Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Enhanced Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
}

.form-control.is-valid {
    border-color: var(--success-color);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.15);
}

/* Enhanced Success Message */
.success-message {
    background: rgba(25, 135, 84, 0.1);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    color: var(--success-color);
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Success Animation Styles */
.success-animation {
    margin: 20px auto;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 30px #4bb71b; }
}

/* Enhanced Accent color for special elements */
.accent-text {
    color: var(--accent-color);
    font-weight: 600;
}

.accent-bg {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Enhanced Loading Spinner */
.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Navigation Item Spacing */
.nav-item {
    margin-right: 35px;
}

/* Enhanced Section Spacing */
section {
    padding: 5rem 0;
}

/* Enhanced Card Hover Effects */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Text Gradients */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Image Hover Effects */
.img-hover {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.img-hover:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Services Section */
.service-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 146, 205, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 146, 205, 0.2);
    border-color: rgba(243, 124, 4, 0.3);
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 146, 205, 0.1) 0%, rgba(243, 124, 4, 0.1) 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.service-icon {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #0094cd 0%, #f37c04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.service-title {
    color: #333;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
}

.service-description {
    color: #6c757d;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features {
    margin: 0;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.service-link {
    color: #f37c04;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.service-link:hover {
    color: #0094cd;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* Fleet Section Styles */
.fleet-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.fleet-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.capacity-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0094cd 0%, #f37c04 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.fleet-content {
    padding: 2rem;
}

.fleet-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.fleet-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #0094cd 0%, #f37c04 100%);
}

.fleet-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    text-align: center;
}

.spec-item i {
    font-size: 1.5rem;
    color: #0094cd;
    margin-bottom: 0.5rem;
}

.spec-item span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.fleet-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.fleet-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #555;
}

.fleet-features li i {
    color: #f37c04;
    margin-right: 0.5rem;
}

.fleet-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0094cd 0%, #f37c04 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fleet-cta:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .fleet-container {
        grid-template-columns: 1fr;
    }
    
    .fleet-image {
        height: 200px;
    }
    
    .fleet-content {
        padding: 1.5rem;
    }
}

/* Floating Button Styles */
.whatsapp-btn,
.location-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    bottom: 30px;
    left: 20px;
}

/* Location Button */
.location-btn {
    background-color: #0094cd;
    color: white;
    bottom: 30px;
    right: 20px;
}

/* Hover effects */
.whatsapp-btn:hover,
.location-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Tooltips */
.whatsapp-tooltip,
.location-tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-tooltip {
    left: 60px;
}

.location-tooltip {
    right: 60px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .whatsapp-btn {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .location-btn {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    /* Hide tooltips on mobile */
    .whatsapp-tooltip,
    .location-tooltip {
        display: none;
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.whatsapp-btn::after,
.location-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

.whatsapp-btn::after {
    background-color: #25D366;
}

.location-btn::after {
    background-color: #0094cd;
}

/* Driver Button Styles */
.driver-btn {
    position: relative;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0094cd 0%, #f37c04 100%);
    border: none;
    color: white !important;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.driver-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.driver-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.driver-btn:hover i {
    transform: translateX(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .driver-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .navbar-brand img {
        height: 80px;
    }
    
    .navbar h1 {
        font-size: 1.2rem;
    }
}

/* Driver Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #0094cd 0%, #f37c04 100%);
    padding: 1.5rem;
    border: none;
}

.modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
    background: #f8f9fa;
}

#driverForm {
    position: relative;
}

#driverForm .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

#driverForm .form-control,
#driverForm .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

#driverForm .form-control:focus,
#driverForm .form-select:focus {
    border-color: #0094cd;
    box-shadow: 0 0 0 0.2rem rgba(0, 148, 205, 0.1);
}

#driverForm .form-control::placeholder {
    color: #adb5bd;
}

/* Section Dividers */
#driverForm .row > .col-12:not(:last-child) {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

/* Required Field Indicator */
#driverForm .form-label:after {
    content: ' *';
    color: #f37c04;
}

#driverForm .form-label:not([for*="preferredRoutes"]):not([for*="additionalInfo"]):not([for*="email"]):after {
    content: ' *';
    color: #f37c04;
}

/* Modal Footer */
.modal-footer {
    background: #fff;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary {
    background: #6c757d;
    border: none;
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #0094cd 0%, #f37c04 100%);
    border: none;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Sections */
.form-section {
    position: relative;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.form-section:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-section-title {
    color: #0094cd;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f37c04;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: #0094cd;
    box-shadow: 0 0 0 0.2rem rgba(0, 148, 205, 0.1);
}

.form-floating > textarea.form-control {
    height: 100px;
}

.form-floating > label {
    padding: 1rem 0.75rem;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0094cd 0%, #f37c04 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f37c04 0%, #0094cd 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .form-section {
        padding: 1rem;
    }
    
    .form-floating > .form-control {
        height: calc(3.2rem + 2px);
    }
    
    .form-floating > label {
        padding: 0.8rem 0.75rem;
    }
}

/* Quote Section Styles */
.quote-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quote-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}