/* Main Styles */
:root {
    --primary-color: #ff5e14;
    --secondary-color: #001659;
    --accent-color: #ff5e14;
    --light-color: #ffffff;
    --dark-color: #001659;
    --gray-color: #777777;
    --light-gray: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Navbar Scrolled Effect */
.navbar-scrolled {
    background-color: white !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar-contact {
    display: flex;
    align-items: center;
}

.top-bar-contact i {
    margin-right: 8px;
    color: var(--primary-color);
}

.top-bar-contact span {
    margin-right: 20px;
}

.top-bar-social a {
    margin-left: 15px;
    font-size: 16px;
}

/* Navbar Styling */
.navbar {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.navbar-brand span {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .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%);
}

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

.navbar-nav .btn-reservation {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 30px;
    padding: 8px 20px;
    margin-left: 15px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

.navbar-nav .btn-reservation:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
}

.navbar-nav .btn-reservation::after {
    display: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 22, 89, 0.8), rgba(0, 22, 89, 0.8)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 120px;
    position: relative;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    opacity: 0.9;
}

.hero-section .btn {
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Search Section */
.quick-search-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.quick-search-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.quick-search-card .card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border: none;
}

.quick-search-card .card-header h3 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

.quick-search-card .card-body {
    padding: 30px;
    background-color: white;
}

/* Car Cards */
.car-card {
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.car-card .car-tag {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 20px 0 0 20px;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.car-card .bg-danger {
    background-color: var(--danger-color) !important;
}

.car-card img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    width: 100%;
}

.car-card:hover img {
    transform: scale(1.05);
}

.car-card .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-card .card-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
    font-size: 0.95rem;
    color: var(--gray-color);
}

.car-features span {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 10px;
    width: calc(50% - 10px);
}

.car-features i {
    margin-right: 8px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.car-description {
    margin-top: 15px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.car-description p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.car-card hr {
    margin: 15px 0;
    opacity: 0.1;
}

.car-card .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.car-card .price small {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-left: 5px;
    font-weight: 400;
}

.car-card .btn-reserve {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.car-card .btn-reserve:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.car-card .d-flex {
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 576px) {
    .car-card .d-flex {
        flex-direction: column;
    }
    
    .car-card .btn-reserve {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .car-card .price {
        width: 100%;
        justify-content: center;
    }
}

/* Buttons */
.btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-outline-light {
    color: white;
    border-color: white;
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

/* Form Controls */
.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.2);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title-container {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: block;
}

section h2 {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-color);
}

/* Feature Cards */
.feature-card {
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 94, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: #e2e8f0;
    z-index: -1;
}

.process-step .step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.process-step h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--gray-color);
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 94, 20, 0.1);
    line-height: 1;
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card .rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0, 22, 89, 0.9), rgba(0, 22, 89, 0.9)), url('../img/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
}

.stats-box {
    text-align: center;
    padding: 20px;
}

.stats-box .stats-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stats-box h4 {
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(rgba(0, 22, 89, 0.9), rgba(0, 22, 89, 0.9)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section h2:after {
    background-color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Blog Section */
.blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    height: 220px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 25px;
}

.blog-card .blog-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.blog-card .card-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.blog-card .card-title a {
    color: var(--secondary-color);
}

.blog-card .card-title a:hover {
    color: var(--primary-color);
}

.blog-card .card-text {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.blog-card .btn-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
    text-decoration: none;
}

.blog-card .btn-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

footer p, footer address, footer li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

footer .footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

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

footer .footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

footer .footer-hours li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

footer .footer-hours li:last-child {
    border-bottom: none;
}

footer .footer-contact li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

footer .footer-contact i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}

footer .contact-info {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

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

footer .social-icons 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: white;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-divider {
    margin: 30px 0;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

footer .copyright {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.9rem;
}

footer .copyright a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

footer .copyright a:hover {
    color: white;
}

footer .btn-primary {
    padding: 8px 20px;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    footer {
        padding: 50px 0 0;
    }
    
    footer h5 {
        margin-top: 10px;
    }
}

/* Reservation Form */
.reservation-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reservation-form h3 {
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

/* Car Details Page */
.car-details-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.car-details-info h2 {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.car-details-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
}

.car-details-price small {
    font-size: 1rem;
    color: var(--gray-color);
    margin-left: 5px;
    font-weight: 400;
}

.car-details-features {
    margin: 30px 0;
}

.car-details-features h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.feature-list li {
    width: 50%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Admin Panel */
.admin-sidebar {
    background-color: var(--secondary-color);
    color: white;
    min-height: calc(100vh - 56px);
    padding-top: 30px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.admin-sidebar .nav-link i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.admin-content {
    padding: 30px;
}

.admin-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

.admin-card .card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.2rem;
}

.admin-card .card-body {
    padding: 25px;
}

.admin-dashboard-card {
    border: none;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    position: relative;
    overflow: hidden;
}

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

.admin-dashboard-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.admin-dashboard-card .card-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.admin-dashboard-card.primary {
    border-top: 5px solid var(--primary-color);
}

.admin-dashboard-card.success {
    border-top: 5px solid var(--success-color);
}

.admin-dashboard-card.warning {
    border-top: 5px solid var(--warning-color);
}

.admin-dashboard-card.danger {
    border-top: 5px solid var(--danger-color);
}

.admin-dashboard-card i {
    font-size: 5rem;
    opacity: 0.1;
    position: absolute;
    bottom: -10px;
    right: 10px;
    color: var(--secondary-color);
}

/* Table Styling */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    font-weight: 600;
    background-color: #f8fafc;
    padding: 15px;
}

.table td {
    padding: 15px;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 94, 20, 0.05);
}

/* Status Badges */
.badge {
    padding: 8px 12px;
    font-weight: 600;
    border-radius: 6px;
}

.badge-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-confirmed {
    background-color: #dcfce7;
    color: #166534;
}

.badge-completed {
    background-color: #dbeafe;
    color: #1e40af;
}

.badge-cancelled {
    background-color: #fee2e2;
    color: #b91c1c;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .quick-search-section {
        margin-top: 0;
    }
    
    .feature-card, .testimonial-card {
        padding: 25px 20px;
    }
    
    .car-features span {
        width: 100%;
    }
    
    .feature-list li {
        width: 100%;
    }
}

/* Feature Cards Mini */
.feature-card-mini {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.feature-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-card-mini:hover .feature-icon-wrapper {
    background-color: var(--primary-color);
    color: white;
}

.feature-content h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
}

.feature-content p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 14px;
}

/* FAQ Accordion Styles */
.accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    background-color: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff5e14'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button i {
    color: var(--primary-color);
    font-size: 18px;
}

.accordion-body {
    padding: 0 25px 20px;
    background-color: #fff;
}

.accordion-body p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    padding: 60px 0;
    color: white;
    margin-bottom: 50px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Cars Section */
.cars-section {
    padding-bottom: 80px;
}

/* Filter Sidebar */
.filter-sidebar {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.filter-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 20px;
}

.filter-header h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}

.filter-body {
    padding: 20px;
}

.filter-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.selected-dates p,
.selected-locations p {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--gray-color);
}

/* Cars List */
.cars-list-header {
    background-color: white;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cars-list-header h4 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.sort-options span {
    color: var(--gray-color);
    font-size: 14px;
}

/* Car Card */
.car-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.car-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--success-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.car-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.car-card .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.car-features span {
    font-size: 13px;
    color: var(--gray-color);
    background-color: var(--light-gray);
    padding: 5px 10px;
    border-radius: 5px;
}

.car-description p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 0;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color);
}

.btn-reserve {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Reservation Section */
.reservation-section {
    padding-bottom: 80px;
}

/* Car Details Card */
.car-details-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.car-details-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.car-details-card .card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.price-info {
    margin-bottom: 20px;
}

.price-details p {
    font-size: 14px;
    color: var(--gray-color);
    margin-top: 10px;
    margin-bottom: 0;
}

.car-description h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.car-description p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Reservation Form Card */
.reservation-form-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reservation-form-card .card-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 20px;
}

.reservation-form-card .card-header h3 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}

.reservation-form-card .card-body {
    padding: 30px;
}

.reservation-form-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
}

/* Reservation Success Card */
.reservation-success-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 50px 30px;
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.reservation-success-card h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.reservation-success-card .lead {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
}

/* Sticky Top */
.sticky-lg-top {
    top: 100px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-image {
    max-width: 95%;
    display: block;
    margin: 0 auto;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.experience-badge .number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    margin-top: 5px;
}

/* History Section */
.history-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

.team-content {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.team-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-content p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

/* Contact Info */
.contact-info {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item .content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-info-item .content p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.contact-social h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Form */
.contact-form-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-card .card-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 20px;
}

.contact-form-card .card-header h3 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}

.contact-form-card .card-body {
    padding: 30px;
}

/* Contact Success Card */
.contact-success-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 50px 30px;
    text-align: center;
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Branches Section */
.branches-section {
    padding-bottom: 80px;
}

.branch-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

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

.branch-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s ease;
}

.branch-card:hover .branch-icon {
    background-color: var(--primary-color);
    color: white;
}

.branch-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.branch-card p {
    color: var(--gray-color);
    margin-bottom: 10px;
} 