  .booking-page {
        padding: 40px 0;
        background: #f8f9fa;
        min-height: 60vh;
    }

    .booking-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .booking-header h1 {
        color: #333;
        margin-bottom: 10px;
    }

    .booking-header p {
        color: #666;
    }

    .booking-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .booking-vehicle-summary {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        height: fit-content;
    }

    .booking-vehicle-summary h2 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #333;
    }

    .vehicle-card-summary {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .vehicle-card-summary img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
    }

    .vehicle-card-summary .vehicle-info h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .vehicle-card-summary .vehicle-type {
        color: #666;
        margin-bottom: 10px;
    }

    .vehicle-card-summary .vehicle-details {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }

    .vehicle-card-summary .vehicle-details span {
        color: #555;
        font-size: 14px;
    }

    .vehicle-card-summary .vehicle-details i {
        color: #007bff;
        margin-right: 5px;
    }

    .vehicle-card-summary .vehicle-features {
        font-size: 13px;
        color: #28a745;
    }

    .vehicle-card-summary .vehicle-price {
        text-align: center;
        padding-top: 15px;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .vehicle-card-summary .vehicle-price .price {
        display: block;
        font-size: 28px;
        font-weight: bold;
        color: #000;
    }

    .vehicle-card-summary .vehicle-price .price-label {
        font-size: 12px;
        color: #999;
    }

    .booking-form-section {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .booking-form-section h2 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #333;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .booking-form-section h2:last-of-type {
        margin-top: 25px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

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

    .form-group label {
        font-weight: 500;
        margin-bottom: 8px;
        color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #007bff;
    }

    .form-group input[readonly] {
        background: #f8f9fa;
    }

    .form-actions {
        margin-top: 30px;
        text-align: center;
    }

    .btn-submit {
        background: #053b49;
        color: #fff;
        border: none;
        padding: 15px 40px;
        border-radius: 999px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
    }

    .btn-submit:hover {
        background: #053b49;
    }

    @media (max-width: 768px) {
        .booking-content {
            grid-template-columns: 1fr;
        }

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











       .payment-page {
            padding: 60px 0;
            background: #f8f9fa;
            min-height: 70vh;
        }
        
        .payment-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 30px;
        }
        
        .payment-form-section {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .payment-summary {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            height: fit-content;
            position: sticky;
            top: 20px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            padding-bottom: 15px;
            border-bottom: 2px solid #667eea;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .card-icons {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .card-icons img {
            height: 30px;
            opacity: 0.7;
        }
        
        .payment-methods {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .payment-method {
            flex: 1;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .payment-method:hover,
        .payment-method.active {
            border-color: #667eea;
            background: #f8f9ff;
        }
        
        .payment-method i {
            font-size: 24px;
            margin-bottom: 8px;
            display: block;
        }
        
        .payment-method span {
            font-weight: 600;
            font-size: 14px;
        }
        
        .summary-vehicle {
            display: flex;
            gap: 15px;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .summary-vehicle img {
            width: 100px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .summary-vehicle-info h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .summary-vehicle-info p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }
        
        .summary-details {
            margin-bottom: 20px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            font-size: 15px;
        }
        
        .summary-row.total {
            border-top: 2px solid #667eea;
            margin-top: 10px;
            padding-top: 15px;
            font-weight: 700;
            font-size: 20px;
        }
        
        .summary-row.total .value {
            color: #667eea;
        }
        
        .pay-now-btn {
            width: 100%;
            padding: 18px;
            background: #053b49;
            color: #fff;
            border: none;
            border-radius: 999px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pay-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }
        
        .secure-notice {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
            font-size: 13px;
            color: #666;
        }
        
        .secure-notice i {
            color: #28a745;
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--wb-lime);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 20px;
            background-color: #333;
            padding: 20px;
            border-radius: 999px;
        }
        
        .back-link:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .payment-container {
                grid-template-columns: 1fr;
            }
            
            .payment-summary {
                position: static;
                order: -1;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .payment-methods {
                flex-direction: column;
            }
        }




    