:root {
    --primary-color: #0891b2; /* Cyan-600 */
    --secondary-color: #0ea5e9; /* Sky-500 */
    --accent-color: #10b981; /* Emerald-500 */
    --dark-color: #0f172a; /* Slate-900 */
    --light-color: #f8fafc; /* Slate-50 */
    --text-dark: #1e293b; /* Slate-800 */
    --text-light: #64748b; /* Slate-500 */
    --border-color: #e2e8f0; /* Slate-200 */
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --success-color: #10b981; /* Emerald-500 */
    --warning-color: #f59e0b; /* Amber-500 */
    --danger-color: #ef4444; /* Red-500 */
    --info-color: #3b82f6; /* Blue-500 */
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #f9fafb; /* Gray-50 */
}

.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    z-index: 1030;
    padding: 1rem 0;
    border-bottom: none;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-color) !important;
}

.brand-logo-container {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.brand-icon {
    font-size: 1.2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin: 0 0.2rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(8, 145, 178, 0.05);
    transform: translateY(-2px);
}

.nav-icon {
    margin-right: 0.3rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
}

.avatar-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    border-radius: 10px;
}

.user-dropdown-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
    border: none;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.25);
    transition: all 0.3s ease;
}

.user-dropdown-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(14, 165, 233, 0.3);
}

.fleet-dropdown {
    border-radius: 16px;
    border: none;
    overflow: hidden;
    min-width: 260px;
    padding: 1rem 0;
    margin-top: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.dropdown-header {
    font-weight: 700;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
    width: calc(100% - 1rem);
}

.dropdown-item:hover {
    background-color: rgba(8, 145, 178, 0.08);
    color: var(--primary-color);
    transform: translateX(5px);
}

.nav-login-btn, .nav-register-btn {
    border-radius: 12px;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.nav-login-btn:hover, .nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.nav-login-btn {
    border: none;
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--primary-color) !important;
}

.nav-login-btn:hover {
    background-color: rgba(8, 145, 178, 0.15);
}

.nav-register-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5e9 100%);
    border: none;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.25);
    position: relative;
}

.nav-register-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    border-radius: 12px;
}

.nav-register-btn:hover {
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

/* Main navigation styles */
.main-nav {
    display: flex !important;
    visibility: visible !important;
}

.main-nav .nav-item {
    margin: 0 5px;
}

body {
    padding-top: 0; /* Remove padding for landing page */
}

/* Dashboard Styles */
.dashboard-content {
    padding-top: 70px;
    min-height: calc(100vh - 60px); /* Account for navbar and footer */
}

.dashboard-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.dashboard-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.bg-success-soft {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.bg-info-soft {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.dashboard-stat {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-simple {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1rem 0;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.btn-primary-custom {
    background: var(--accent-color);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

.features-bg {
    background: var(--light-color);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}

.truck-icon {
    font-size: 20rem;
    opacity: 0.1;
    color: var(--primary-color);
}

.stats {
    background: var(--light-color);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
    height: 100%;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.contact {
    background: var(--dark-color);
    color: white;
    padding: 100px 0;
}

.contact-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-method {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: rgba(8, 145, 178, 0.05);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.social-icon-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon-lg:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.border-secondary {
    border-color: #374151 !important;
}

/* Auth styles */
.auth-buttons .btn {
    font-weight: 500;
    transition: all 0.2s ease;
}

.auth-buttons .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.5rem;
}

.auth-buttons .dropdown-item {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.auth-buttons .dropdown-item:hover {
    background-color: rgba(8, 145, 178, 0.1);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-left: 0.75rem;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

/* Testimonial styles */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 3rem;
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-avatar-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
    background-color: #f1f5f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Remove custom positioning since we're using pre-cropped headshots */
.rajesh-avatar, .priya-avatar, .ananya-avatar {
    transform: none;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .auth-buttons {
        margin-top: 1rem;
        width: 100%;
        display: flex;
    }
    
    .auth-buttons .btn {
        flex: 1;
    }
    
    .btn-secondary-custom {
        margin-left: 0;
        margin-top: 15px;
    }
}
    
    .truck-icon {
        font-size: 10rem;
    }

/* Modern UI Elements */
.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Card hover effects */
.service-card {
    transition: all 0.3s ease;
}

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

/* Badge styles */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Button hover animations */
.btn-sm {
    transition: all 0.2s ease;
}

.btn-outline-primary:hover i {
    transform: translateX(3px);
    transition: transform 0.2s ease;
}

/* Section dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 3rem 0;
}

/* Feature list styling */
.feature-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Testimonial card */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

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

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: rgba(8, 145, 178, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

/* Contact Section Styles */
.contact-info,
.contact-form {
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
    box-shadow: var(--shadow-hover);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Form styling */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(8, 145, 178, 0.25);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 2rem;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.contact-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-links i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/* Newsletter Styles */
.newsletter-container {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 25px;
    border: none;
    padding: 0 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-form .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
}

/* Footer Widget Styles */
.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #fff;
    font-weight: 700;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Navigation Auth Button Styles */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--heading-color);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-right: 0.5rem;
}

/* Add a subtle highlight to the brand */
.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* Navbar toggler styling */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(8, 145, 178, 0.25);
    outline: none;
}

.navbar-toggler:hover {
    background-color: rgba(8, 145, 178, 0.1);
}

.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='rgba%288, 145, 178, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-login-btn {
    border-width: 2px;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.nav-login-btn:hover {
    background-color: rgba(8, 145, 178, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.nav-login-btn:hover::before {
    left: 100%;
}

.nav-login-btn i {
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.nav-login-btn:hover i {
    transform: rotate(0deg);
}

.nav-register-btn {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    box-shadow: 0 4px 10px rgba(8, 145, 178, 0.25);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), #0077b6);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-register-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(8, 145, 178, 0.35);
}

.nav-register-btn:hover::after {
    width: 100%;
}

.nav-register-btn i {
    transition: all 0.3s ease;
}

.nav-register-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
    }
    
    .auth-buttons {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-login-btn, .nav-register-btn {
        flex: 1;
        text-align: center;
        margin: 0 0.25rem;
    }
    
    .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 6px;
    }
    
    .nav-link:hover {
        background-color: rgba(8, 145, 178, 0.1);
    }
}

/* User Dropdown Styling */
.user-dropdown-btn {
    border-width: 2px;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgba(8, 145, 178, 0.1), transparent);
    position: relative;
    overflow: hidden;
}

.user-dropdown-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.user-dropdown-btn:hover {
    background: linear-gradient(to right, rgba(8, 145, 178, 0.2), rgba(8, 145, 178, 0.05));
    border-color: var(--primary-color);
}

.user-dropdown-btn:hover::before {
    left: 100%;
}

.user-dropdown-btn i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.user-dropdown-btn:hover i {
    transform: translateY(-2px);
}

.fleet-dropdown {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 240px;
    border-top: 3px solid var(--primary-color);
}

.dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-dropdown .dropdown-item {
    padding: 0.6rem 1.2rem;
    transition: all 0.2s ease;
}

.fleet-dropdown .dropdown-item:hover {
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--primary-color);
}

.fleet-dropdown .dropdown-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.fleet-dropdown .dropdown-item:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.fleet-dropdown .dropdown-divider {
    margin: 0.5rem 0;
    opacity: 0.1;
}
