.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('../images/van-rental/slider.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--white);
}

.van-services-section {
    padding: 5rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.service-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: var(--white);
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    margin: 0.5rem 0;
    color: var(--white);
}

.service-features i {
    color: var(--white);
    margin-right: 0.5rem;
}





.fleet-section {
    padding: 5rem 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    background: transparent;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease;
    color: var(--white);
    position: relative;
    padding: 2px;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vehicle-card-inner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 13px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: none;
}

.vehicle-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.vehicle-card:hover .vehicle-image img {
    transform: none;
}

.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(30, 55, 153, 0.9);
    padding: 8px 15px;
    border-radius: 0 0 0 8px;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-tag .amount {
    font-size: 1.2rem;
    line-height: 1;
}

.price-tag .duration {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1;
}

.vehicle-booking {
    margin-top: auto;
    text-align: center;
    padding-top: 1.5rem;
}

.book-now-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
    min-width: 140px;
}

.book-now-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.book-now-btn:active {
    background: rgba(255, 255, 255, 0.1);
}

.vehicle-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.vehicle-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.vehicle-category {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

.vehicle-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.feature i {
    color: var(--white);
    font-size: 1.2rem;
}

.vehicle-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-amenities span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
}

.vehicle-amenities i {
    color: var(--white);
}






.glow-effect {
    animation: none;
}



.btn.primary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.btn.primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}



.booking-section {
    padding: 5rem 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-form {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input:hover,
.form-group select:hover {
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 80px;
    max-height: 150px;
    line-height: 1.4;
    font-family: inherit;
}

.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea:hover {
    background: rgba(255, 255, 255, 0.1);
}

.booking-form button[type="submit"] {
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    display: block;
    padding: 1rem 2rem;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form button[type="submit"]:hover {
    background-color: #004494;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}



@media (max-width: 768px) {



    .hero-section {
        min-height: 80vh !important;
        padding: 5rem 1.5rem 3.5rem !important;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('../images/van-rental/slider.jpg') !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center bottom !important;
        background-repeat: no-repeat !important;
    }

    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .vehicle-features {
        grid-template-columns: 1fr;
    }

    .vehicle-amenities {
        grid-template-columns: 1fr;
    }
}



.service-card,
.vehicle-card {
    animation: none;
}



[data-aos] {
    transition-duration: 400ms !important;
}

[data-aos="fade"] {
    opacity: 0;
    transition-property: opacity;
}

[data-aos="fade"].aos-animate {
    opacity: 1;
}



.vehicle-card {
    transition: transform 0.2s ease;
}

.vehicle-card:hover {
    transform: none;
}

.vehicle-image img {
    transition: none;
}

.vehicle-card:hover .vehicle-image img {
    transform: none;
}






.hero-content .btn.primary {
    background-color: #0056b3;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

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

.hero-content .btn.primary:hover::after {
    transform: translateX(0);
}

.hero-content .btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-content .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



.hero-content .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

.hero-content .btn {
    min-width: 200px;
    text-align: center;
    padding: 15px 30px;
    margin: 0;
}

@media (max-width: 768px) {



    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-content .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 1.5rem;
    }

    .hero-content .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

.notes-section {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notes-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.notes-section h4 i {
    color: white;
    font-size: 1.1rem;
}


.daterangepicker {
    background-color: white !important;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    color: #333;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.daterangepicker .calendar-table {
    background-color: white !important;
    border: none;
}

.daterangepicker td.active {
    background-color: #0056b3 !important;
    color: white !important;
    font-weight: 600;
    border-radius: 6px;
}

.daterangepicker td.available:hover {
    background-color: #f0f7ff;
    color: #0056b3;
    border-radius: 6px;
}

.daterangepicker td,
.daterangepicker th {
    color: #333;
    font-size: 0.95rem;
    width: 36px;
    height: 36px;
}

.daterangepicker td.off {
    color: #ccc;
}

.daterangepicker td.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    border-color: #0056b3;
    border-width: 2px 2px 0 0;
}

.daterangepicker .calendar-table .next:hover span,
.daterangepicker .calendar-table .prev:hover span {
    border-color: #003d80;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
    background-color: white;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    color: #333;
    padding: 6px 10px;
    font-size: 0.95rem;
}

.daterangepicker select.monthselect option,
.daterangepicker select.yearselect option {
    background: white;
    color: #333;
}

.daterangepicker .drp-buttons {
    border-top: 1px solid #e4e4e4;
    padding: 12px;
}

.daterangepicker .drp-selected {
    color: #333;
    font-weight: 500;
}

.daterangepicker .cancelBtn {
    color: #666;
    background: #f5f5f5;
    border: 1px solid #e4e4e4;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.daterangepicker .applyBtn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.daterangepicker .applyBtn:hover {
    background-color: #003d80;
}

.daterangepicker .calendar-table .next,
.daterangepicker .calendar-table .prev {
    padding: 8px;
}

.daterangepicker .calendar-table thead tr:first-child th {
    padding: 8px;
}

.daterangepicker .calendar-table thead th {
    color: #0056b3;
    font-weight: 600;
}


.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.success-popup-content {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    color: var(--white);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-popup.show .success-popup-content {
    transform: translateY(0);
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.success-popup-content p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.success-popup-content .btn {
    margin-top: 10px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.success-popup-content .btn:hover {
    background: rgba(255, 255, 255, 0.3);
}



@media (max-width: 576px) {
    .hero-section {
        min-height: 75vh !important;
        padding: 4rem 1rem 3rem !important;
        background-attachment: scroll !important;
        background-position: center bottom !important;
        background-size: cover !important;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }

    .hero-content .cta-buttons {
        gap: 12px;
        margin-top: 1.25rem;
    }

    .hero-content .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: auto;
    }

    .success-popup-content {
        padding: 20px;
    }

    .success-icon {
        font-size: 4rem;
    }

    .success-popup-content h3 {
        font-size: 1.5rem;
    }
}