/* ===== Navbar Css start ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
    min-height: 70px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    z-index: 1030; /* زيادة z-index */
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50 !important;
    padding: 20px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand:hover {
    color: #3498db !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: #3498db;
}

.navbar-toggler {
    border: none;
    padding: 8px 10px;
    margin-right: 10px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    position: relative;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    bottom: -6px;
}

.navbar-collapse {
    background: white;
}

.navbar-nav {
    padding: 10px 0;
}

.nav-item {
    margin: 0;
    border-bottom: 1px solid #f8f9fa;
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db !important;
    background: #f8f9fa;
    padding-left: 25px !important;
}

.nav-link.active {
    color: #2c3e50 !important;
    font-weight: 600;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        min-height: 75px;
    }
    
    .navbar-collapse {
        background: transparent;
    }
    
    .navbar-nav {
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0;
    }
    
    .nav-item {
        border-bottom: none;
        height: 100%;
        display: flex;
        align-items: center;
        margin: 0;
    }
    
    .nav-link {
        padding: 0 20px !important;
        height: 100%;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        color: #3498db !important;
        background: transparent;
        padding-left: 20px !important;
        transform: translateY(-2px);
    }
    
    .nav-link.active {
        color: #2c3e50 !important;
        background: transparent;
        font-weight: 600;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #3498db;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .nav-link:hover::after {
        width: 70%;
    }
    
    .nav-link.active::after {
        width: 70%;
        background: #2c3e50;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-brand {
        font-size: 1.3rem;
        padding: 18px 0;
    }
    
    .nav-link {
        padding: 12px 15px !important;
        font-size: 0.9rem;
    }
    
    .nav-link:hover {
        padding-left: 18px !important;
    }
}

@media (max-width: 767px) {
    .navbar {
        min-height: 60px;
    }

    .car-details-image {
        width: 100%;
        height: auto !important;
        object-fit: cover;
    }

    .quick-info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr)!important;
        gap: 15px;
        margin: 20px 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    
    .navbar-toggler {
        padding: 6px 8px;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050; /* زيادة z-index */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f1f1f1;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        font-size: 0.9rem;
        border-left: 3px solid transparent;
    }
    
    .nav-link:hover {
        padding-left: 25px !important;
        border-left-color: #3498db;
        background: #f8f9fa;
    }
    
    .nav-link.active {
        border-left-color: #3498db;
        background: #f8f9fa;
        color: #2c3e50 !important;
    }

    .h4, h4 {
        font-size: calc(1.025rem + .3vw);
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        flex-direction: column;
    }

    .calendar-title {
        FONT-VARIANT: JIS83;
        font-size: 1.3rem;
        color: #333;
        margin-bottom: 15px !important;
    }

    .car-details-page {
        padding: 10px !important;
    }
}

.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98) !important;
}

.nav-link:focus {
    outline: 2px solid rgba(52, 152, 219, 0.3);
    outline-offset: 2px;
    border-radius: 3px;
}

@media (min-width: 1200px) {
    .navbar-container {
        max-width: 1140px;
    }
    
    .nav-link {
        padding: 0 25px !important;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show .nav-item {
    animation: slideIn 0.3s ease forwards;
}

.navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.2s; }
.navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.3s; }
.navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.4s; }
.navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.5s; }

/* =====  Navbar Css End  ===== */
/*----------------------------------*/
/*===== booking page css start =====*/
.booking-wrapper {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 20px 0;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.booking-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .booking-content {
        grid-template-columns: 1fr;
    }
}

.car-summary {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.car-image-large {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.car-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.car-detail-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.car-detail-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.car-detail-item span {
    color: #219653;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-info {
    background: #e8f4fc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.pricing-note {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.variable-pricing {
    background: white;
    padding: 15px;
    border-radius: 6px;
    margin: 10px 0 10px;
    border: 1px solid #ddd;
}

.variable-pricing div {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.variable-pricing div:last-child {
    border-bottom: none;
}

.booking-form-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.booking-form-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.accessories-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.accessories-title {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.accessory-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    text-align: center;
}

.accessory-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.accessory-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.accessory-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.accessory-price {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.accessory-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.accessory-checkbox {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-input {
    width: 40px;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
}

.total-price-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}

.total-price-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.total-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.total-price-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    background: linear-gradient(135deg, #219653 0%, #1e8449 100%);
}

.submit-button:active {
    transform: translateY(0);
}

.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/*-------------------------------------------------------*/

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.required {
    color: #e74c3c;
}

.booking-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-description {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/*--------------------------*/
/*success message css start*/
/* رسالة النجاح */
.message.success {
    background: linear-gradient(135deg, #ebfaef 0%, #e8f5e9 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
    position: relative;
    overflow: hidden;
}

.message.success .success-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    z-index: 1;
}


.message.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #52c457, #43b549);
}

.message.success .fas.fa-check-circle {
    font-size: 3.5rem;
    color: #63bf68;
    background: white;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    flex-shrink: 0;
    margin-top: 5px;
}

.message.success h4 {
    color: #1b5e20;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.message.success > .success-content > div > p {
    color: #388e3c;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.summary-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 15px 0 25px;
}

/* تفاصيل التأكيد */
.confirmation-details {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 2px dashed #c8e6c9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.confirmation-details .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e8f5e9;
    transition: all 0.3s ease;
}

.confirmation-details .detail-item:hover {
    background: #f9fdf9;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 8px;
}

.confirmation-details .detail-item:last-child {
    border-bottom: none;
}

.confirmation-details .detail-item strong {
    color: #1b5e20;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.confirmation-details .detail-item strong::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.confirmation-details .detail-item:first-child strong::before {
    content: "\f02b"; /* أيقونة ID */
    color: #4caf50;
}

.confirmation-details .detail-item:last-child strong::before {
    content: "\f023"; /* أيقونة القفل */
    color: #4caf50; /* تغيير اللون ليكون أخضر مثل الأولى */
}

.confirmation-details .detail-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

/* Booking ID و Confirmation Code - نفس التنسيق */
.confirmation-details .detail-item span,
.confirmation-details .confirmation-code {
    color: #2e7d32;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

/* إزالة التنسيق الخاص السابق وإبقاء نفس تنسيق Booking ID */
.confirmation-details .confirmation-code {
    background: none !important; /* إزالة الخلفية البرتقالية */
    color: #2e7d32 !important; /* نفس لون Booking ID */
    padding: 0 !important; /* إزالة padding السابق */
    border-radius: 0 !important; /* إزالة border-radius */
    box-shadow: none !important; /* إزالة الظل */
    text-transform: uppercase;
    transition: none !important; /* إزالة transition السابق */
}

.confirmation-details .confirmation-code:hover {
    transform: none !important; /* إزالة تأثير hover السابق */
    box-shadow: none !important; /* إزالة ظل hover السابق */
}

/* أزرار النجاح */
/* أزرار أنيقة وكلاسيكية */
.success-actions {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.success-actions .btn {
    padding: 12px 24px;
    border-radius: 6px; /* انحناء بسيط وأنيق */
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.2s ease; /* تأثير بسيط جداً */
}

/* تأثير بسيط عند المرور بالفأرة - فقط تغيير الشفافية */
.success-actions .btn:hover {
    opacity: 0.85;
}

/* أيقونات ثابتة بدون حركة */
.success-actions .btn i {
    font-size: 1.1rem;
}

/* زر View Booking Details - أخضر */
.success-actions .btn-primary {
    background-color: #4caf50; /* لون صلب بدون تدرج */
    color: white;
}

.success-actions .btn-primary:hover {
    background-color: #2e7d32; /* داكن قليلاً عند المرور */
}

/* زر Proceed to Payment Options - برتقالي */
.success-actions .btn-success {
    background-color: #ff9800; /* لون صلب */
    color: white;
}

.success-actions .btn-success:hover {
    background-color: #f57c00;
}

/* زر Return to Home - رمادي غامق */
.success-actions .btn-secondary {
    background-color: #575757; /* لون صلب */
    color: white;
}

.success-actions .btn-secondary:hover {
    background-color: #37474f;
}

/* خطوات التالية */
.next-steps-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.1);
}

.next-steps-info h5 {
    color: #1565c0;
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.next-steps-info h5 i {
    background: linear-gradient(135deg, #2196f3, #0d47a1);
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.next-steps-info ol {
    margin-left: 20px;
    color: #37474f;
    line-height: 1.8;
}

.next-steps-info li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
    font-size: 1.05rem;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    counter-increment: step-counter;
}

.next-steps-info li::before {
    content: counter(step-counter);
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.next-steps-info li:hover {
    background: #e8f5e9;
    transform: translateX(10px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.1);
}

.next-steps-info li:last-child {
    margin-bottom: 0;
}

/* رسوم متحركة للرسالة */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.success {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.message.success .fas.fa-check-circle {
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.message.success h4 {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.message.success > .success-content > div > p {
    animation: fadeIn 0.8s ease 0.5s forwards;
    opacity: 0;
}

.confirmation-details {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

.success-actions {
    animation: fadeIn 0.8s ease 0.7s forwards;
    opacity: 0;
}

.next-steps-info {
    animation: fadeIn 0.8s ease 0.8s forwards;
    opacity: 0;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .message.success {
        padding: 20px;
        margin: 20px 0;
    }
    
    .message.success .success-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .message.success .fas.fa-check-circle {
        align-self: center;
        font-size: 3rem;
        padding: 12px;
    }
    
    .confirmation-details {
        padding: 20px;
    }
    
    .confirmation-details .detail-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 0;
    }
    
    .confirmation-details .detail-item:hover {
        padding-left: 10px;
        padding-right: 10px;
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .confirmation-details .detail-item strong {
        justify-content: center;
    }
    
    .confirmation-details .detail-item span,
    .confirmation-details .confirmation-code {
        font-size: 1.1rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .success-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 20px;
    }
    
    .next-steps-info {
        padding: 20px;
    }
    
    .next-steps-info li::before {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        display: none;
        margin-right: 10px;
        vertical-align: middle;
    }
    
    .next-steps-info li {
        padding-left: 0;
        text-align: left;
    }
    
    .car-image-large {
        height: 260px;
        width: 100%;
    }
    
        .booking-container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    
    .car-image-large {
        height: 175px;
        width: 100%;
    }
    
    .booking-container {
        padding: 0 10px;
    }
    
    .booking-title {
        font-size: 1.7rem;
    }
    
    .car-detail-item strong {
        font-size: 0.80rem;
        margin-bottom: 2px;
    }
    
    .car-detail-item span {
        font-size: 0.85rem;
    }
    
    .car-details-grid {
        gap: 10px;
    }
    
    .total-price-amount {
        font-size: 2rem;
    }
    
    .submit-button {
    padding: 15px 20px;
    font-size: 1rem;
    }
}

/* تأثيرات خاصة للطباعة */
@media print {
    .message.success {
        border: 2px solid #000;
        box-shadow: none;
        background: white;
    }
    
    .message.success::before {
        display: none;
    }
    
    .success-actions {
        display: none;
    }
}
/*success message css end*/
/*-----------------------*/

.summary-details {
    background-color: #def7dc;
    padding: 4px 20px;
    border-radius: 10px;
}

/*===== booking page css end =====*/
/* ===== Footre Css Start ===== */
/*------------------------------*/

.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
}

.site-footer-inner {
    position: relative;
    z-index: 1;
}

.top-footer {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wrap-footer-sidebar {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-widget-wrap {
    padding: 0 20px;
}

.footer-widget-item {
    margin-bottom: 40px;
}

.widget {
    padding: 0 15px;
}

.widget_block h3.wp-block-heading,
.widget_nav_menu h2.widget-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget_block h3.wp-block-heading:after,
.widget_nav_menu h2.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #007bff;
    border-radius: 2px;
}

.widget_block p {
    color: #b0b7c3;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.widget_block p br {
    margin-bottom: 8px;
    display: block;
}

/* تنسيق معلومات الاتصال */
.widget_block p strong {
    color: #fff;
    font-weight: 600;
}

.widget_block p a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget_block p a:hover {
    color: #fff;
    text-decoration: underline;
}

/* تنسيق قائمة الروابط */
.widget_nav_menu ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_nav_menu ul.menu li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.widget_nav_menu ul.menu li:hover {
    transform: translateX(5px);
}

.widget_nav_menu ul.menu li:before {
    content: "→";
    color: #007bff;
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.widget_nav_menu ul.menu li:hover:before {
    left: -15px;
    opacity: 1;
}

.widget_nav_menu ul.menu li a {
    color: #b0b7c3;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.widget_nav_menu ul.menu li a:hover {
    color: #fff;
    padding-left: 5px;
}

.bottom-footer {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
}

.site-info {
    color: #b0b7c3;
    font-size: 0.9rem;
    text-align: center;
}

.site-info:before {
    content: "© ";
    color: #007bff;
    font-weight: bold;
}

/* تأثيرات إضافية */
.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* أيقونات وسائل التواصل الاجتماعي */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #007bff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    border-color: #007bff;
}

/* شعار الفوتر */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

/* تنسيق للأجهزة المحمولة */
@media (max-width: 768px) {
    .top-footer {
        padding: 40px 0 30px;
    }
    
    .footer-widget-item {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .widget_block h3.wp-block-heading:after,
    .widget_nav_menu h2.widget-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .widget_nav_menu ul.menu li {
        text-align: center;
    }
    
    .widget_nav_menu ul.menu li:before {
        display: none;
    }
    
    .widget_nav_menu ul.menu li a:hover {
        padding-left: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .bottom-footer {
        padding: 25px 0;
    }
}

/* تنسيق للأجهزة اللوحية */
@media (min-width: 769px) and (max-width: 991px) {
    .footer-widget-item {
        margin-bottom: 40px;
    }
}

/* تأثيرات عند التمرير */
.site-footer {
    transition: all 0.3s ease;
}

/* تخصيص البوتستراب */
.container {
    max-width: 1200px !important;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

/* تحسينات إضافية */
.widget_block p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.widget_nav_menu ul.menu li a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

/* تأثيرات للاتصال */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 12px;
    color: #007bff;
    font-size: 1.2rem;
    min-width: 25px;
}

.contact-text {
    flex: 1;
    color: #b0b7c3;
}

/* ترويسة الفوتر */
.footer-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-header h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.footer-header p {
    color: #b0b7c3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* نصوص النسخ */
.copyright-text {
    font-size: 0.85rem;
    color: #8a94a6;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* إضافة إلى HTML (اختياري) */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}

.newsletter-input::placeholder {
    color: #8a94a6;
}

.newsletter-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #0056b3;
}

/* =====  Footer Css End  ===== */

/*------------------------------*/